Home
last modified time | relevance | path

Searched refs:owned (Results 1 – 25 of 318) sorted by relevance

12345678910>>...13

/third_party/icu/icu4c/source/common/
Dlsr.cpp26 owned = langScript.cloneData(errorCode); in LSR()
28 language = owned; in LSR()
29 script = owned + scriptOffset; in LSR()
35 language(other.language), script(other.script), region(other.region), owned(other.owned), in LSR()
38 if (owned != nullptr) { in LSR()
40 other.owned = nullptr; in LSR()
46 uprv_free(owned); in deleteOwned()
56 owned = other.owned; in operator =()
58 if (owned != nullptr) { in operator =()
60 other.owned = nullptr; in operator =()
Dlsr.h29 char *owned = nullptr; member
52 if (owned != nullptr) { in ~LSR()
/third_party/node/deps/icu-small/source/common/
Dlsr.cpp26 owned = langScript.cloneData(errorCode); in LSR()
28 language = owned; in LSR()
29 script = owned + scriptOffset; in LSR()
35 language(other.language), script(other.script), region(other.region), owned(other.owned), in LSR()
38 if (owned != nullptr) { in LSR()
40 other.owned = nullptr; in LSR()
46 uprv_free(owned); in deleteOwned()
56 owned = other.owned; in operator =()
58 if (owned != nullptr) { in operator =()
60 other.owned = nullptr; in operator =()
Dlsr.h29 char *owned = nullptr; member
52 if (owned != nullptr) { in ~LSR()
/third_party/skia/third_party/externals/icu/source/common/
Dlsr.cpp26 owned = langScript.cloneData(errorCode); in LSR()
28 language = owned; in LSR()
29 script = owned + scriptOffset; in LSR()
35 language(other.language), script(other.script), region(other.region), owned(other.owned), in LSR()
38 if (owned != nullptr) { in LSR()
40 other.owned = nullptr; in LSR()
46 uprv_free(owned); in deleteOwned()
56 owned = other.owned; in operator =()
58 if (owned != nullptr) { in operator =()
60 other.owned = nullptr; in operator =()
Dlsr.h29 char *owned = nullptr; member
52 if (owned != nullptr) { in ~LSR()
/third_party/gstreamer/gstreamer/libs/gst/base/
Dgstbitwriter.c56 ret->owned = TRUE; in gst_bit_writer_new()
117 bitwriter->owned = TRUE; in gst_bit_writer_init()
166 bitwriter->owned = FALSE; in gst_bit_writer_init_with_data()
180 if (bitwriter->owned) in gst_bit_writer_reset()
204 if (bitwriter->owned) in gst_bit_writer_reset_and_get_data()
228 gboolean owned; in gst_bit_writer_reset_and_get_buffer() local
232 owned = bitwriter->owned; in gst_bit_writer_reset_and_get_buffer()
239 if (data && !owned) in gst_bit_writer_reset_and_get_buffer()
Dgstbytewriter.c83 ret->owned = TRUE; in gst_byte_writer_new()
107 ret->owned = TRUE; in gst_byte_writer_new_with_size()
135 ret->owned = FALSE; in gst_byte_writer_new_with_data()
153 writer->owned = TRUE; in gst_byte_writer_init()
175 writer->owned = TRUE; in gst_byte_writer_init_with_size()
201 writer->owned = FALSE; in gst_byte_writer_init_with_data()
216 if (writer->owned) in gst_byte_writer_reset()
240 if (!writer->owned) in gst_byte_writer_reset_and_get_data()
/third_party/mesa3d/src/gallium/drivers/panfrost/
Dpan_mempool.c55 if (pool->owned) in panfrost_pool_alloc_backing()
70 bool prealloc, bool owned) in panfrost_pool_init() argument
74 pool->owned = owned; in panfrost_pool_init()
76 if (owned) in panfrost_pool_init()
86 if (!pool->owned) { in panfrost_pool_cleanup()
100 assert(pool->owned && "pool does not track BOs in unowned mode"); in panfrost_pool_get_bo_handles()
Dpan_mempool.h48 bool owned; member
73 if (!pool->owned) in panfrost_pool_take_ref()
86 owned);
94 assert(pool->owned && "pool does not track BOs in unowned mode"); in panfrost_pool_num_bos()
/third_party/boost/libs/utility/test/
Dbase_from_member_test.cpp65 void register_use( T &owner, U &owned ) in register_use() argument
66 { this->register_use_imp( identify(owner), identify(owned) ); } in register_use()
68 void unregister_use( T &owner, U &owned ) in unregister_use() argument
69 { this->unregister_use_imp( identify(owner), identify(owned) ); } in unregister_use()
76 void register_use_imp( object_id owner, object_id owned );
77 void unregister_use_imp( object_id owner, object_id owned );
318 object_id owned in register_use_imp() argument
321 if ( db_.count(owned) > 0 ) in register_use_imp()
327 defrauders_in_.push_back( std::make_pair(owner, owned) ); in register_use_imp()
330 std::cout << "Attempted to own a non-existant " << owned in register_use_imp()
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dlistformatter.cpp88 owned(other.owned), data(other.data) { in ListFormatter()
89 if (other.owned != nullptr) { in ListFormatter()
90 owned = new ListFormatInternal(*other.owned); in ListFormatter()
91 data = owned; in ListFormatter()
99 delete owned; in operator =()
100 if (other.owned) { in operator =()
101 owned = new ListFormatInternal(*other.owned); in operator =()
102 data = owned; in operator =()
104 owned = nullptr; in operator =()
304 owned = new ListFormatInternal(listFormatData, errorCode); in ListFormatter()
[all …]
/third_party/node/deps/icu-small/source/i18n/
Dlistformatter.cpp273 owned(other.owned), data(other.data) { in ListFormatter()
274 if (other.owned != nullptr) { in ListFormatter()
275 owned = new ListFormatInternal(*other.owned); in ListFormatter()
276 data = owned; in ListFormatter()
284 delete owned; in operator =()
285 if (other.owned) { in operator =()
286 owned = new ListFormatInternal(*other.owned); in operator =()
287 data = owned; in operator =()
289 owned = nullptr; in operator =()
545 owned = new ListFormatInternal(listFormatData, errorCode); in ListFormatter()
[all …]
/third_party/icu/icu4c/source/i18n/
Dlistformatter.cpp273 owned(other.owned), data(other.data) { in ListFormatter()
274 if (other.owned != nullptr) { in ListFormatter()
275 owned = new ListFormatInternal(*other.owned); in ListFormatter()
276 data = owned; in ListFormatter()
284 delete owned; in operator =()
285 if (other.owned) { in operator =()
286 owned = new ListFormatInternal(*other.owned); in operator =()
287 data = owned; in operator =()
289 owned = nullptr; in operator =()
545 owned = new ListFormatInternal(listFormatData, errorCode); in ListFormatter()
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/
Dlistformatter.cpp273 owned(other.owned), data(other.data) { in ListFormatter()
274 if (other.owned != nullptr) { in ListFormatter()
275 owned = new ListFormatInternal(*other.owned); in ListFormatter()
276 data = owned; in ListFormatter()
284 delete owned; in operator =()
285 if (other.owned) { in operator =()
286 owned = new ListFormatInternal(*other.owned); in operator =()
287 data = owned; in operator =()
289 owned = nullptr; in operator =()
545 owned = new ListFormatInternal(listFormatData, errorCode); in ListFormatter()
[all …]
/third_party/grpc/src/php/ext/grpc/
Dcall.h31 bool owned;
47 zval *grpc_php_wrap_call(grpc_call *wrapped, bool owned TSRMLS_DC);
/third_party/grpc/test/cpp/util/
Dbyte_buffer_test.cc114 bool owned = false; in TEST_F() local
118 buffer, &send_buffer, &owned); in TEST_F()
120 EXPECT_TRUE(owned); in TEST_F()
/third_party/cef/libcef_dll/cpptoc/
Dcpptoc_scoped.h181 void Initialize(BaseName* obj, bool owned) { in Initialize() argument
183 owned_ = owned; in Initialize()
187 if (owned) in Initialize()
/third_party/grpc/src/core/lib/security/credentials/xds/
Dxds_credentials.cc123 bool owned; in create_security_connector() member
125 if (owned) grpc_channel_args_destroy(args); in create_security_connector()
138 temp_args.owned = true; in create_security_connector()
/third_party/selinux/libselinux/src/
Dregex.c276 int owned; /* member
302 (*regex)->owned = 1; in regex_prepare_data()
336 (*regex)->owned = 0; in regex_load_mmap()
380 if (regex->owned) { in get_pcre_extra()
442 if (regex->owned) { in regex_data_free()
/third_party/boost/boost/sort/common/
Dmerge_block.hpp82 bool owned; member
101 owned(pcirc_buffer == nullptr) in merge_block()
116 if (owned) in merge_block()
128 if (ptr_circ != nullptr and owned) in ~merge_block()
/third_party/cef/libcef/browser/chrome/
Dbrowser_platform_delegate_chrome.cc20 bool owned) { in WebContentsCreated() argument
21 CefBrowserPlatformDelegate::WebContentsCreated(web_contents, owned); in WebContentsCreated()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dcord_rep_btree.cc200 inline bool owned(int depth) const { return depth < share_depth; } in owned() function
286 const bool owned = depth < share_depth; in Unwind() local
290 result = node->AddEdge<edge_type>(owned, result.tree, length); in Unwind()
293 result = node->SetEdge<edge_type>(owned, result.tree, length); in Unwind()
431 inline OpResult CordRepBtree::AddEdge(bool owned, CordRep* edge, size_t delta) { in AddEdge() argument
433 OpResult result = ToOpResult(owned); in AddEdge()
440 OpResult CordRepBtree::SetEdge(bool owned, CordRep* edge, size_t delta) { in SetEdge() argument
443 if (owned) { in SetEdge()
469 leaf->AddEdge<edge_type>(ops.owned(depth), rep, length); in AddCordRep()
557 OpResult result = leaf->ToOpResult(ops.owned(depth)); in AddData()
[all …]
/third_party/iptables/extensions/
Dlibxt_owner.man9 Matches if the packet socket's file structure (if it has one) is owned by the
15 Matches if the packet socket's file structure is owned by the given group.
/third_party/skia/third_party/externals/dawn/src/tests/white_box/
DMetalAutoreleasePoolTests.mm34 // Test that the MTLCommandBuffer owned by the pending command context can
47 // Test that the MTLBlitCommandEncoder owned by the pending command context

12345678910>>...13