/third_party/rust/crates/clap/examples/tutorial_derive/ |
H A D | 01_quick.rs | 29 list: bool, 57 Some(Commands::Test { list }) => { in main() 58 if *list { in main()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/VE/ |
H A D | VETargetMachine.h | 27 std::list<std::string> StrList; 40 std::list<std::string> *getStrList() const { in getStrList() 41 return const_cast<std::list<std::string> *>(&StrList); in getStrList()
|
/third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/ |
H A D | mutator_cache.h | 19 #include <list> 86 using Map = std::unordered_map<Key, std::list<Entry>::iterator, KeyHash>; 91 std::list<Entry> entries_;
|
/third_party/gn/src/gn/ |
H A D | parser.cc | 164 list of length one. 167 remove all occurrences of every item in the right-hand list from the 168 left-hand list. It is an error to remove an item not in the list. This is to 172 It is an error to use '=' to replace a nonempty list with another nonempty 173 list. This is to prevent accidentally overwriting data when in most cases 174 '+=' was intended. To overwrite a list on purpose, first assign it to the 175 empty list: 225 // Currently all operators are left-associative so this list is sequential. To 507 std::unique_ptr<ParseNode> list(ParseLis in List() 535 std::unique_ptr<ListNode> list = std::make_unique<ListNode>(); IdentifierOrCall() local 644 std::unique_ptr<ListNode> list = std::make_unique<ListNode>(); ParseList() local [all...] |
/third_party/libabigail/tools/ |
H A D | fedabipkgdiff | 460 # Mapping from arch to a list of rpm_infos. 579 """Return a list of descriptors of all the debuginfo RPMs associated 584 :return: a list of dicts containing RPM descriptors (dicts) 665 """Get list of RPMs of a build from Koji 667 Call kojihub.listRPMs to get list of RPMs. Return selected RPMs without 689 :param int buildID: id of a build from which to list RPMs. 690 :param arches: to restrict to list RPMs with specified arches. 691 :type arches: list or tuple 696 :return: a list of RPMs, each of them is a dict object 697 :rtype: list [all...] |
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | input.py | 23 # A list of types that are treated as linkable. 32 # A list of sections that contain links to other targets. 35 # base_path_sections is a list of sections defined by GYP that contain 38 # list directly. 58 # without the trailing characters. '/' is notably absent from this list, 81 # base_non_configuration_keys is a list of key names that belong in the target 83 # with a list that can come from the generator to 140 """Return a list of all build files included into build_file_path. 142 The returned list will contain build_file_path as well as all other files 143 that it included, either directly or indirectly. Note that the list ma [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | input.py | 23 # A list of types that are treated as linkable. 32 # A list of sections that contain links to other targets. 35 # base_path_sections is a list of sections defined by GYP that contain 38 # list directly. 58 # without the trailing characters. '/' is notably absent from this list, 81 # base_non_configuration_keys is a list of key names that belong in the target 83 # with a list that can come from the generator to 140 """Return a list of all build files included into build_file_path. 142 The returned list will contain build_file_path as well as all other files 143 that it included, either directly or indirectly. Note that the list ma [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/algorithm/ |
H A D | container_test.cc | 20 #include <list> 54 std::list<int> sequence_ = {1, 2, 3}; 107 absl::c_find(absl::implicit_cast<const std::list<int>&>(sequence_), 3); in TEST_F() 192 std::list<NoNotEquals> second; in TEST_F() 309 std::list<int>::iterator i = absl::c_lower_bound(sequence_, 3); in TEST_F() 324 std::list<int>::iterator i = absl::c_upper_bound(sequence_, 1); in TEST_F() 339 std::pair<std::list<int>::iterator, std::list<int>::iterator> p = in TEST_F() 374 std::list<int>::iterator i = absl::c_min_element(sequence_); in TEST_F() 380 std::list<in in TEST_F() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | vaapi_h264.c | 153 * picture list. 155 * @param[out] RefPicList VA API internal reference picture list 156 * @param[in] ref_list A pointer to the FFmpeg reference list 180 * @param[in] list The reference frame list index to use 189 int list, in fill_vaapi_plain_pred_weight_table() 200 *luma_weight_flag = sl->pwt.luma_weight_flag[list]; in fill_vaapi_plain_pred_weight_table() 201 *chroma_weight_flag = sl->pwt.chroma_weight_flag[list]; in fill_vaapi_plain_pred_weight_table() 203 for (i = 0; i < sl->ref_count[list]; i++) { in fill_vaapi_plain_pred_weight_table() 206 if (sl->pwt.luma_weight_flag[list]) { in fill_vaapi_plain_pred_weight_table() 188 fill_vaapi_plain_pred_weight_table(const H264Context *h, int list, unsigned char *luma_weight_flag, short luma_weight[32], short luma_offset[32], unsigned char *chroma_weight_flag, short chroma_weight[32][2], short chroma_offset[32][2]) fill_vaapi_plain_pred_weight_table() argument [all...] |
H A D | mpegutils.h | 89 #define IS_DIR(a, part, list) ((a) & (MB_TYPE_P0L0 << ((part) + 2 * (list)))) 92 #define USES_LIST(a, list) ((a) & ((MB_TYPE_P0L0 | MB_TYPE_P1L0) << (2 * (list))))
|
/third_party/curl/lib/ |
H A D | hsts.c | 82 Curl_llist_init(&h->list, NULL); in Curl_hsts_init() 99 for(e = h->list.head; e; e = n) { in Curl_hsts_cleanup() 143 Curl_llist_insert_next(&h->list, h->list.tail, sts, &sts->node); in hsts_create() 223 Curl_llist_remove(&h->list, &sts->node, NULL); in Curl_hsts_parse() 273 for(e = h->list.head; e; e = n) { in Curl_hsts() 278 Curl_llist_remove(&h->list, &sts->node, NULL); in Curl_hsts() 384 for(e = h->list.head; e; e = n) { in Curl_hsts_save() 403 i.total = h->list.size; in Curl_hsts_save() 405 for(e = h->list in Curl_hsts_save() [all...] |
/third_party/pcre2/pcre2/maint/ |
H A D | GenerateUcd.py | 13 # the data tables (e.g. list of script names) are now listed in or generated by 76 # 01-March-2010: Updated list of scripts for Unicode 5.2.0 77 # 30-April-2011: Updated list of scripts for Unicode 6.0.0 78 # July-2012: Updated list of scripts for Unicode 6.1.0 133 # lists of characters that all match each other caselessly. Each list is 135 # any valid character. The first list is empty; this is used for characters 136 # that are not part of any list. 144 # character's script extension list come first, followed by "Unknown" and then 146 # script. A script's number is its index in the script_names list. 151 # used in any character's extension list, tha [all...] |
/third_party/backends/sanei/ |
H A D | usb_manager.cpp | 92 void MemoryFreeDeviceList(usb_manager_device **list) in MemoryFreeDeviceList() argument 94 if (list == nullptr) { in MemoryFreeDeviceList() 98 if (list[i] != nullptr) { in MemoryFreeDeviceList() 99 delete list[i]; in MemoryFreeDeviceList() 102 delete[] list; in MemoryFreeDeviceList() 103 list = nullptr; in MemoryFreeDeviceList() 255 ssize_t usb_manager_get_device_list(usb_manager_context *ctx, usb_manager_device ***list) in usb_manager_get_device_list() argument 258 if (ctx == nullptr || list == nullptr) { in usb_manager_get_device_list() 259 SANE_HILOG_ERROR("%s: ctx or list is a nullptr.", __func__); in usb_manager_get_device_list() 289 *list in usb_manager_get_device_list() 463 usb_manager_free_device_list(usb_manager_device **list, int unref_devices) usb_manager_free_device_list() argument [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | Currency.java | 217 List<String> list = getTenderCurrencies(filter); in getAvailableCurrencyCodes() 220 if (list.isEmpty()) { in getAvailableCurrencyCodes() 223 return list.toArray(new String[list.size()]); in getAvailableCurrencyCodes() 252 List<String> list = info.currencies(CurrencyFilter.all()); in getAvailableCurrencies() 253 HashSet<Currency> resultSet = new HashSet<>(list.size()); in getAvailableCurrencies() 254 for (String code : list) { in getAvailableCurrencies() 283 List<String> list = info.currencies(CurrencyFilter.onRegion(region).withTender()); in loadCurrency() 284 if (list.isEmpty()) { in loadCurrency() 285 list in loadCurrency() [all...] |
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/ |
H A D | nir.c | 37 list_addtail(®->list, &comp->reg_list); in gpir_create_reg() 83 list_addtail(&store->node.list, &block->node_list); in register_node_ssa() 99 list_addtail(&store->node.list, &block->node_list); in register_node_reg() 144 list_addtail(&pred->list, &block->node_list); in gpir_node_find() 211 list_addtail(&node->node.list, &block->node_list); in gpir_emit_alu() 226 list_addtail(&load->node.list, &block->node_list); in gpir_create_load() 285 list_addtail(&store->node.list, &block->node_list); in gpir_emit_intrinsic() 308 list_addtail(&node->node.list, &block->node_list); in gpir_emit_load_const() 353 list_addtail(&block->list, &comp->block_list); in gpir_emit_function() 378 list_addtail(&cond->node.list, in gpir_emit_function() [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/container/ |
H A D | inlined_vector.h | 132 // Creates an inlined vector with copies of the elements of `list`. 133 InlinedVector(std::initializer_list<value_type> list, in InlinedVector() argument 135 : InlinedVector(list.begin(), list.end(), alloc) {} in InlinedVector() 454 // `list`. 455 InlinedVector& operator=(std::initializer_list<value_type> list) { in operator =() argument 456 assign(list.begin(), list.end()); in operator =() 504 // inlined vector with copies of the elements of `list`. 505 void assign(std::initializer_list<value_type> list) { in assign() argument 589 insert(const_iterator pos, std::initializer_list<value_type> list) insert() argument [all...] |
/third_party/mbedtls/library/ |
H A D | asn1parse.c | 453 const mbedtls_asn1_named_data *mbedtls_asn1_find_named_data(const mbedtls_asn1_named_data *list, in mbedtls_asn1_find_named_data() argument 456 while (list != NULL) { in mbedtls_asn1_find_named_data() 457 if (list->oid.len == len && in mbedtls_asn1_find_named_data() 458 memcmp(list->oid.p, oid, len) == 0) { in mbedtls_asn1_find_named_data() 462 list = list->next; in mbedtls_asn1_find_named_data() 465 return list; in mbedtls_asn1_find_named_data()
|
/third_party/node/deps/v8/tools/testrunner/local/ |
H A D | statusfile.py | 7 # notice, this list of conditions and the following disclaimer. 9 # copyright notice, this list of conditions and the following 104 tests: list of pairs (testname, variant) 109 variants = list(ALL_VARIANTS) 130 list(self._rules.get(variant, {}).items()) + 131 list(self._prefix_rules.get(variant, {}).items())): 183 """Outcome list format: [condition, outcome, outcome, ...]""" 191 elif type(item) == list: 247 assert type(conditional_section) == list 282 for rule, outcome_list in list(sectio [all...] |
/third_party/node/deps/npm/lib/commands/ |
H A D | token.js | 13 static usage = ['list', 'revoke <id|token>', 'create [--read-only] [--cidr=list]'] 18 const subcommands = ['list', 'revoke', 'create'] 33 return this.list() 36 case 'list': 38 return this.list() 51 async list () { 53 log.info('token', 'getting list') 99 progress.info('token', 'getting existing list') 108 `Token ID "${id}" was ambiguous, a new token may have been created since you last ran \`npm token list\` [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | js-list-format.cc | 9 #include "src/objects/js-list-format.h" 20 #include "src/objects/js-list-format-inl.h" 217 Isolate* isolate, Handle<JSListFormat> format, Handle<FixedArray> list, in FormatListCommon() 220 DCHECK(!list->IsUndefined()); in FormatListCommon() 222 ToUnicodeStringArray(isolate, list); in FormatListCommon() 280 Handle<FixedArray> list) { in FormatList() 281 return FormatListCommon<String>(isolate, format, list, in FormatList() 287 Isolate* isolate, Handle<JSListFormat> format, Handle<FixedArray> list) { in FormatListToParts() 288 return FormatListCommon<JSArray>(isolate, format, list, in FormatListToParts() 216 FormatListCommon( Isolate* isolate, Handle<JSListFormat> format, Handle<FixedArray> list, const std::function<MaybeHandle<T>(Isolate*, const icu::FormattedValue&)>& formatToResult) FormatListCommon() argument 278 FormatList(Isolate* isolate, Handle<JSListFormat> format, Handle<FixedArray> list) FormatList() argument 286 FormatListToParts( Isolate* isolate, Handle<JSListFormat> format, Handle<FixedArray> list) FormatListToParts() argument
|
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/ |
H A D | instr.c | 41 list_addtail(&instr->list, &block->instr_list); in ppir_instr_create() 277 printf("======ppir instr list======\n"); in ppir_instr_print_list() 283 list_for_each_entry(ppir_block, block, &comp->block_list, list) { in ppir_instr_print_list() 285 list_for_each_entry(ppir_instr, instr, &block->instr_list, list) { in ppir_instr_print_list() 329 list_for_each_entry(ppir_block, block, &comp->block_list, list) { in ppir_instr_print_dep() 330 list_for_each_entry(ppir_instr, instr, &block->instr_list, list) { in ppir_instr_print_dep() 336 list_for_each_entry(ppir_block, block, &comp->block_list, list) { in ppir_instr_print_dep() 338 list_for_each_entry(ppir_instr, instr, &block->instr_list, list) { in ppir_instr_print_dep()
|
/third_party/skia/src/pathops/ |
H A D | SkPathOpsCommon.cpp | 155 SkTDArray<SkOpContour* > list; in SortContourList() local 160 *list.append() = contour; in SortContourList() 163 int count = list.count(); in SortContourList() 168 SkTQSort<SkOpContour>(list.begin(), list.end()); in SortContourList() 170 contour = list[0]; in SortContourList() 175 SkOpContour* next = list[index]; in SortContourList()
|
/third_party/python/Python/ |
H A D | hashtable.c | 21 notice, this list of conditions and the following disclaimer. 24 copyright notice, this list of conditions and the following 66 _Py_slist_init(_Py_slist_t *list) in _Py_slist_init() argument 68 list->head = NULL; in _Py_slist_init() 73 _Py_slist_prepend(_Py_slist_t *list, _Py_slist_item_t *item) in _Py_slist_prepend() argument 75 item->next = list->head; in _Py_slist_prepend() 76 list->head = item; in _Py_slist_prepend() 81 _Py_slist_remove(_Py_slist_t *list, _Py_slist_item_t *previous, in _Py_slist_remove() argument 87 list->head = item->next; in _Py_slist_remove()
|
/third_party/python/Lib/json/ |
H A D | encoder.py | 84 | list, tuple | array | 175 return list(iterable) 198 # exceptions aren't as detailed. The list call should be roughly 201 if not isinstance(chunks, (list, tuple)): 202 chunks = list(chunks) 269 list=list, 320 if isinstance(value, (list, tuple)): 400 if isinstance(value, (list, tuple)): 429 elif isinstance(o, (list, tupl [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | ctrl_iface_unix.c | 25 #include "utils/list.h" 54 struct dl_list list; member 320 list); in wpas_ctrl_msg_send_pending_global() 323 dl_list_del(&msg->list); in wpas_ctrl_msg_send_pending_global() 344 list); in wpas_ctrl_msg_send_pending_iface() 347 dl_list_del(&msg->list); in wpas_ctrl_msg_send_pending_iface() 402 dl_list_add_tail(queue, &msg->list); in wpas_ctrl_msg_queue() 416 msg = dl_list_first(queue, struct ctrl_iface_msg, list); in wpas_ctrl_msg_queue_limit() 419 dl_list_del(&msg->list); in wpas_ctrl_msg_queue_limit() 820 struct ctrl_iface_msg, list) { in wpas_global_ctrl_iface_flush_queued_msg() [all...] |