Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp1369 auto isTextIO = IsInstance(textIOBase.get()); in ConvertToFileForcingUseOfScriptingIOMethods()
1376 auto isRawIO = IsInstance(rawIOBase.get()); in ConvertToFileForcingUseOfScriptingIOMethods()
1379 auto isBufferedIO = IsInstance(bufferedIOBase.get()); in ConvertToFileForcingUseOfScriptingIOMethods()
H A DPythonDataObjects.h349 llvm::Expected<bool> IsInstance(const PythonObject &cls) {
/llvm-project-15.0.7/clang/lib/AST/
H A DDeclObjC.cpp236 bool IsInstance) const { in getProperty()
239 if (Prop->isInstanceProperty() == IsInstance) { in getProperty()
1357 bool IsInstance = isInstanceMethod(); in findPropertyDecl() local
1363 if (IsInstance) { in findPropertyDecl()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DDeclObjC.h431 bool isInstanceMethod() const { return ObjCMethodDeclBits.IsInstance; } in isInstanceMethod()
433 ObjCMethodDeclBits.IsInstance = isInst; in setInstanceMethod()
1075 bool IsInstance) const;
H A DDeclBase.h1709 uint64_t IsInstance : 1;
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h4793 bool IsInstance,
10086 bool IsInstance);
10088 bool IsInstance);
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaOverload.cpp6568 Sema::SelectBestMethod(Selector Sel, MultiExprArg Args, bool IsInstance, in SelectBestMethod() argument