Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/xla/service/
Dmaybe_owning_device_memory.h34 explicit MaybeOwningDeviceMemory(se::DeviceMemoryBase unowned) in MaybeOwningDeviceMemory() argument
35 : mem_(unowned) {} in MaybeOwningDeviceMemory()
39 MaybeOwningDeviceMemory& operator=(se::DeviceMemoryBase unowned) {
40 mem_ = unowned;
/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/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/python/cpython3/Misc/NEWS.d/
D3.6.0a4.rst335 Fix possible Py_DECREF on unowned object in _sre.
D3.5.3rc1.rst1206 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/protobuf/docs/swift/
DDesignDoc.md57 precedence, prefix, Protocol, required, right, set, Type, unowned, weak,
/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.rst1322 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/python/cpython3/Misc/
DHISTORY44 - Issue #27774: Fix possible Py_DECREF on unowned object in _sre.