| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/xray/ |
| D | xray_allocator.h | 177 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-12-stable/contrib/llvm-project/lldb/bindings/python/ |
| D | python-wrapper.swig | 78 PythonObject frame_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_frame)); 79 PythonObject bp_loc_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_bp_loc)); 87 PythonObject args_arg(PyRefType::Owned, SBTypeToSWIGWrapper(args_value)); 130 PythonObject frame_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_frame)); 131 PythonObject wp_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_wp)); 201 PythonObject value_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_value)); 202 PythonObject options_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_options)); 238 PythonObject val_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_value)); 269 PythonObject debugger_arg(PyRefType::Owned, SBTypeToSWIGWrapper(debugger_sb)); 306 PythonObject target_arg(PyRefType::Owned, SBTypeToSWIGWrapper(new lldb::SBTarget(target_sp))); [all …]
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
| D | ScriptedProcessPythonInterface.cpp | 96 PyRefType::Owned, in GetStatusFromMethod() 114 PythonObject py_return(PyRefType::Owned, in GetStatusFromMethod() 160 PyRefType::Owned, in GetGenericInteger() 178 PythonObject py_return(PyRefType::Owned, in GetGenericInteger() 244 PythonObject pmeth(PyRefType::Owned, in ReadMemoryAtAddress() 262 PythonObject py_return(PyRefType::Owned, in ReadMemoryAtAddress()
|
| D | PythonDataObjects.cpp | 184 return PythonString(PyRefType::Owned, repr); in Repr() 193 return PythonString(PyRefType::Owned, str); in Str() 255 return PythonObject(PyRefType::Owned, in GetAttributeValue() 406 if (type == PyRefType::Owned) in Convert() 410 if (type == PyRefType::Owned) in Convert() 413 type = PyRefType::Owned; in Convert() 514 if (type == PyRefType::Owned) in Convert() 518 if (type == PyRefType::Owned) in Convert() 521 type = PyRefType::Owned; in Convert() 719 return PythonList(PyRefType::Owned, PyDict_Keys(m_py_obj)); in GetKeys() [all …]
|
| D | ScriptInterpreterPython.cpp | 995 PyRefType::Owned, in ExecuteOneLine() 999 PyRefType::Owned, in ExecuteOneLine() 1576 PythonObject py_return(PyRefType::Owned, in GetRecognizedArguments() 1641 PythonObject pmeth(PyRefType::Owned, in OSPlugin_RegisterInfo() 1662 PyRefType::Owned, in OSPlugin_RegisterInfo() 1696 PythonObject pmeth(PyRefType::Owned, in OSPlugin_ThreadsInfo() 1717 PyRefType::Owned, in OSPlugin_ThreadsInfo() 1754 PythonObject pmeth(PyRefType::Owned, in OSPlugin_RegisterContextData() 1774 PyRefType::Owned, in OSPlugin_RegisterContextData() 1813 PythonObject pmeth(PyRefType::Owned, in OSPlugin_CreateThread() [all …]
|
| D | PythonDataObjects.h | 117 Owned // We have ownership of the incoming PyObject. We should enumerator 135 T thing(PyRefType::Owned, obj); in Take() 420 else if (type == PyRefType::Owned)
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/ |
| D | JSON.h | 498 ObjectKey(std::string S) : Owned(new std::string(std::move(S))) { in ObjectKey() 499 if (LLVM_UNLIKELY(!isUTF8(*Owned))) { in ObjectKey() 501 *Owned = fixUTF8(std::move(*Owned)); in ObjectKey() 503 Data = *Owned; in ObjectKey() 518 if (C.Owned) { 519 Owned.reset(new std::string(*C.Owned)); 520 Data = *Owned; 534 std::unique_ptr<std::string> Owned;
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
| D | RetainCountChecker.h | 54 Owned = 0, // Owning reference. enumerator 153 return getKind() == Owned; in isOwned() 173 return RefVal(Owned, o, /*Count=*/1, 0, t, IvarAccessHistory::None); in makeOwned()
|
| D | RetainCountChecker.cpp | 52 case Owned: { in print() 752 case RefVal::Owned: in updateSymbol() 765 if (V.getKind() == RefVal::Owned) { in updateSymbol() 788 case RefVal::Owned: in updateSymbol() 803 case RefVal::Owned: in updateSymbol() 999 case RefVal::Owned: { in processReturn()
|
| D | RetainCountDiagnostics.cpp | 119 case RefVal::Owned: in shouldGenerateNote()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/ |
| D | DeclSpec.cpp | 785 Decl *Rep, bool Owned, in SetTypeSpecType() argument 787 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Owned, Policy); in SetTypeSpecType() 794 Decl *Rep, bool Owned, in SetTypeSpecType() argument 810 TypeSpecOwned = Owned && Rep != nullptr; in SetTypeSpecType()
|
| D | TreeTransform.h | 139 static inline ExprResult Owned(Expr *E) { return E; } in Owned() function 140 static inline StmtResult Owned(Stmt *S) { return S; } in Owned() function 2328 return Owned(new (getSema().Context) CXXCatchStmt(CatchLoc, ExceptionDecl, in RebuildCXXCatchStmt() 3575 return Owned( in RebuildObjCPropertyRefExpr() 7467 return Owned(S); in TransformWhileStmt() 7720 return Owned(S); in TransformMSAsmStmt()
|
| D | SemaExprCXX.cpp | 8402 ExprResult TransformLambdaExpr(LambdaExpr *E) { return Owned(E); } in TransformLambdaExpr() 8404 ExprResult TransformBlockExpr(BlockExpr *E) { return Owned(E); } in TransformBlockExpr()
|
| D | SemaTemplate.cpp | 9822 bool Owned = false; in ActOnExplicitInstantiation() local 9827 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnExplicitInstantiation()
|
| D | SemaDeclCXX.cpp | 16513 bool Owned = false; in ActOnTemplatedFriendTag() local 16518 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnTemplatedFriendTag()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Demangle/ |
| D | MicrosoftDemangleNodes.cpp | 126 std::string Owned(OS.getBuffer()); in toString() local 128 return Owned; in toString()
|
| D | MicrosoftDemangle.cpp | 976 StringView Owned = copyString(Name); in memorizeIdentifier() local 977 memorizeString(Owned); in memorizeIdentifier()
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/ |
| D | DeclSpec.h | 676 unsigned &DiagID, Decl *Rep, bool Owned, 684 unsigned &DiagID, Decl *Rep, bool Owned,
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Parse/ |
| D | ParseDeclCXX.cpp | 1867 bool Owned = false; in ParseClassSpecifier() local 2005 DS.getModulePrivateSpecLoc(), TParams, Owned, IsDependent, in ParseClassSpecifier() 2060 PrevSpec, DiagID, TagOrTempResult.get(), Owned, in ParseClassSpecifier()
|
| D | ParseDecl.cpp | 4711 bool Owned = false; in ParseEnumSpecifier() local 4717 attrs, AS, DS.getModulePrivateSpecLoc(), TParams, Owned, IsDependent, in ParseEnumSpecifier() 4733 PrevSpec, DiagID, TagDecl, Owned, in ParseEnumSpecifier() 4788 PrevSpec, DiagID, TagDecl, Owned, in ParseEnumSpecifier()
|