Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/lldb/tools/lldb-rpc/lldb-rpc-gen/server/
H A DRPCServerSourceEmitter.cpp86 if (method.IsInstance && !method.IsCtor) in EmitStorageForParameters()
152 if (method.IsInstance && !method.IsCtor) in EmitDecodeForParameters()
193 if (method.IsInstance) { in CreateMethodCall()
/freebsd/contrib/llvm-project/clang/include/clang/APINotes/
H A DAPINotesReader.h130 lookupObjCProperty(ContextID CtxID, llvm::StringRef Name, bool IsInstance);
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesReader.cpp282 char IsInstance = endian::readNext<uint8_t, llvm::endianness::little>(Data); in ReadKey() local
283 return {ClassID, NameID, IsInstance}; in ReadKey()
393 auto IsInstance = endian::readNext<uint8_t, llvm::endianness::little>(Data); in ReadKey() local
394 return {ClassID, SelectorID, IsInstance}; in ReadKey()
2151 bool IsInstance) in lookupObjCProperty() argument
2161 std::make_tuple(CtxID.Value, *PropertyID, (char)IsInstance)); in lookupObjCProperty()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp1362 auto isTextIO = IsInstance(textIOBase.get()); in ConvertToFileForcingUseOfScriptingIOMethods()
1369 auto isRawIO = IsInstance(rawIOBase.get()); in ConvertToFileForcingUseOfScriptingIOMethods()
1372 auto isBufferedIO = IsInstance(bufferedIOBase.get()); in ConvertToFileForcingUseOfScriptingIOMethods()
H A DPythonDataObjects.h373 llvm::Expected<bool> IsInstance(const PythonObject &cls) {
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp234 bool IsInstance) const { in getProperty()
237 if (Prop->isInstanceProperty() == IsInstance) { in getProperty()
1389 bool IsInstance = isInstanceMethod(); in findPropertyDecl() local
1395 if (IsInstance) { in findPropertyDecl()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h800 bool IsInstance);
802 bool IsInstance);
H A DSema.h10862 bool IsInstance,
/freebsd/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()
1076 bool IsInstance) const;
H A DDeclBase.h1889 uint64_t IsInstance : 1;
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-typemaps.swig96 if (obj.IsInstance(sb_structured_data_class.get())) {
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp7305 Sema::SelectBestMethod(Selector Sel, MultiExprArg Args, bool IsInstance, in SelectBestMethod() argument