Home
last modified time | relevance | path

Searched refs:Owned (Results 1 – 21 of 21) sorted by relevance

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_allocator.h177 bool Owned; member
230 Owned(true), in Allocator()
238 Owned(false), in Allocator()
255 Owned = O.Owned; in Allocator()
256 O.Owned = false; in Allocator()
272 Owned = O.Owned;
273 O.Owned = false;
280 if (Owned && BackingStore != nullptr) { in ~Allocator()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DJSON.h581 ObjectKey(std::string S) : Owned(new std::string(std::move(S))) { in ObjectKey()
582 if (LLVM_UNLIKELY(!isUTF8(*Owned))) { in ObjectKey()
584 *Owned = fixUTF8(std::move(*Owned)); in ObjectKey()
586 Data = *Owned; in ObjectKey()
601 if (C.Owned) {
602 Owned.reset(new std::string(*C.Owned));
603 Data = *Owned;
617 std::unique_ptr<std::string> Owned;
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.h53 Owned = 0, // Owning reference. enumerator
152 return getKind() == Owned; in isOwned()
172 return RefVal(Owned, o, /*Count=*/1, 0, t, IvarAccessHistory::None); in makeOwned()
H A DRetainCountChecker.cpp53 case Owned: { in print()
751 case RefVal::Owned: in updateSymbol()
764 if (V.getKind() == RefVal::Owned) { in updateSymbol()
787 case RefVal::Owned: in updateSymbol()
802 case RefVal::Owned: in updateSymbol()
999 case RefVal::Owned: { in processReturn()
H A DRetainCountDiagnostics.cpp117 case RefVal::Owned: in shouldGenerateNote()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h105 Owned // We have ownership of the incoming PyObject. We should enumerator
123 T thing(PyRefType::Owned, obj); in Take()
415 else if (type == PyRefType::Owned)
768 PythonObject(PyRefType::Owned, static_cast<PyObject *>(GetValue()));
H A DPythonDataObjects.cpp190 return PythonString(PyRefType::Owned, repr); in Repr()
199 return PythonString(PyRefType::Owned, str); in Str()
261 return PythonObject(PyRefType::Owned, in GetAttributeValue()
688 return PythonList(PyRefType::Owned, PyDict_Keys(m_py_obj)); in GetKeys()
913 return PythonObject(PyRefType::Owned, PyObject_CallObject(m_py_obj, nullptr)); in operator ()()
919 return PythonObject(PyRefType::Owned, in operator ()()
926 return PythonObject(PyRefType::Owned, in operator ()()
H A DScriptInterpreterPython.cpp879 PyRefType::Owned, in ExecuteOneLine()
883 PyRefType::Owned, in ExecuteOneLine()
1500 PythonObject py_return(PyRefType::Owned, in GetRecognizedArguments()
2632 PyRefType::Owned, static_cast<PyObject *>(module_pyobj))); in LoadScriptingModule()
2855 PythonObject pmeth(PyRefType::Owned, in GetFlagsForCommandObject()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DTypeErasedDataflowAnalysis.cpp225 std::deque<TypeErasedDataflowAnalysisState> Owned; member in clang::dataflow::__anonbea4f3b00211::JoinedStateBuilder
238 Owned.push_back(std::move(State)); in addOwned()
239 All.push_back(&Owned.back()); in addOwned()
/freebsd-14.2/crypto/openssl/include/openssl/
H A Dsrp.h.in54 /* Owned by us. */
61 /* Owned by us. */
/freebsd-14.2/contrib/llvm-project/lldb/bindings/python/
H A Dpython-swigsafecast.swig5 return {PyRefType::Owned, SWIG_NewPointerObj(obj, info, SWIG_POINTER_OWN)};
/freebsd-14.2/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangleNodes.cpp124 std::string Owned(SV.begin(), SV.end()); in toString() local
126 return Owned; in toString()
H A DMicrosoftDemangle.cpp1011 std::string_view Owned = copyString(OB); in memorizeIdentifier() local
1012 memorizeString(Owned); in memorizeIdentifier()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DDeclSpec.cpp806 Decl *Rep, bool Owned, in SetTypeSpecType() argument
808 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Owned, Policy); in SetTypeSpecType()
815 Decl *Rep, bool Owned, in SetTypeSpecType() argument
831 TypeSpecOwned = Owned && Rep != nullptr; in SetTypeSpecType()
H A DTreeTransform.h141 static inline ExprResult Owned(Expr *E) { return E; } in Owned() function
142 static inline StmtResult Owned(Stmt *S) { return S; } in Owned() function
2530 return Owned(new (getSema().Context) CXXCatchStmt(CatchLoc, ExceptionDecl, in RebuildCXXCatchStmt()
3817 return Owned( in RebuildObjCPropertyRefExpr()
7833 return Owned(S); in TransformWhileStmt()
8085 return Owned(S); in TransformMSAsmStmt()
H A DSemaExprCXX.cpp8743 ExprResult TransformLambdaExpr(LambdaExpr *E) { return Owned(E); } in TransformLambdaExpr()
8745 ExprResult TransformBlockExpr(BlockExpr *E) { return Owned(E); } in TransformBlockExpr()
H A DSemaTemplate.cpp10484 bool Owned = false; in ActOnExplicitInstantiation() local
10488 MultiTemplateParamsArg(), Owned, IsDependent, SourceLocation(), in ActOnExplicitInstantiation()
H A DSemaDeclCXX.cpp17656 bool Owned = false; in ActOnTemplatedFriendTag() local
17661 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnTemplatedFriendTag()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h712 unsigned &DiagID, Decl *Rep, bool Owned,
720 unsigned &DiagID, Decl *Rep, bool Owned,
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp1975 bool Owned = false; in ParseClassSpecifier() local
2113 DS.getModulePrivateSpecLoc(), TParams, Owned, IsDependent, in ParseClassSpecifier()
2177 DiagID, TagOrTempResult.get(), Owned, Policy); in ParseClassSpecifier()
H A DParseDecl.cpp5152 bool Owned = false; in ParseEnumSpecifier() local
5159 TParams, Owned, IsDependent, ScopedEnumKWLoc, in ParseEnumSpecifier()
5175 PrevSpec, DiagID, TagDecl, Owned, in ParseEnumSpecifier()
5230 PrevSpec, DiagID, TagDecl, Owned, in ParseEnumSpecifier()