| /freebsd-src/contrib/llvm-project/clang/lib/AST/ |
| H A D | Comment.cpp | 210 IsInstanceMethod = false; in fill() 248 IsInstanceMethod = MD->isInstance(); in fill() 249 IsClassMethod = !IsInstanceMethod; in fill() 261 IsInstanceMethod = MD->isInstanceMethod(); in fill() 262 IsClassMethod = !IsInstanceMethod; in fill()
|
| /freebsd-src/contrib/llvm-project/clang/include/clang/Index/ |
| H A D | USRGeneration.h | 50 void generateUSRForObjCMethod(StringRef Sel, bool IsInstanceMethod,
|
| /freebsd-src/contrib/llvm-project/clang/include/clang/APINotes/ |
| H A D | APINotesWriter.h | 74 /// \param IsInstanceMethod Whether this method is an instance method 78 bool IsInstanceMethod, const ObjCMethodInfo &Info,
|
| H A D | APINotesReader.h | 137 /// \param IsInstanceMethod Whether we are looking for an instance method. 142 bool IsInstanceMethod);
|
| /freebsd-src/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
| H A D | ObjCLanguage.h | 51 bool IsInstanceMethod() const { return m_type == eTypeInstanceMethod; } in IsInstanceMethod() function
|
| H A D | ObjCLanguage.cpp | 193 if (objc_method->IsClassMethod() || objc_method->IsInstanceMethod()) { in GetMethodNameVariants()
|
| /freebsd-src/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaCodeComplete.cpp | 9039 bool IsInstanceMethod, in AddObjCKeyValueCompletions() 9087 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 9101 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 9123 if (IsInstanceMethod && ReturnTypeMatchesVoid && in AddObjCKeyValueCompletions() 9174 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 9196 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 9218 if (IsInstanceMethod && in AddObjCKeyValueCompletions() 9245 if (IsInstanceMethod && ReturnTypeMatchesVoid) { in AddObjCKeyValueCompletions() 9277 if (IsInstanceMethod && ReturnTypeMatchesVoid) { in AddObjCKeyValueCompletions() 9307 if (IsInstanceMethod in AddObjCKeyValueCompletions() 8946 AddObjCKeyValueCompletions(ObjCPropertyDecl * Property,bool IsInstanceMethod,QualType ReturnType,ASTContext & Context,VisitedSelectorSet & KnownSelectors,ResultBuilder & Results) AddObjCKeyValueCompletions() argument 9559 CodeCompleteObjCMethodDecl(Scope * S,std::optional<bool> IsInstanceMethod,ParsedType ReturnTy) CodeCompleteObjCMethodDecl() argument 9736 CodeCompleteObjCMethodDeclSelector(Scope * S,bool IsInstanceMethod,bool AtParameterName,ParsedType ReturnTy,ArrayRef<IdentifierInfo * > SelIdents) CodeCompleteObjCMethodDeclSelector() argument [all...] |
| /freebsd-src/contrib/llvm-project/clang/lib/APINotes/ |
| H A D | APINotesYAMLCompiler.cpp | 808 bool IsInstanceMethod = method.Kind == MethodKind::Instance; in convertContext() 809 bool &Known = IsInstanceMethod ? KnownMethods[method.Selector].first in convertContext() 813 (IsInstanceMethod ? "-" : "+") + "[" + C.Name + " " + in convertContext() 804 bool IsInstanceMethod = method.Kind == MethodKind::Instance; convertContext() local
|
| H A D | APINotesWriter.cpp | 1377 bool IsInstanceMethod, in addTypedef() 1382 IsInstanceMethod}; in addTypedef() 1310 addObjCMethod(ContextID CtxID,ObjCSelectorRef Selector,bool IsInstanceMethod,const ObjCMethodInfo & Info,VersionTuple SwiftVersion) addObjCMethod() argument
|
| H A D | APINotesReader.cpp | 2010 bool IsInstanceMethod) in lookupTypedef() 2021 IsInstanceMethod}); in lookupTypedef() 1919 lookupObjCMethod(ContextID CtxID,ObjCSelectorRef Selector,bool IsInstanceMethod) lookupObjCMethod() argument
|
| /freebsd-src/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGCall.h | 424 IsInstanceMethod = 1 << 0, 404 IsInstanceMethod = 1 << 0, global() enumerator
|
| H A D | CGCall.cpp | 198 instanceMethod ? FnInfoOpts::IsInstanceMethod : FnInfoOpts::None; 380 return arrangeLLVMFunctionInfo(resultType, FnInfoOpts::IsInstanceMethod, in getArgTypesForCall() 455 return arrangeLLVMFunctionInfo(ResultType, FnInfoOpts::IsInstanceMethod, in arrangeFunctionDeclaration() 582 return arrangeLLVMFunctionInfo(Context.VoidTy, FnInfoOpts::IsInstanceMethod, in arrangeFreeFunctionLikeCall() 717 FnInfoOpts::IsInstanceMethod, argTypes, info, 746 opts |= FnInfoOpts::IsInstanceMethod; 776 (opts & FnInfoOpts::IsInstanceMethod) == FnInfoOpts::IsInstanceMethod; in arrangeLLVMFunctionInfo()
|
| /freebsd-src/contrib/llvm-project/clang/lib/ExtractAPI/ |
| H A D | API.cpp | 418 addObjCMethod(ObjCContainerRecord * Container,StringRef Name,StringRef USR,PresumedLoc Loc,AvailabilityInfo Availability,const DocComment & Comment,DeclarationFragments Declaration,DeclarationFragments SubHeading,FunctionSignature Signature,bool IsInstanceMethod,bool IsFromSystemHeader) addObjCMethod() argument
|
| /freebsd-src/contrib/llvm-project/clang/lib/Index/ |
| H A D | USRGeneration.cpp | 1155 bool IsInstanceMethod, 1157 OS << (IsInstanceMethod ? "(im)" : "(cm)") << Sel; in generateUSRForGlobalEnum() 1139 generateUSRForObjCMethod(StringRef Sel,bool IsInstanceMethod,raw_ostream & OS) generateUSRForObjCMethod() argument
|
| H A D | CommentToXML.cpp | 859 if (DI->IsInstanceMethod) in visitFullComment()
|
| /freebsd-src/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Comment.h | 1057 unsigned IsInstanceMethod : 1;
|
| /freebsd-src/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 522 bool IsInstanceMethod, 5725 bool IsInstanceMethod, in RewriteObjCMethodsMetaData() argument 5763 Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; in RewriteObjCMethodsMetaData() 5767 Result += IsInstanceMethod ? "inst" : "cls"; in RewriteObjCMethodsMetaData()
|
| H A D | RewriteModernObjC.cpp | 443 bool IsInstanceMethod, 7362 bool IsInstanceMethod, in RewriteObjCMethodsMetaData() 7395 if (IsInstanceMethod) in RewriteObjCMethodsMetaData() 7407 Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; in RewriteObjCMethodsMetaData() 7411 Result += IsInstanceMethod ? "inst" : "cls"; in RewriteObjCMethodsMetaData() 7364 RewriteObjCMethodsMetaData(MethodIterator MethodBegin,MethodIterator MethodEnd,bool IsInstanceMethod,StringRef prefix,StringRef ClassName,std::string & Result) RewriteObjCMethodsMetaData() argument
|
| /freebsd-src/contrib/llvm-project/clang/include/clang/ExtractAPI/ |
| H A D | API.h | |
| /freebsd-src/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | |