Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetPassConfig.h59 bool IsInstance = false; variable
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()
75 assert(IsInstance && "Not a Pass Instance"); in getInstance()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/APINotes/
H A DAPINotesReader.h130 lookupObjCProperty(ContextID CtxID, llvm::StringRef Name, bool IsInstance);
/freebsd-14.2/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesReader.cpp287 char IsInstance = in ReadKey() local
289 return {ClassID, NameID, IsInstance}; in ReadKey()
370 auto IsInstance = in ReadKey() local
372 return {ClassID, SelectorID, IsInstance}; in ReadKey()
1901 bool IsInstance) in lookupObjCProperty() argument
1911 std::make_tuple(CtxID.Value, *PropertyID, (char)IsInstance)); in lookupObjCProperty()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp1407 auto isTextIO = IsInstance(textIOBase.get()); in ConvertToFileForcingUseOfScriptingIOMethods()
1414 auto isRawIO = IsInstance(rawIOBase.get()); in ConvertToFileForcingUseOfScriptingIOMethods()
1417 auto isBufferedIO = IsInstance(bufferedIOBase.get()); in ConvertToFileForcingUseOfScriptingIOMethods()
H A DPythonDataObjects.h371 llvm::Expected<bool> IsInstance(const PythonObject &cls) {
/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h426 bool isInstanceMethod() const { return ObjCMethodDeclBits.IsInstance; } in isInstanceMethod()
428 ObjCMethodDeclBits.IsInstance = isInst; in setInstanceMethod()
1075 bool IsInstance) const;
H A DDeclBase.h1855 uint64_t IsInstance : 1;
/freebsd-14.2/contrib/llvm-project/lldb/bindings/python/
H A Dpython-typemaps.swig96 if (obj.IsInstance(sb_structured_data_class.get())) {
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h5042 bool IsInstance,
10728 bool IsInstance);
10730 bool IsInstance);
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp6994 Sema::SelectBestMethod(Selector Sel, MultiExprArg Args, bool IsInstance, in SelectBestMethod() argument