Home
last modified time | relevance | path

Searched refs:IsInstance (Results 1 – 4 of 4) sorted by relevance

/NextBSD/contrib/llvm/include/llvm/CodeGen/
HDPasses.h60 bool IsInstance; variable
62 IdentifyingPassPtr() : P(nullptr), IsInstance(false) {} in IdentifyingPassPtr()
63 IdentifyingPassPtr(AnalysisID IDPtr) : ID(IDPtr), IsInstance(false) {} in IdentifyingPassPtr()
64 IdentifyingPassPtr(Pass *InstancePtr) : P(InstancePtr), IsInstance(true) {} in IdentifyingPassPtr()
67 bool isInstance() const { return IsInstance; } in isInstance()
70 assert(!IsInstance && "Not a Pass ID"); in getID()
74 assert(IsInstance && "Not a Pass Instance"); in getInstance()
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDDeclObjC.h123 unsigned IsInstance : 1; variable
235 IsInstance(isInstance), IsVariadic(isVariadic), in NamedDecl()
419 bool isInstanceMethod() const { return IsInstance; } in isInstanceMethod()
420 void setInstanceMethod(bool isInst) { IsInstance = isInst; } in setInstanceMethod()
424 bool isClassMethod() const { return !IsInstance; } in isClassMethod()
/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDSema.h3114 bool IsInstance);
7322 bool IsInstance);
7324 bool IsInstance);
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaOverload.cpp5726 bool IsInstance) { in SelectBestMethod() argument
5728 if (!CollectMultipleMethodsInGlobalPool(Sel, Methods, IsInstance)) in SelectBestMethod()