Home
last modified time | relevance | path

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

/external/llvm/include/llvm/CodeGen/
DTargetPassConfig.h53 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/
DTargetPassConfig.h57 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/
DTargetPassConfig.h57 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/
DDeclObjC.h123 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/
DPythonDataObjects.cpp1477 auto isTextIO = IsInstance(textIOBase.get()); in ConvertToFileForcingUseOfScriptingIOMethods()
1484 auto isRawIO = IsInstance(rawIOBase.get()); in ConvertToFileForcingUseOfScriptingIOMethods()
1487 auto isBufferedIO = IsInstance(bufferedIOBase.get()); in ConvertToFileForcingUseOfScriptingIOMethods()
DPythonDataObjects.h371 llvm::Expected<bool> IsInstance(const PythonObject &cls) {
/external/clang/lib/AST/
DDeclObjC.cpp1240 bool IsInstance = isInstanceMethod(); in findPropertyDecl() local
1246 if (IsInstance) { in findPropertyDecl()
/external/llvm-project/clang/lib/AST/
DDeclObjC.cpp1340 bool IsInstance = isInstanceMethod(); in findPropertyDecl() local
1346 if (IsInstance) { in findPropertyDecl()
/external/llvm-project/clang/include/clang/AST/
DDeclObjC.h431 bool isInstanceMethod() const { return ObjCMethodDeclBits.IsInstance; } in isInstanceMethod()
433 ObjCMethodDeclBits.IsInstance = isInst; in setInstanceMethod()
DDeclBase.h1620 uint64_t IsInstance : 1; variable
/external/clang/include/clang/Sema/
DSema.h3242 bool IsInstance,
7558 bool IsInstance);
7560 bool IsInstance);
/external/llvm-project/clang/include/clang/Sema/
DSema.h4361 bool IsInstance,
9540 bool IsInstance);
9542 bool IsInstance);
/external/python/cpython2/Misc/NEWS.d/
D2.7a1.rst1982 Add ``TestCase.assert(Not)IsInstance()`` methods.
/external/llvm-project/clang/lib/Sema/
DSemaOverload.cpp6491 Sema::SelectBestMethod(Selector Sel, MultiExprArg Args, bool IsInstance, in SelectBestMethod() argument