Home
last modified time | relevance | path

Searched refs:InstanceMethod (Results 1 – 9 of 9) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h512 unsigned InstanceMethod : 1; variable
604 bool isInstanceMethod() const { return InstanceMethod; } in isInstanceMethod()
678 ID.AddBoolean(InstanceMethod); in Profile()
697 bool InstanceMethod, in Profile() argument
705 ID.AddBoolean(InstanceMethod); in Profile()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Index/
H A DIndexSymbol.cpp214 Info.Kind = MD->isInstanceMethod() ? SymbolKind::InstanceMethod : SymbolKind::ClassMethod; in getSymbolInfo()
273 Info.Kind = SymbolKind::InstanceMethod; in getSymbolInfo()
298 Info.Kind = SymbolKind::InstanceMethod; in getSymbolInfo()
473 case SymbolKind::InstanceMethod: return "instance-method"; in getSymbolKindString()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Index/
H A DIndexSymbol.h45 InstanceMethod, enumerator
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprObjC.cpp4007 ObjCMethodDecl *&InstanceMethod, in checkObjCBridgeRelatedComponents() argument
4063 InstanceMethod = RelatedClass->lookupMethod(Sel, true); in checkObjCBridgeRelatedComponents()
4064 if (!InstanceMethod) { in checkObjCBridgeRelatedComponents()
4089 ObjCMethodDecl *InstanceMethod = nullptr; in CheckObjCBridgeRelatedConversions() local
4129 if (InstanceMethod) { in CheckObjCBridgeRelatedConversions()
4134 if (InstanceMethod->isPropertyAccessor()) in CheckObjCBridgeRelatedConversions()
4136 InstanceMethod->findPropertyDecl()) { in CheckObjCBridgeRelatedConversions()
4147 ExpressionString += InstanceMethod->getSelector().getAsString(); in CheckObjCBridgeRelatedConversions()
4160 InstanceMethod->getLocation(), in CheckObjCBridgeRelatedConversions()
4161 InstanceMethod->getSelector(), in CheckObjCBridgeRelatedConversions()
[all …]
H A DSemaDeclAttr.cpp5109 IdentifierInfo *InstanceMethod = in handleObjCBridgeRelatedAttr() local
5113 ClassMethod, InstanceMethod, in handleObjCBridgeRelatedAttr()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseDecl.cpp1312 IdentifierLoc *InstanceMethod = nullptr; in ParseObjCBridgeRelatedAttribute() local
1314 InstanceMethod = ParseIdentifierLoc(); in ParseObjCBridgeRelatedAttribute()
1334 InstanceMethod, in ParseObjCBridgeRelatedAttribute()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGCall.cpp820 FI->InstanceMethod = instanceMethod; in create()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DAttr.td1659 IdentifierArgument<"InstanceMethod">];
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h8320 ObjCMethodDecl *&InstanceMethod,