Home
last modified time | relevance | path

Searched refs:PassByReference (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/AST/
H A DPropertiesBase.td17 bit PassByReference = 0;
73 def APInt : PropertyType<"llvm::APInt"> { let PassByReference = 1; }
74 def APSInt : PropertyType<"llvm::APSInt"> { let PassByReference = 1; }
75 def APValue : PropertyType { let PassByReference = 1; }
118 let PassByReference = 1;
164 let PassByReference = element.PassByReference;
/llvm-project-15.0.7/clang-tools-extra/clangd/refactor/tweaks/
H A DExtractFunction.cpp340 bool PassByReference; member
495 return printType(TypeInfo, *Context) + (PassByReference ? " &" : " ") + Name; in render()