Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DTargetPassConfig.h58 bool IsInstance = false; variable
63 IdentifyingPassPtr(Pass *InstancePtr) : P(InstancePtr), IsInstance(true) {} in IdentifyingPassPtr()
66 bool isInstance() const { return IsInstance; } in isInstance()
69 assert(!IsInstance && "Not a Pass ID"); in getID()
74 assert(IsInstance && "Not a Pass Instance"); in getInstance()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp1368 auto isTextIO = IsInstance(textIOBase.get()); in ConvertToFileForcingUseOfScriptingIOMethods()
1375 auto isRawIO = IsInstance(rawIOBase.get()); in ConvertToFileForcingUseOfScriptingIOMethods()
1378 auto isBufferedIO = IsInstance(bufferedIOBase.get()); in ConvertToFileForcingUseOfScriptingIOMethods()
H A DPythonDataObjects.h361 llvm::Expected<bool> IsInstance(const PythonObject &cls) {
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DDeclObjC.cpp236 bool IsInstance) const { in getProperty()
239 if (Prop->isInstanceProperty() == IsInstance) { in getProperty()
1392 bool IsInstance = isInstanceMethod(); in findPropertyDecl() local
1398 if (IsInstance) { in findPropertyDecl()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDeclObjC.h428 bool isInstanceMethod() const { return ObjCMethodDeclBits.IsInstance; } in isInstanceMethod()
430 ObjCMethodDeclBits.IsInstance = isInst; in setInstanceMethod()
1072 bool IsInstance) const;
H A DDeclBase.h1728 uint64_t IsInstance : 1;
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h4916 bool IsInstance,
10410 bool IsInstance);
10412 bool IsInstance);
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaOverload.cpp6671 Sema::SelectBestMethod(Selector Sel, MultiExprArg Args, bool IsInstance, in SelectBestMethod() argument