Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/llvm/include/llvm/CodeGen/
H A DPasses.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()
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DDeclObjC.h123 unsigned IsInstance : 1; variable
235 IsInstance(isInstance), IsVariadic(isVariadic), in NamedDecl()
410 bool isInstanceMethod() const { return IsInstance; } in isInstanceMethod()
411 void setInstanceMethod(bool isInst) { IsInstance = isInst; } in setInstanceMethod()
415 bool isClassMethod() const { return !IsInstance; } in isClassMethod()
/minix3/external/bsd/llvm/dist/clang/include/clang/Sema/
H A DSema.h2987 bool IsInstance);
7124 bool IsInstance);
7126 bool IsInstance);
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaOverload.cpp5689 bool IsInstance) { in SelectBestMethod() argument
5691 if (!CollectMultipleMethodsInGlobalPool(Sel, Methods, IsInstance)) in SelectBestMethod()