Home
last modified time | relevance | path

Searched refs:unowned (Results 1 – 20 of 20) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/
Dmaybe_owning_device_memory.h33 explicit MaybeOwningDeviceMemory(tensorflow::se::DeviceMemoryBase unowned) in MaybeOwningDeviceMemory() argument
34 : mem_(unowned) {} in MaybeOwningDeviceMemory()
38 MaybeOwningDeviceMemory& operator=(tensorflow::se::DeviceMemoryBase unowned) {
39 mem_ = unowned;
/external/llvm-project/clang/test/SemaObjC/
Darc-decls.m69 …e getter '-newFoo' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
70 … getter '-copyBar' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
71 …getter '-allocBaz' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
73 … getter '-newDFoo' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
74 …getter '-copyDBar' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
75 …etter '-allocDBaz' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
93 …e getter '-newFoo' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
96 …{explicitly declare getter '-newBar' with 'OBJC_METHOD_FAMILY_NONE' to return an 'unowned' object}}
99 …{explicitly declare getter '-newBaz' with 'OBJC_METHOD_FAMILY_NONE' to return an 'unowned' object}}
102 …etter '-newGarply' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
/external/clang/test/SemaObjC/
Darc-decls.m57 …e getter '-newFoo' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
58 … getter '-copyBar' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
59 …getter '-allocBaz' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
61 … getter '-newDFoo' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
62 …getter '-copyDBar' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
63 …etter '-allocDBaz' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
81 …e getter '-newFoo' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
84 …{explicitly declare getter '-newBar' with 'OBJC_METHOD_FAMILY_NONE' to return an 'unowned' object}}
87 …{explicitly declare getter '-newBaz' with 'OBJC_METHOD_FAMILY_NONE' to return an 'unowned' object}}
90 …etter '-newGarply' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
/external/clang/test/Modules/
Dcrashes.m12 … getter '-newFile' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
/external/llvm-project/clang/test/Modules/
Dcrashes.m12 … getter '-newFile' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
/external/clang/test/Analysis/
Dproperties.m768 id unowned = [self.unownedProp retain];
769 [unowned release];
775 id unowned = [self.unownedProp retain];
776 [unowned release];
777 clang_analyzer_eval(unowned == fromIvar); // expected-warning{{TRUE}}
Dobjc-arc.m98 // Test that 'init' methods do not try to claim ownerhip of an *unowned* allocated object
/external/llvm-project/clang/test/Analysis/
Dproperties.m796 id unowned = [self.unownedProp retain];
797 [unowned release];
803 id unowned = [self.unownedProp retain];
804 [unowned release];
805 clang_analyzer_eval(unowned == fromIvar); // expected-warning{{TRUE}}
Dobjc-arc.m98 // Test that 'init' methods do not try to claim ownerhip of an *unowned* allocated object
/external/skia/tests/
DReadWritePixelsGpuTest.cpp1135 for (bool unowned : {false, true}) { // test a GrCPixmap that doesn't own its storage. in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
1153 if (unowned) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
1231 GrColorTypeToStr(info.colorType()), i, unowned, x, y, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
/external/python/cpython3/Misc/NEWS.d/
D3.6.0a4.rst335 Fix possible Py_DECREF on unowned object in _sre.
D3.5.3rc1.rst1205 Fix possible Py_DECREF on unowned object in _sre.
/external/python/cpython2/Misc/NEWS.d/
D2.7.13rc1.rst553 Fix possible Py_DECREF on unowned object in _sre.
/external/llvm-project/clang/docs/analyzer/
Dcheckers.rst256 recognize some of the more sophisticated approaches to passing unowned pointers
/external/python/cpython2/Doc/library/
Dmultiprocessing.rst1077 or thread other than the owner or if the lock is in an unlocked (unowned)
/external/python/cpython3/Doc/library/
Dmultiprocessing.rst1361 or thread other than the owner or if the lock is in an unlocked (unowned)
/external/clang/include/clang/Basic/
DDiagnosticSemaKinds.td909 "explicitly declare getter %objcinstance0 with '%1' to return an 'unowned' "
/external/llvm-project/clang/include/clang/Basic/
DDiagnosticSemaKinds.td1231 "explicitly declare getter %objcinstance0 with '%1' to return an 'unowned' "
/external/kotlinx.coroutines/benchmarks/src/jmh/resources/
Dospd.txt.gz
/external/python/cpython3/Misc/
DHISTORY44 - Issue #27774: Fix possible Py_DECREF on unowned object in _sre.