Home
last modified time | relevance | path

Searched refs:iter (Results 2801 - 2825 of 4043) sorted by relevance

1...<<111112113114115116117118119120>>...162

/foundation/distributedhardware/distributed_input/common/include/
H A Dinput_hub.cpp121 auto iter = devices_.find(path); in IsInputNodeNoNeedScan() local
122 if (iter != devices_.end()) { in IsInputNodeNoNeedScan()
1456 for (auto iter : absIndexs) { in HandleTouchScreenEvent()
1460 for (size_t j = iter.first; j <= iter.second; j++) { in HandleTouchScreenEvent()
1473 for (size_t j = iter.first; j <= iter.second; j++) { in HandleTouchScreenEvent()
1479 for (size_t j = iter.first; j <= iter.second; j++) { in HandleTouchScreenEvent()
/third_party/icu/icu4c/source/i18n/
H A Dcollationbuilder.cpp1182 UnicodeSetIterator iter(composites); in addTailComposites()
1183 while(iter.next()) { in addTailComposites()
1184 U_ASSERT(!iter.isString()); in addTailComposites()
1185 UChar32 composite = iter.getCodepoint(); in addTailComposites()
1334 UnicodeSetIterator iter(composites); in closeOverComposites()
1335 while(iter.next()) { in closeOverComposites()
1336 U_ASSERT(!iter.isString()); in closeOverComposites()
1337 nfd.getDecomposition(iter.getCodepoint(), nfdString); in closeOverComposites()
1345 const UnicodeString &composite(iter.getString()); in closeOverComposites()
/third_party/node/deps/icu-small/source/i18n/
H A Dcollationbuilder.cpp1203 UnicodeSetIterator iter(composites); in addTailComposites()
1204 while(iter.next()) { in addTailComposites()
1205 U_ASSERT(!iter.isString()); in addTailComposites()
1206 UChar32 composite = iter.getCodepoint(); in addTailComposites()
1355 UnicodeSetIterator iter(composites); in closeOverComposites()
1356 while(iter.next()) { in closeOverComposites()
1357 U_ASSERT(!iter.isString()); in closeOverComposites()
1358 nfd.getDecomposition(iter.getCodepoint(), nfdString); in closeOverComposites()
1366 const UnicodeString &composite(iter.getString()); in closeOverComposites()
/third_party/rust/crates/bindgen/bindgen/ir/
H A Dcontext.rs33 use std::iter::IntoIterator;
560 let deps = options.input_headers.iter().cloned().collect();
876 self.items.iter().enumerate().filter_map(|(index, item)| { in items()
1548 .iter() in get_declaration_info_for_template_instantiation()
1622 if children.iter().all(|c| !c.has_children()) { in instantiate_template()
1634 .iter() in instantiate_template()
1638 .iter() in instantiate_template()
1647 for child in children.iter().rev() { in instantiate_template()
2120 for token in cursor.tokens().iter() { in tokenize_namespace()
2404 enum_.variants().iter() in compute_allowlisted_and_codegen_items()
[all...]
/third_party/skia/src/core/
H A DSkRuntimeEffect.cpp269 auto iter = std::find_if(mainParams.begin(), mainParams.end(), [](const SkSL::Variable* p) { in MakeInternal() local
273 iter != mainParams.end() ? program->usage()->get(**iter) in MakeInternal()
557 auto iter = std::find_if(fUniforms.begin(), fUniforms.end(), [name, len](const Uniform& u) { in findUniform() local
560 return iter == fUniforms.end() ? nullptr : &(*iter); in findUniform()
566 auto iter = std::find_if(fChildren.begin(), fChildren.end(), [name, len](const Child& c) { in findChild() local
569 return iter == fChildren.end() ? nullptr : &(*iter); in findChild()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dcollationbuilder.cpp1176 UnicodeSetIterator iter(composites); in addTailComposites()
1177 while(iter.next()) { in addTailComposites()
1178 U_ASSERT(!iter.isString()); in addTailComposites()
1179 UChar32 composite = iter.getCodepoint(); in addTailComposites()
1328 UnicodeSetIterator iter(composites); in closeOverComposites()
1329 while(iter.next()) { in closeOverComposites()
1330 U_ASSERT(!iter.isString()); in closeOverComposites()
1331 nfd.getDecomposition(iter.getCodepoint(), nfdString); in closeOverComposites()
1339 const UnicodeString &composite(iter.getString()); in closeOverComposites()
/third_party/python/Lib/test/
H A Dtest_deque.py54 it = iter(range(10))
75 it = iter(range(100))
79 it = iter(range(100))
84 it = iter(range(100))
635 itorg = iter(orig)
736 obj.x = iter(container)
771 it = iter(d)
777 it = iter(d)
871 return iter([])
988 ... pending = deque(iter(
[all...]
H A Dtest_sys.py1336 check(iter(bytearray()), size('nP'))
1390 check(iter({}), size('P2nPn'))
1392 check(iter({}.keys()), size('P2nPn'))
1394 check(iter({}.values()), size('P2nPn'))
1396 check(iter({}.items()), size('P2nPn'))
1445 check(iter('abc'), size('lP'))
1459 check(iter([]), size('lP'))
1488 check(iter(range(1)), size('4l'))
1515 check(iter(set()), size('P3n'))
H A Dtest_dict.py878 obj.x = iter(obj.v)
1100 it = iter(data)
1119 itorg = iter(data.items())
1141 it = iter(data.values())
1270 support.check_free_after_iterating(self, iter, dict)
1271 support.check_free_after_iterating(self, lambda d: iter(d.keys()), dict)
1272 support.check_free_after_iterating(self, lambda d: iter(d.values()), dict)
1273 support.check_free_after_iterating(self, lambda d: iter(d.items()), dict)
1450 it = iter({None: []}.items())
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fFboRenderTest.cpp212 for (std::vector<std::string>::const_iterator iter = requiredExts.begin(); iter != requiredExts.end(); iter++) in isAnyExtensionSupported()
214 const std::string& extension = *iter; in isAnyExtensionSupported()
228 for (typename std::vector<T>::const_iterator iter = list.begin(); iter != list.end(); iter++) in join()
230 if (iter != list.begin()) in join()
232 out << *iter; in join() local
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navigation/
H A Dnavigation_pattern.cpp1083 for (auto iter = children.rbegin(); iter != children.rend(); ++iter) { in FireNavigationChange()
1084 auto& child = *iter; in FireNavigationChange()
1093 for (auto iter = children.rbegin(); iter != children.rend(); ++iter) { in FireNavigationLifecycleChange()
1094 auto& child = *iter; in FireNavigationLifecycleChange()
2226 for (auto iter = hideNodes.begin(); iter ! in UpdatePreNavDesZIndex()
[all...]
/foundation/multimodalinput/input/frameworks/proxy/event_handler/src/
H A Dinput_manager_impl.cpp1726 for (auto iter = anrObservers_.begin(); iter != anrObservers_.end(); ++iter) { in SetAnrObserver()
1727 if (*iter == observer) { in SetAnrObserver()
2483 auto iter = ancoChannels_.find(consumer); in AncoRemoveChannel() local
2484 if (iter == ancoChannels_.end()) { in AncoRemoveChannel()
2488 int32_t ret = MULTIMODAL_INPUT_CONNECT_MGR->AncoRemoveChannel(iter->second); in AncoRemoveChannel()
2493 ancoChannels_.erase(iter); in AncoRemoveChannel()
2542 auto iter = g_keyActionMap.find(keyAction); in ConvertToCapiKeyAction() local
2543 if (iter in ConvertToCapiKeyAction()
[all...]
/third_party/libabigail/tools/
H A Dabipkgdiff.cc2751 map<string, elf_file_sptr>::iterator iter = in compare_prepared_userspace_packages() local
2754 if (iter != second_package.path_elf_file_sptr_map().end() in compare_prepared_userspace_packages()
2755 && (iter->second->type == abigail::elf::ELF_TYPE_DSO in compare_prepared_userspace_packages()
2756 || iter->second->type == abigail::elf::ELF_TYPE_EXEC in compare_prepared_userspace_packages()
2757 || iter->second->type == abigail::elf::ELF_TYPE_PI_EXEC in compare_prepared_userspace_packages()
2758 || iter->second->type == abigail::elf::ELF_TYPE_RELOCATABLE)) in compare_prepared_userspace_packages()
2760 if (iter->second->type != abigail::elf::ELF_TYPE_RELOCATABLE) in compare_prepared_userspace_packages()
2765 << it->first << "' and '" << iter->first << "'\n"; in compare_prepared_userspace_packages()
2771 *iter->second, in compare_prepared_userspace_packages()
2778 second_package.path_elf_file_sptr_map().erase(iter); in compare_prepared_userspace_packages()
[all...]
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/
H A Dx509.h447 ASN1_INTEGER *iter; member
460 ASN1_INTEGER *iter; member
1205 int PKCS5_pbe_set0_algor(X509_ALGOR *algor, int alg, int iter,
1207 int PKCS5_pbe_set0_algor_ex(X509_ALGOR *algor, int alg, int iter,
1211 X509_ALGOR *PKCS5_pbe_set(int alg, int iter,
1213 X509_ALGOR *PKCS5_pbe_set_ex(int alg, int iter,
1217 X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter,
1219 X509_ALGOR *PKCS5_pbe2_set_iv(const EVP_CIPHER *cipher, int iter,
1222 X509_ALGOR *PKCS5_pbe2_set_iv_ex(const EVP_CIPHER *cipher, int iter,
1234 X509_ALGOR *PKCS5_pbkdf2_set(int iter, unsigne
[all...]
/third_party/node/deps/openssl/config/archs/linux-elf/asm/include/openssl/
H A Dx509.h447 ASN1_INTEGER *iter; member
460 ASN1_INTEGER *iter; member
1205 int PKCS5_pbe_set0_algor(X509_ALGOR *algor, int alg, int iter,
1207 int PKCS5_pbe_set0_algor_ex(X509_ALGOR *algor, int alg, int iter,
1211 X509_ALGOR *PKCS5_pbe_set(int alg, int iter,
1213 X509_ALGOR *PKCS5_pbe_set_ex(int alg, int iter,
1217 X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter,
1219 X509_ALGOR *PKCS5_pbe2_set_iv(const EVP_CIPHER *cipher, int iter,
1222 X509_ALGOR *PKCS5_pbe2_set_iv_ex(const EVP_CIPHER *cipher, int iter,
1234 X509_ALGOR *PKCS5_pbkdf2_set(int iter, unsigne
[all...]
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/
H A Dx509.h447 ASN1_INTEGER *iter; member
460 ASN1_INTEGER *iter; member
1205 int PKCS5_pbe_set0_algor(X509_ALGOR *algor, int alg, int iter,
1207 int PKCS5_pbe_set0_algor_ex(X509_ALGOR *algor, int alg, int iter,
1211 X509_ALGOR *PKCS5_pbe_set(int alg, int iter,
1213 X509_ALGOR *PKCS5_pbe_set_ex(int alg, int iter,
1217 X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter,
1219 X509_ALGOR *PKCS5_pbe2_set_iv(const EVP_CIPHER *cipher, int iter,
1222 X509_ALGOR *PKCS5_pbe2_set_iv_ex(const EVP_CIPHER *cipher, int iter,
1234 X509_ALGOR *PKCS5_pbkdf2_set(int iter, unsigne
[all...]
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/
H A Dx509.h447 ASN1_INTEGER *iter; member
460 ASN1_INTEGER *iter; member
1205 int PKCS5_pbe_set0_algor(X509_ALGOR *algor, int alg, int iter,
1207 int PKCS5_pbe_set0_algor_ex(X509_ALGOR *algor, int alg, int iter,
1211 X509_ALGOR *PKCS5_pbe_set(int alg, int iter,
1213 X509_ALGOR *PKCS5_pbe_set_ex(int alg, int iter,
1217 X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter,
1219 X509_ALGOR *PKCS5_pbe2_set_iv(const EVP_CIPHER *cipher, int iter,
1222 X509_ALGOR *PKCS5_pbe2_set_iv_ex(const EVP_CIPHER *cipher, int iter,
1234 X509_ALGOR *PKCS5_pbkdf2_set(int iter, unsigne
[all...]
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/
H A Dx509.h447 ASN1_INTEGER *iter; member
460 ASN1_INTEGER *iter; member
1205 int PKCS5_pbe_set0_algor(X509_ALGOR *algor, int alg, int iter,
1207 int PKCS5_pbe_set0_algor_ex(X509_ALGOR *algor, int alg, int iter,
1211 X509_ALGOR *PKCS5_pbe_set(int alg, int iter,
1213 X509_ALGOR *PKCS5_pbe_set_ex(int alg, int iter,
1217 X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter,
1219 X509_ALGOR *PKCS5_pbe2_set_iv(const EVP_CIPHER *cipher, int iter,
1222 X509_ALGOR *PKCS5_pbe2_set_iv_ex(const EVP_CIPHER *cipher, int iter,
1234 X509_ALGOR *PKCS5_pbkdf2_set(int iter, unsigne
[all...]
/third_party/node/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/
H A Dx509.h447 ASN1_INTEGER *iter; member
460 ASN1_INTEGER *iter; member
1205 int PKCS5_pbe_set0_algor(X509_ALGOR *algor, int alg, int iter,
1207 int PKCS5_pbe_set0_algor_ex(X509_ALGOR *algor, int alg, int iter,
1211 X509_ALGOR *PKCS5_pbe_set(int alg, int iter,
1213 X509_ALGOR *PKCS5_pbe_set_ex(int alg, int iter,
1217 X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter,
1219 X509_ALGOR *PKCS5_pbe2_set_iv(const EVP_CIPHER *cipher, int iter,
1222 X509_ALGOR *PKCS5_pbe2_set_iv_ex(const EVP_CIPHER *cipher, int iter,
1234 X509_ALGOR *PKCS5_pbkdf2_set(int iter, unsigne
[all...]
/third_party/node/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/
H A Dx509.h447 ASN1_INTEGER *iter; member
460 ASN1_INTEGER *iter; member
1205 int PKCS5_pbe_set0_algor(X509_ALGOR *algor, int alg, int iter,
1207 int PKCS5_pbe_set0_algor_ex(X509_ALGOR *algor, int alg, int iter,
1211 X509_ALGOR *PKCS5_pbe_set(int alg, int iter,
1213 X509_ALGOR *PKCS5_pbe_set_ex(int alg, int iter,
1217 X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter,
1219 X509_ALGOR *PKCS5_pbe2_set_iv(const EVP_CIPHER *cipher, int iter,
1222 X509_ALGOR *PKCS5_pbe2_set_iv_ex(const EVP_CIPHER *cipher, int iter,
1234 X509_ALGOR *PKCS5_pbkdf2_set(int iter, unsigne
[all...]
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/include/openssl/
H A Dx509.h447 ASN1_INTEGER *iter; member
460 ASN1_INTEGER *iter; member
1205 int PKCS5_pbe_set0_algor(X509_ALGOR *algor, int alg, int iter,
1207 int PKCS5_pbe_set0_algor_ex(X509_ALGOR *algor, int alg, int iter,
1211 X509_ALGOR *PKCS5_pbe_set(int alg, int iter,
1213 X509_ALGOR *PKCS5_pbe_set_ex(int alg, int iter,
1217 X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter,
1219 X509_ALGOR *PKCS5_pbe2_set_iv(const EVP_CIPHER *cipher, int iter,
1222 X509_ALGOR *PKCS5_pbe2_set_iv_ex(const EVP_CIPHER *cipher, int iter,
1234 X509_ALGOR *PKCS5_pbkdf2_set(int iter, unsigne
[all...]
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/include/openssl/
H A Dx509.h447 ASN1_INTEGER *iter; member
460 ASN1_INTEGER *iter; member
1205 int PKCS5_pbe_set0_algor(X509_ALGOR *algor, int alg, int iter,
1207 int PKCS5_pbe_set0_algor_ex(X509_ALGOR *algor, int alg, int iter,
1211 X509_ALGOR *PKCS5_pbe_set(int alg, int iter,
1213 X509_ALGOR *PKCS5_pbe_set_ex(int alg, int iter,
1217 X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter,
1219 X509_ALGOR *PKCS5_pbe2_set_iv(const EVP_CIPHER *cipher, int iter,
1222 X509_ALGOR *PKCS5_pbe2_set_iv_ex(const EVP_CIPHER *cipher, int iter,
1234 X509_ALGOR *PKCS5_pbkdf2_set(int iter, unsigne
[all...]
/third_party/node/deps/openssl/config/archs/linux-elf/asm_avx2/include/openssl/
H A Dx509.h447 ASN1_INTEGER *iter; member
460 ASN1_INTEGER *iter; member
1205 int PKCS5_pbe_set0_algor(X509_ALGOR *algor, int alg, int iter,
1207 int PKCS5_pbe_set0_algor_ex(X509_ALGOR *algor, int alg, int iter,
1211 X509_ALGOR *PKCS5_pbe_set(int alg, int iter,
1213 X509_ALGOR *PKCS5_pbe_set_ex(int alg, int iter,
1217 X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter,
1219 X509_ALGOR *PKCS5_pbe2_set_iv(const EVP_CIPHER *cipher, int iter,
1222 X509_ALGOR *PKCS5_pbe2_set_iv_ex(const EVP_CIPHER *cipher, int iter,
1234 X509_ALGOR *PKCS5_pbkdf2_set(int iter, unsigne
[all...]
/third_party/node/deps/v8/src/wasm/
H A Dwasm-code-manager.cc1767 auto iter = owned_code_.upper_bound(pc); in Lookup() local
1768 if (iter == owned_code_.begin()) return nullptr; in Lookup()
1769 --iter; in Lookup()
1770 WasmCode* candidate = iter->second.get(); in Lookup()
1771 DCHECK_EQ(candidate->instruction_start(), iter->first); in Lookup()
2498 auto iter = lookup_map_.upper_bound(pc); in LookupNativeModule()
2499 if (iter == lookup_map_.begin()) return nullptr; in LookupNativeModule()
2500 --iter; in LookupNativeModule()
2501 Address region_start = iter->first; in LookupNativeModule()
2502 Address region_end = iter in LookupNativeModule()
[all...]
/third_party/node/deps/openssl/config/archs/BSD-x86/no-asm/include/openssl/
H A Dx509.h447 ASN1_INTEGER *iter; member
460 ASN1_INTEGER *iter; member
1205 int PKCS5_pbe_set0_algor(X509_ALGOR *algor, int alg, int iter,
1207 int PKCS5_pbe_set0_algor_ex(X509_ALGOR *algor, int alg, int iter,
1211 X509_ALGOR *PKCS5_pbe_set(int alg, int iter,
1213 X509_ALGOR *PKCS5_pbe_set_ex(int alg, int iter,
1217 X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter,
1219 X509_ALGOR *PKCS5_pbe2_set_iv(const EVP_CIPHER *cipher, int iter,
1222 X509_ALGOR *PKCS5_pbe2_set_iv_ex(const EVP_CIPHER *cipher, int iter,
1234 X509_ALGOR *PKCS5_pbkdf2_set(int iter, unsigne
[all...]

Completed in 79 milliseconds

1...<<111112113114115116117118119120>>...162