HomeSort by: relevance | last modified time | path
    Searched refs:isInstance (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetPassConfig.h 58 bool IsInstance = false;
63 IdentifyingPassPtr(Pass *InstancePtr) : P(InstancePtr), IsInstance(true) {}
66 bool isInstance() const { return IsInstance; }
69 assert(!IsInstance && "Not a Pass ID");
74 assert(IsInstance && "Not a Pass Instance");
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclObjC.cpp 92 ObjCContainerDecl::getMethod(Selector Sel, bool isInstance,
113 if (MD && MD->isInstanceMethod() == isInstance)
685 bool isInstance,
702 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance)))
707 if ((MethodDecl = Cat->getMethod(Sel, isInstance)))
713 if ((MethodDecl = I->lookupMethod(Sel, isInstance)))
723 if ((MethodDecl = Protocol->lookupMethod(Sel, isInstance)))
783 bool isInstance, bool isVariadic, bool isPropertyAccessor,
793 setInstanceMethod(isInstance);
813 DeclContext *contextDecl, bool isInstance, bool isVariadic
    [all...]
Comment.cpp 247 IsInstanceMethod = MD->isInstance();
ExprClassification.cpp 451 if (isa<CXXMethodDecl>(D) && cast<CXXMethodDecl>(D)->isInstance())
DeclCXX.cpp 2476 assert(isInstance() && "No 'this' for static methods!");
2483 assert(isInstance() && "No 'this' for static methods!");
MicrosoftMangle.cpp 1564 if (MD && MD->isInstance()) {
2517 if (MD->isInstance())
Decl.cpp 1839 return MD->isInstance();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetPassConfig.cpp 333 if (InsertedPassID.isInstance())
606 assert(((!InsertedPassID.isInstance() &&
608 (InsertedPassID.isInstance() &&
680 return !FinalPtr.isValid() || FinalPtr.isInstance() ||
743 if (FinalPtr.isInstance())
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
InterpFrame.cpp 115 if (M && M->isInstance() && !isa<CXXConstructorDecl>(F)) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclObjC.h 174 DeclContext *contextDecl, bool isInstance = true,
235 DeclContext *contextDecl, bool isInstance = true,
431 bool isInstanceMethod() const { return ObjCMethodDeclBits.IsInstance; }
433 ObjCMethodDeclBits.IsInstance = isInst;
1060 ObjCMethodDecl *getMethod(Selector Sel, bool isInstance,
1065 return getMethod(Sel, true/*isInstance*/, AllowHidden);
1069 return getMethod(Sel, false/*isInstance*/, AllowHidden);
1334 ObjCMethodDecl *getCategoryMethod(Selector Sel, bool isInstance) const {
1335 return isInstance ? getCategoryInstanceMethod(Sel)
1817 ObjCMethodDecl *lookupMethod(Selector Sel, bool isInstance,
    [all...]
DeclCXX.h 1974 bool isInstance() const { return !isStatic(); }
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCoroutine.cpp 80 if (MD->isInstance()) {
533 return MD->isInstance() && MD->getThisType()->isDependentType();
560 if (MD->isInstance() && !isLambdaCallOperator(MD)) {
1288 if (MD->isInstance() && !isLambdaCallOperator(MD)) {
SemaDeclObjC.cpp 4657 bool isInstance = Method->isInstanceMethod();
4685 if (auto *IMD = IDecl->getMethod(Sel, isInstance))
4689 if (auto *IMD = IDecl->getImplementation()->getMethod(Sel, isInstance))
4693 if (auto *IMD = Cat->getMethod(Sel, isInstance))
4697 if (auto *IMD = Cat->getMethod(Sel, isInstance))
5265 Method = IDecl->lookupMethod(Method->getSelector(), /*isInstance=*/true,
SemaExprObjC.cpp 290 /*isInstance=*/false, /*isVariadic=*/false,
566 /*isInstance=*/false, /*isVariadic=*/false,
679 /*isInstance=*/false,
1281 if (ObjCMethodDecl *MD = IFace->lookupMethod(Sel, /*isInstance=*/true))
1283 if (ObjCMethodDecl *MD = IFace->lookupPrivateMethod(Sel, /*isInstance=*/true))
1285 if (ObjCMethodDecl *MD = IFace->lookupMethod(Sel, /*isInstance=*/false))
1287 if (ObjCMethodDecl *MD = IFace->lookupPrivateMethod(Sel, /*isInstance=*/false))
1937 bool isInstance) {
1941 if (ObjCMethodDecl *method = iface->lookupMethod(sel, isInstance))
1946 if (ObjCMethodDecl *method = iface->lookupPrivateMethod(sel, isInstance))
    [all...]
SemaExprMember.cpp 1120 if (MemberFn->isInstance()) {
SemaExpr.cpp 2151 bool isInstance = CurMethod && CurMethod->isInstance() &&
2170 if (isInstance) {
5699 if (Method->isInstance())
11154 /*IsInstance=*/true);
11163 /*IsInstance=*/true);
14882 return Method->isInstance();
14893 if (Method->isInstance())
19016 cast<CXXMethodDecl>(VD)->isInstance()))
19352 if (MD->isInstance()) {
    [all...]
SemaDeclAttr.cpp 154 return MethodDecl->isInstance();
4461 if (Method->isInstance()) {
SemaLookup.cpp 4763 cast<CXXMethodDecl>(SemaRef.CurContext)->isInstance())
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprCXX.cpp 42 assert(MD->isInstance() &&
484 assert(MD->isInstance() &&
CodeGenFunction.cpp 1099 if (D && isa<CXXMethodDecl>(D) && cast<CXXMethodDecl>(D)->isInstance()) {
1245 if (MD && MD->isInstance()) {
CGCall.cpp 290 if (MD->isInstance()) {
439 if (MD->isInstance())
ItaniumCXXABI.cpp 1027 assert(MD->isInstance() && "Member function must not be static!");
MicrosoftCXXABI.cpp 2843 assert(MD->isInstance() && "Member function must not be static!");
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 1378 if (MD->isInstance())
ExprEngine.cpp 1594 if (MD->isInstance()) {
2685 if (MD->isInstance())

Completed in 81 milliseconds

1 2