/third_party/skia/third_party/externals/tint/src/ |
H A D | program_builder.h | 1092 /// `list`. 1093 /// @param list the list to append too 1096 void Append(ast::ExpressionList& list, ARG&& arg) { in Append() argument 1097 list.emplace_back(Expr(std::forward<ARG>(arg))); in Append() 1101 /// then appends them to `list`. 1102 /// @param list the list to append too 1106 void Append(ast::ExpressionList& list, ARG0&& arg0, ARGS&&... args) { in Append() argument 1107 Append(list, st in Append() 1119 ast::ExpressionList list; ExprList() local 1127 ExprList(ast::ExpressionList list) ExprList() argument [all...] |
/third_party/typescript/tests/baselines/reference/tsbuild/outfile-concat/ |
H A D | explainFiles.js | 146 Part of 'files' list in tsconfig.json
148 Part of 'files' list in tsconfig.json
150 Part of 'files' list in tsconfig.json
172 Part of 'files' list in tsconfig.json
1981 Part of 'files' list in tsconfig.json
1983 Part of 'files' list in tsconfig.json
1985 Part of 'files' list in tsconfig.json
1999 Part of 'files' list in tsconfig.json
3333 Part of 'files' list in tsconfig.json
3335 Part of 'files' list i [all...] |
/base/powermgr/battery_statistics/test/unittest/src/clienttest/ |
H A D | stats_wifi_test.cpp | 169 auto list = statsClient.GetBatteryStats(); in HWTEST_F() local 170 for (auto it : list) { in HWTEST_F() 426 auto list = statsClient.GetBatteryStats(); in HWTEST_F() local 427 for (auto it : list) { in HWTEST_F()
|
/base/powermgr/battery_statistics/test/unittest/src/servicetest/ |
H A D | stats_service_wifi_test.cpp | 198 auto list = g_statsServiceProxy->GetBatteryStats(); in HWTEST_F() local 199 for (auto it : list) { in HWTEST_F() 471 auto list = g_statsServiceProxy->GetBatteryStats(); in HWTEST_F() local 472 for (auto it : list) { in HWTEST_F()
|
/base/startup/init/services/begetctl/shell/ |
H A D | shell_bas.c | 31 {BSH_SHOW_CMD_LIST, "Command list:\r\n"}, in BShellEnvErrString() 101 va_list list; in BShellEnvOutput() local 102 va_start(list, fmt); in BShellEnvOutput() 103 int len = vfprintf(stdout, fmt, list); in BShellEnvOutput() 104 va_end(list); in BShellEnvOutput()
|
/base/telephony/core_service/utils/vcard/src/ |
H A D | vcard_decoder_v21.cpp | 695 std::vector<std::string> list; in BuildListFromValue() local 712 list.push_back(temp); in BuildListFromValue() 718 list.push_back(temp); in BuildListFromValue() 719 return list; in BuildListFromValue()
|
/third_party/exfatprogs/exfat2img/ |
H A D | exfat2img.c | 465 list_add_tail(&node->list, in read_children() 519 list_add(&exfat->root->list, &exfat->dir_list); in dump_filesystem() 523 struct exfat_inode, list); in dump_filesystem() 546 list_del(&dir->list); in dump_filesystem()
|
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
H A D | Transliterator.java | 1597 List<SingleID> list = new ArrayList<>(); in getInstance() 1599 if (!TransliteratorIDParser.parseCompoundID(ID, dir, canonID, list, globalFilter)) { in getInstance() 1603 List<Transliterator> translits = TransliteratorIDParser.instantiateList(list); in getInstance() 1605 // assert(list.size() > 0); in getInstance() 1607 if (list.size() > 1 || canonID.indexOf(";") >= 0) { in getInstance()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | Transliterator.java | 1564 List<SingleID> list = new ArrayList<>(); in getInstance() 1566 if (!TransliteratorIDParser.parseCompoundID(ID, dir, canonID, list, globalFilter)) { in getInstance() 1570 List<Transliterator> translits = TransliteratorIDParser.instantiateList(list); in getInstance() 1572 // assert(list.size() > 0); in getInstance() 1574 if (list.size() > 1 || canonID.indexOf(";") >= 0) { in getInstance()
|
/third_party/libwebsockets/lib/cose/ |
H A D | cose_key.c | 337 lws_dll2_add_tail(&cps->ck->list, cps->pkey_set); in cb_cose_key() 742 lws_dll2_remove(&ck->list); in lws_cose_key_destroy() 753 lws_cose_key_t *ck = lws_container_of(d, lws_cose_key_t, list); in lws_cose_key_set_memb_remove() 771 lws_cose_key_t *ck = lws_container_of(p, lws_cose_key_t, list); in lws_cose_key_from_set()
|
/third_party/libphonenumber/tools/java/common/test/com/google/i18n/phonenumbers/ |
H A D | MetadataFilterTest.java | 994 private static void assertContentsEqual(List<Integer> list, int[] array) { in assertContentsEqual() argument 995 assertEquals(list.size(), array.length); in assertContentsEqual() 996 for (int i = 0; i < list.size(); i++) { in assertContentsEqual() 997 assertEquals((int) list.get(i), array[i]); in assertContentsEqual()
|
/third_party/littlefs/ |
H A D | Makefile | 385 .PHONY: test-list 386 test-list: test-runner 436 .PHONY: bench-list 437 bench-list: bench-runner
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_resource_buffer_upload.c | 243 /* Add the new surface to the buffer surface list */ in svga_buffer_create_host_surface() 329 * Returns a buffer surface from the surface list 339 LIST_FOR_EACH_ENTRY(bufsurf, &sbuf->surfaces, list) { in svga_buffer_get_host_surface() 348 * Adds the host surface to the buffer surface list. 366 /* add the surface to the surface list */ in svga_buffer_add_host_surface() 367 list_add(&bufsurf->list, &sbuf->surfaces); in svga_buffer_add_host_surface() 432 /* First check from the cached buffer surface list to see if there is in svga_buffer_validate_host_surface() 455 list_del(&bufsurf->list); in svga_buffer_validate_host_surface() 475 LIST_FOR_EACH_ENTRY_SAFE(bufsurf, next, &sbuf->surfaces, list) { in svga_buffer_destroy_host_surface() 738 list_del(&sbuf->head); /* remove from svga->dirty_buffers list */ in svga_buffer_upload_flush() [all...] |
/third_party/node/deps/cares/src/lib/ |
H A D | ares_update_servers.c | 165 /* A list of blacklisted IPv6 subnets. */ in ares_server_blacklisted() 432 * the servers list, updating servers and nservers as required. 453 ares__llist_t *list = NULL; in ares__sconfig_append_fromstr() local 457 * registry key, so we parse input as a space or comma separated list. in ares__sconfig_append_fromstr() 466 ARES_BUF_SPLIT_NONE, &list); in ares__sconfig_append_fromstr() 471 for (node = ares__llist_node_first(list); node != NULL; in ares__sconfig_append_fromstr() 495 ares__llist_destroy(list); in ares__sconfig_append_fromstr() 704 /* NOTE: a NULL or zero entry server list is considered valid due to in ares__servers_update() 929 /* Allocate storage for this server node appending it to the list */ in ares_get_servers() 984 /* Allocate storage for this server node appending it to the list */ in ares_get_servers_ports() [all...] |
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | flow.c | 70 static int remove_other_phisources(struct basic_block *bb, struct multijmp_list *list, struct basic_block *target) in remove_other_phisources() argument 75 FOR_EACH_PTR(list, jmp) { in remove_other_phisources() 397 * Go through the "insn->users" list and replace them all.. in convert_instruction_target() 710 * We can't do FOR_EACH_PTR() here, because the parent list in rewrite_branch_bb() 720 static void vrfy_bb_in_list(struct basic_block *bb, struct basic_block_list *list) in vrfy_bb_in_list() argument 726 FOR_EACH_PTR(list, tmp) { in vrfy_bb_in_list() 835 * We can't do FOR_EACH_PTR() here, because the parent list in retarget_parents()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-call-gen.cc | 264 // Ask the runtime to create the list (actually a FixedArray). in CallOrConstructWithArrayLike() 410 TNode<JSArray> list = in CallOrConstructWithSpread() local 414 var_js_array = list; in CallOrConstructWithSpread() 415 var_elements = LoadElements(list); in CallOrConstructWithSpread() 416 var_elements_kind = LoadElementsKind(list); in CallOrConstructWithSpread()
|
/third_party/node/deps/v8/src/heap/ |
H A D | sweeper.cc | 11 #include "src/heap/free-list-inl.h" 184 SweptList& list = swept_list_[GetSweepSpaceIndex(space->identity())]; in GetSweptPageSafe() local 185 if (!list.empty()) { in GetSweptPageSafe() 186 auto last_page = list.back(); in GetSweptPageSafe() 187 list.pop_back(); in GetSweptPageSafe() 497 // Free list of a never-allocate page will be dropped later on. in ParallelSweepSpace()
|
/third_party/node/deps/v8/src/objects/ |
H A D | shared-function-info.cc | 190 // Add shared function info to new script's list. If a collection occurs, in SetScript() 197 WeakFixedArray list = script.shared_function_infos(); in SetScript() local 199 DCHECK_LT(function_literal_id, list.length()); in SetScript() 200 MaybeObject maybe_object = list.Get(function_literal_id); in SetScript() 206 list.Set(function_literal_id, HeapObjectReference::Weak(*this)); in SetScript() 210 // Remove shared function info from old script's list. in SetScript()
|
/third_party/node/deps/v8/src/snapshot/ |
H A D | code-serializer.cc | 557 // Fix up the script list to include the newly deserialized script. in FinishOffThreadDeserialize() 558 Handle<WeakArrayList> list = isolate->factory()->script_list(); in FinishOffThreadDeserialize() local 561 list = in FinishOffThreadDeserialize() 562 WeakArrayList::AddToEnd(isolate, list, MaybeObjectHandle::Weak(script)); in FinishOffThreadDeserialize() 564 isolate->heap()->SetRootScriptList(*list); in FinishOffThreadDeserialize()
|
/third_party/libabigail/src/ |
H A D | abg-ini.cc | 1355 list_property_value_sptr list = read_list_property_value(); in read_property_value() local 1356 if (list->get_content().size() == 1) in read_property_value() 1357 result.reset(new string_property_value(list->get_content()[0])); in read_property_value() 1359 result = list; in read_property_value()
|
/third_party/qrcodegen/python/ |
H A D | qrcodegen.py | 42 - Mid level: Custom-make the list of segments and call QrCode.encode_segments(). 479 """Returns an ascending list of positions of alignment patterns for this version number. 490 return list(reversed(result)) 721 """Returns a new mutable list of zero or more segments to represent the given Unicode text string. 795 self._bitdata = list(bitdata) # Make defensive copy 810 return list(self._bitdata) # Make defensive copy 882 class _BitBuffer(list):
|
/third_party/python/Lib/ |
H A D | nntplib.py | 43 # - NNTP.newgroups() and NNTP.list() return a list of GroupInfo named tuples 45 # - NNTP.xover() returns a list of dicts mapping field names (header or metadata) 182 """Parse a list of string representing the response to LIST OVERVIEW.FMT 183 and return a list of header/metadata names. 498 string and `lines` is a list of bytes objects. 557 resp, list = self._getlongresp(file) 559 for line in list] 601 - list: list o 628 def list(self, group_pattern=None, *, file=None): global() member in NNTP [all...] |
H A D | functools.py | 432 class _HashedSeq(list): 537 root = [] # root of the circular doubly linked list 693 If given, *abcs* is a list of abstract base classes that should be inserted 710 abcs = list(abcs) if abcs else [] 711 explicit_bases = list(cls.__bases__[:boundary]) 713 other_bases = list(cls.__bases__[boundary:])
|
H A D | os.py | 31 GenericAlias = type(list[int]) 46 return list(module.__all__) 290 dirpath is a string, the path to the directory. dirnames is a list of 293 filenames is a list of the names of the non-directory files in dirpath. 304 When topdown is true, the caller can modify the dirnames list in-place 310 itself is generated. No matter the value of topdown, the list of 351 # get a list of the files the directory contains. os.walk 540 Execute the executable file with argument list args, replacing the 547 Execute the executable file with argument list args and 556 with argument list arg [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
H A D | vktSpvAsmImageSamplerTests.cpp | 714 std::string list = " %InputData %OutputData"; in getInterfaceList() local 719 list += " %SamplerData"; in getInterfaceList() 723 list += " %SamplerData %InputData2 %SamplerData2"; in getInterfaceList() 730 return list; in getInterfaceList()
|