Home
last modified time | relevance | path

Searched refs:elem (Results 576 - 600 of 638) sorted by relevance

1...<<212223242526

/third_party/rust/crates/syn/src/gen/
H A Ddebug.rs2614 formatter.field("elem", &self.elem); in fmt()
2652 formatter.field("elem", &self.elem); in fmt()
2758 formatter.field("elem", &self.elem); in fmt()
2790 formatter.field("elem", &self.elem); in fmt()
2807 formatter.field("elem", &self.elem); in fmt()
[all...]
H A Dvisit_mut.rs3484 v.visit_type_mut(&mut *node.elem); in visit_type_array_mut()
3519 v.visit_type_mut(&mut *node.elem); in visit_type_group_mut()
3602 v.visit_type_mut(&mut *node.elem); in visit_type_paren_mut()
3624 v.visit_type_mut(&mut *node.elem); in visit_type_ptr_mut()
3637 v.visit_type_mut(&mut *node.elem); in visit_type_reference_mut()
3646 v.visit_type_mut(&mut *node.elem); in visit_type_slice_mut()
H A Dvisit.rs3481 v.visit_type(&*node.elem); in visit_type_array()
3516 v.visit_type(&*node.elem); in visit_type_group()
3599 v.visit_type(&*node.elem); in visit_type_paren()
3621 v.visit_type(&*node.elem); in visit_type_ptr()
3634 v.visit_type(&*node.elem); in visit_type_reference()
3643 v.visit_type(&*node.elem); in visit_type_slice()
/third_party/icu/icu4c/source/i18n/
H A Ddtptngen.cpp1885 const UHashElement* elem = nullptr; in copyHashtable() local
1887 while((elem = other->nextElement(pos))!= nullptr){ in copyHashtable()
1888 const UHashTok otherKeyTok = elem->key; in copyHashtable()
/third_party/node/deps/icu-small/source/i18n/
H A Ddtptngen.cpp1877 const UHashElement* elem = nullptr; in copyHashtable() local
1879 while((elem = other->nextElement(pos))!= nullptr){ in copyHashtable()
1880 const UHashTok otherKeyTok = elem->key; in copyHashtable()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Ddtptngen.cpp1798 const UHashElement* elem = nullptr;
1800 while((elem = other->nextElement(pos))!= nullptr){
1801 const UHashTok otherKeyTok = elem->key;
/third_party/python/Lib/test/
H A Dtest_bytes.py1393 for elem in [5, -5, 0, int(10e20), 'str', 2.3,
1396 b[3:4] = elem
1398 for elem in [[254, 255, 256], [-256, 9000]]:
1400 b[3:4] = elem
H A Dtest_builtin.py1183 self.assertEqual(max((1,), key=neg), 1) # one elem iterable
1184 self.assertEqual(max((1,2), key=neg), 1) # two elem iterable
1187 self.assertEqual(max((), default=None), None) # zero elem iterable
1188 self.assertEqual(max((1,), default=None), 1) # one elem iterable
1189 self.assertEqual(max((1,2), default=None), 2) # two elem iterable
1197 keys = dict((elem, random.randrange(50)) for elem in data)
1242 self.assertEqual(min((1,), key=neg), 1) # one elem iterable
1243 self.assertEqual(min((1,2), key=neg), 2) # two elem iterable
1246 self.assertEqual(min((), default=None), None) # zero elem iterabl
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/fragment_shading_rate/
H A DvktFragmentShadingRateBasic.cpp1594 [](const Move<VkDescriptorSetLayout>& elem) { return elem.get(); }); in iterate()
2413 [](const Move<VkDescriptorSet>& elem) { return elem.get(); }); in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/fragment_shading_rate/
H A DvktFragmentShadingRateBasic.cpp1402 [](const Move<VkDescriptorSetLayout>& elem) { return elem.get(); }); in iterate()
2095 [](const Move<VkDescriptorSet>& elem) { return elem.get(); }); in iterate()
/third_party/rust/crates/syn/src/
H A Ditem.rs1618 elem: Box::new(ty), in parse()
2520 first_ty_ref = &ty.elem; in parse_impl()
2524 first_ty = *ty.elem; in parse_impl()
3366 && match &*ty.elem { in to_tokens()
/third_party/python/Modules/
H A Dposixmodule.c8328 PyObject *elem; in os_setgroups() local
8329 elem = PySequence_GetItem(groups, i); in os_setgroups()
8330 if (!elem) { in os_setgroups()
8334 if (!PyLong_Check(elem)) { in os_setgroups()
8337 Py_DECREF(elem); in os_setgroups()
8341 if (!_Py_Gid_Converter(elem, &grouplist[i])) { in os_setgroups()
8342 Py_DECREF(elem); in os_setgroups()
8347 Py_DECREF(elem); in os_setgroups()
/third_party/alsa-lib/include/sound/uapi/
H A Dasound.h1217 } elem; member
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dwpa_supplicant_i.h1518 const u8 *elem, size_t len);
/foundation/ability/form_fwk/services/src/
H A Dform_mgr_adapter.cpp393 auto result = std::find_if(formIdMap_.begin(), formIdMap_.end(), [this, formId, &formStates] (const auto elem) { in CheckAddFormTaskTimeoutOrFailed()
394 if (elem.first == formId) { in CheckAddFormTaskTimeoutOrFailed()
395 if (elem.second == AddFormResultErrorCode::FAILED) { in CheckAddFormTaskTimeoutOrFailed()
398 } else if (elem.second == AddFormResultErrorCode::TIMEOUT) { in CheckAddFormTaskTimeoutOrFailed()
401 } else if (elem.second == AddFormResultErrorCode::SUCCESS) { in CheckAddFormTaskTimeoutOrFailed()
/third_party/node/deps/v8/src/heap/
H A Dfactory.cc1967 FixedArrayBase elem; in CopyJSObjectWithAllocationSite() local
1969 elem = elements; in CopyJSObjectWithAllocationSite()
1971 elem = *CopyFixedDoubleArray( in CopyJSObjectWithAllocationSite()
1974 elem = *CopyFixedArray(handle(FixedArray::cast(elements), isolate())); in CopyJSObjectWithAllocationSite()
1976 clone->set_elements(elem); in CopyJSObjectWithAllocationSite()
/third_party/node/deps/v8/src/compiler/
H A Dcommon-operator.cc353 for (MachineType elem : *types) { in operator <<()
358 os << elem; in operator <<() local
/third_party/node/deps/openssl/openssl/ssl/
H A Dssl_ciph.c1305 static int ciphersuite_cb(const char *elem, int len, void *arg) in ciphersuite_cb() argument
1316 memcpy(name, elem, len); in ciphersuite_cb()
/third_party/openssl/ssl/
H A Dssl_ciph.c1304 static int ciphersuite_cb(const char *elem, int len, void *arg) in ciphersuite_cb() argument
1315 memcpy(name, elem, len); in ciphersuite_cb()
/third_party/vulkan-loader/tests/
H A Dloader_unknown_ext_tests.cpp1004 for (auto const& elem : interception_stack) { in check()
1005 if (elem == 1) break; in check()
/third_party/ffmpeg/libavcodec/
H A Dhevcdec.c997 #define SET_SAO(elem, value) \
1000 sao->elem = value; \
1002 sao->elem = CTB(s->sao, rx-1, ry).elem; \
1004 sao->elem = CTB(s->sao, rx, ry-1).elem; \
1006 sao->elem = 0; \
/third_party/node/deps/v8/src/parsing/
H A Dparser-base.h2152 ExpressionT elem; in ParseArrayLiteral() local
2154 elem = factory()->NewTheHoleLiteral(); in ParseArrayLiteral()
2161 elem = factory()->NewSpread(argument, start_pos, expr_pos); in ParseArrayLiteral()
2180 elem = ParsePossibleDestructuringSubPattern(&accumulation_scope); in ParseArrayLiteral()
2182 values.Add(elem); in ParseArrayLiteral()
2185 if (elem->IsFailureExpression()) return elem; in ParseArrayLiteral()
/third_party/rust/crates/memchr/bench/data/code/
H A Drust-library.rs2553 while let Some(elem) = bheap.pop() { in bench_pop()
2554 black_box(elem); in bench_pop()
13921 ($elem:expr; $n:expr) => (
13922 $crate::__rust_force_expr!($crate::vec::from_elem($elem, $n))
13938 ($elem:expr; $n:expr) => (
13939 $crate::vec::from_elem($elem, $n)
23873 let elem = ptr::read(&this.ptr.as_ref().data); in try_unwrap()
23879 Ok(elem) in try_unwrap()
28619 fn extend_one(&mut self, elem: T) { in extend_one()
28620 self.push_back(elem); in extend_one()
[all...]
/third_party/mesa3d/src/amd/compiler/
H A Daco_spill.cpp1506 Temp elem = split->definitions[i].getTemp(); in spill_vgpr() local
1508 bld.scratch(aco_opcode::scratch_store_dword, Operand(v1), ctx.scratch_rsrc, elem, in spill_vgpr()
1513 ctx.program->scratch_offset, elem, offset, false, true); in spill_vgpr()
/third_party/node/deps/v8/src/wasm/
H A Dwasm-objects.cc904 MaybeObject elem = instances->Get(i); in update_instances() local
906 if (elem->GetHeapObjectIfWeak(&heap_object)) { in update_instances()
911 DCHECK(elem->IsCleared()); in update_instances()

Completed in 149 milliseconds

1...<<212223242526