Searched refs:Owned (Results 1 - 19 of 19) sorted by relevance

/freebsd-current/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_allocator.h177 bool Owned; member in struct:__xray::Allocator
230 Owned(true),
238 Owned(false),
255 Owned = O.Owned;
256 O.Owned = false;
272 Owned = O.Owned;
273 O.Owned = false;
280 if (Owned
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DJSON.h576 /// - it's optimized for the string literal case (Owned == nullptr)
581 ObjectKey(std::string S) : Owned(new std::string(std::move(S))) {
582 if (LLVM_UNLIKELY(!isUTF8(*Owned))) {
584 *Owned = fixUTF8(std::move(*Owned));
586 Data = *Owned;
601 if (C.Owned) {
602 Owned.reset(new std::string(*C.Owned));
603 Data = *Owned;
617 std::unique_ptr<std::string> Owned; member in class:llvm::json::ObjectKey
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.h53 Owned = 0, // Owning reference. enumerator in enum:clang::ento::retaincountchecker::RefVal::Kind
152 return getKind() == Owned;
172 return RefVal(Owned, o, /*Count=*/1, 0, t, IvarAccessHistory::None);
H A DRetainCountChecker.cpp53 case Owned: {
54 Out << "Owned";
102 Out << "Release of Not-Owned [ERROR]";
751 case RefVal::Owned:
764 if (V.getKind() == RefVal::Owned) {
787 case RefVal::Owned:
802 case RefVal::Owned:
999 case RefVal::Owned: {
H A DRetainCountDiagnostics.cpp117 case RefVal::Owned:
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h105 Owned // We have ownership of the incoming PyObject. We should
123 T thing(PyRefType::Owned, obj);
415 else if (type == PyRefType::Owned)
768 PythonObject(PyRefType::Owned, static_cast<PyObject *>(GetValue()));
H A DPythonDataObjects.cpp190 return PythonString(PyRefType::Owned, repr);
199 return PythonString(PyRefType::Owned, str);
261 return PythonObject(PyRefType::Owned,
688 return PythonList(PyRefType::Owned, PyDict_Keys(m_py_obj));
913 return PythonObject(PyRefType::Owned, PyObject_CallObject(m_py_obj, nullptr));
919 return PythonObject(PyRefType::Owned,
926 return PythonObject(PyRefType::Owned,
H A DScriptInterpreterPython.cpp879 PyRefType::Owned,
883 PyRefType::Owned,
1500 PythonObject py_return(PyRefType::Owned,
2632 PyRefType::Owned, static_cast<PyObject *>(module_pyobj)));
2855 PythonObject pmeth(PyRefType::Owned,
/freebsd-current/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DTypeErasedDataflowAnalysis.cpp225 std::deque<TypeErasedDataflowAnalysisState> Owned; member in class:clang::dataflow::__anon345::JoinedStateBuilder
238 Owned.push_back(std::move(State));
239 All.push_back(&Owned.back());
/freebsd-current/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangleNodes.cpp124 std::string Owned(SV.begin(), SV.end());
126 return Owned;
H A DMicrosoftDemangle.cpp1011 std::string_view Owned = copyString(OB); local
1012 memorizeString(Owned);
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DDeclSpec.cpp806 Decl *Rep, bool Owned,
808 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Owned, Policy);
815 Decl *Rep, bool Owned,
831 TypeSpecOwned = Owned && Rep != nullptr;
803 SetTypeSpecType(TST T, SourceLocation Loc, const char *&PrevSpec, unsigned &DiagID, Decl *Rep, bool Owned, const PrintingPolicy &Policy) argument
811 SetTypeSpecType(TST T, SourceLocation TagKwLoc, SourceLocation TagNameLoc, const char *&PrevSpec, unsigned &DiagID, Decl *Rep, bool Owned, const PrintingPolicy &Policy) argument
H A DTreeTransform.h141 static inline ExprResult Owned(Expr *E) { return E; } function in class:clang::TreeTransform
142 static inline StmtResult Owned(Stmt *S) { return S; } function in class:clang::TreeTransform
2530 return Owned(new (getSema().Context) CXXCatchStmt(CatchLoc, ExceptionDecl,
3817 return Owned(
7833 return Owned(S);
8085 return Owned(S);
H A DSemaExprCXX.cpp8743 ExprResult TransformLambdaExpr(LambdaExpr *E) { return Owned(E); }
8745 ExprResult TransformBlockExpr(BlockExpr *E) { return Owned(E); }
H A DSemaTemplate.cpp10484 bool Owned = false; local
10488 MultiTemplateParamsArg(), Owned, IsDependent, SourceLocation(),
H A DSemaDeclCXX.cpp17656 bool Owned = false;
17661 MultiTemplateParamsArg(), Owned, IsDependent,
/freebsd-current/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-current/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp1975 bool Owned = false; local
2113 DS.getModulePrivateSpecLoc(), TParams, Owned, IsDependent,
2177 DiagID, TagOrTempResult.get(), Owned, Policy);
H A DParseDecl.cpp5152 bool Owned = false; local
5159 TParams, Owned, IsDependent, ScopedEnumKWLoc,
5175 PrevSpec, DiagID, TagDecl, Owned,
5230 PrevSpec, DiagID, TagDecl, Owned,

Completed in 301 milliseconds