Searched refs:IsInstance (Results 1 – 14 of 14) sorted by relevance
/external/llvm/include/llvm/CodeGen/ |
D | TargetPassConfig.h | 53 bool IsInstance; variable 55 IdentifyingPassPtr() : P(nullptr), IsInstance(false) {} in IdentifyingPassPtr() 56 IdentifyingPassPtr(AnalysisID IDPtr) : ID(IDPtr), IsInstance(false) {} in IdentifyingPassPtr() 57 IdentifyingPassPtr(Pass *InstancePtr) : P(InstancePtr), IsInstance(true) {} in IdentifyingPassPtr() 60 bool isInstance() const { return IsInstance; } in isInstance() 63 assert(!IsInstance && "Not a Pass ID"); in getID() 67 assert(IsInstance && "Not a Pass Instance"); in getInstance()
|
/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | TargetPassConfig.h | 57 bool IsInstance = false; variable 62 IdentifyingPassPtr(Pass *InstancePtr) : P(InstancePtr), IsInstance(true) {} in IdentifyingPassPtr() 65 bool isInstance() const { return IsInstance; } in isInstance() 68 assert(!IsInstance && "Not a Pass ID"); in getID() 73 assert(IsInstance && "Not a Pass Instance"); in getInstance()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | TargetPassConfig.h | 57 bool IsInstance = false; variable 62 IdentifyingPassPtr(Pass *InstancePtr) : P(InstancePtr), IsInstance(true) {} in IdentifyingPassPtr() 65 bool isInstance() const { return IsInstance; } in isInstance() 68 assert(!IsInstance && "Not a Pass ID"); in getID() 73 assert(IsInstance && "Not a Pass Instance"); in getInstance()
|
/external/clang/include/clang/AST/ |
D | DeclObjC.h | 123 unsigned IsInstance : 1; variable 235 IsInstance(isInstance), IsVariadic(isVariadic), in NamedDecl() 414 bool isInstanceMethod() const { return IsInstance; } in isInstanceMethod() 415 void setInstanceMethod(bool isInst) { IsInstance = isInst; } in setInstanceMethod() 419 bool isClassMethod() const { return !IsInstance; } in isClassMethod()
|
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
D | PythonDataObjects.cpp | 1477 auto isTextIO = IsInstance(textIOBase.get()); in ConvertToFileForcingUseOfScriptingIOMethods() 1484 auto isRawIO = IsInstance(rawIOBase.get()); in ConvertToFileForcingUseOfScriptingIOMethods() 1487 auto isBufferedIO = IsInstance(bufferedIOBase.get()); in ConvertToFileForcingUseOfScriptingIOMethods()
|
D | PythonDataObjects.h | 371 llvm::Expected<bool> IsInstance(const PythonObject &cls) {
|
/external/clang/lib/AST/ |
D | DeclObjC.cpp | 1240 bool IsInstance = isInstanceMethod(); in findPropertyDecl() local 1246 if (IsInstance) { in findPropertyDecl()
|
/external/llvm-project/clang/lib/AST/ |
D | DeclObjC.cpp | 1340 bool IsInstance = isInstanceMethod(); in findPropertyDecl() local 1346 if (IsInstance) { in findPropertyDecl()
|
/external/llvm-project/clang/include/clang/AST/ |
D | DeclObjC.h | 431 bool isInstanceMethod() const { return ObjCMethodDeclBits.IsInstance; } in isInstanceMethod() 433 ObjCMethodDeclBits.IsInstance = isInst; in setInstanceMethod()
|
D | DeclBase.h | 1620 uint64_t IsInstance : 1; variable
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 3242 bool IsInstance, 7558 bool IsInstance); 7560 bool IsInstance);
|
/external/llvm-project/clang/include/clang/Sema/ |
D | Sema.h | 4361 bool IsInstance, 9540 bool IsInstance); 9542 bool IsInstance);
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7a1.rst | 1982 Add ``TestCase.assert(Not)IsInstance()`` methods.
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaOverload.cpp | 6491 Sema::SelectBestMethod(Selector Sel, MultiExprArg Args, bool IsInstance, in SelectBestMethod() argument
|