/third_party/eudev/test/ |
H A D | udev-test.pl | 1069 desc => "reset list to current value", 1483 my @list; 1490 push(@list, $arg); 1494 if ($list[0]) { 1495 foreach my $arg (@list) {
|
/third_party/gn/src/gn/ |
H A D | functions.cc | 309 2. The configs specified in the target's "configs" list, in order. 810 // Extract the exclusion list if defined. 819 *err = Err(exclusion_value, "Not a valid list of variables to exclude.", 820 "Expecting a list of strings."); 839 *err = Err(exclusion_value, "Not supported with a variable list.", 840 "Exclusion list can only be used with the string \"*\"."); 855 *err = Err(*value, "Not a valid list of variables.", 856 "Expecting either the string \"*\" or a list of strings."); 1087 "split_list: Splits a list into N different sub-lists."; 1089 R"(split_list: Splits a list int [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | ICUResourceBundle.java | 504 * @return the list of available locales 513 * @return the list of available locales 521 * @return the list of available locales for the specified type 529 * @return the list of available locales 537 * @return the list of available locales 546 * @return the list of available locales 554 * @return the list of available locales 562 * @return the list of available locales 569 * Convert a list of ULocales to a list o [all...] |
/third_party/node/deps/v8/src/heap/ |
H A D | object-stats.cc | 689 // Manually insert the feedback vector into the virtual object list, since in RecordVirtualFeedbackVectorDetails() 800 Object list = heap_->allocation_sites_list(); in CollectGlobalStatistics() local 801 while (list.IsAllocationSite(cage_base())) { in CollectGlobalStatistics() 802 AllocationSite site = AllocationSite::cast(list); in CollectGlobalStatistics() 804 list = site.weak_next(); in CollectGlobalStatistics()
|
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir.h | 30 #include <list> 755 std::list<ValueDef *> defs; 758 typedef std::list<ValueDef *>::iterator DefIterator; 759 typedef std::list<ValueDef *>::const_iterator DefCIterator;
|
/third_party/mesa3d/src/gallium/auxiliary/vl/ |
H A D | vl_mpeg12_decoder.c | 87 struct list_head list; member 105 list_del(&priv->list); in destroy_video_buffer_private() 134 list_add(&priv->list, &dec->buffer_privates); in get_video_buffer_private() 157 LIST_FOR_EACH_ENTRY_SAFE(priv, next, &dec->buffer_privates, list) { in free_video_buffer_privates()
|
/third_party/python/Tools/stringbench/ |
H A D | stringbench.py | 52 _RANGE_1000 = list(range(1000)) 53 _RANGE_100 = list(range(100)) 54 _RANGE_10 = list(range(10)) 715 @bench('"A".join(list("ABC..Z"))', 716 "join list of 26 characters, with 1 character sep", 1000) 724 @bench('"ABCDE".join(list("ABC..Z"))', 725 "join list of 26 characters, with 5 character sep", 1000) 734 "join list of 100 words, with 1 character sep", 1000) 743 "join list of 100 words, with 5 character sep", 1000) 872 chars = list(ma [all...] |
/third_party/python/Lib/tkinter/ |
H A D | ttk.py | 38 elif isinstance(value, (list, tuple)): 134 """Formats a layout list so we can pass the result to ttk::style 136 be a list necessarily. 225 """Construct a list from the given statespec tuple according to the 236 elif not isinstance(state, (tuple, list)): 245 """Construct a list from the tuple returned by ttk::layout, this is 312 val = list(map(_convert_stringval, val)) 367 Each key in kw is an option and each value should be a list or a 368 tuple (usually) containing statespecs grouped in tuples, or list, 396 layoutspec is expected to be a list o [all...] |
/third_party/python/Modules/ |
H A D | _functoolsmodule.c | 1098 The linked list only has borrowed references. */ in bounded_lru_cache_wrapper() 1135 link to the linked list. Otherwise, the potentially reentrant in bounded_lru_cache_wrapper() 1260 lru_list_elem *list = lru_cache_unlink_list(self); in lru_cache_tp_clear() local 1267 lru_cache_clear_list(list); in lru_cache_tp_clear() 1318 lru_list_elem *list = lru_cache_unlink_list(self); in lru_cache_cache_clear() local 1321 lru_cache_clear_list(list); in lru_cache_cache_clear()
|
/third_party/python/Lib/ |
H A D | configparser.py | 12 ConfigParser -- responsible for parsing a list of 28 objects for the list of sections, for the options within a section, and 81 Return list of configuration options for the named section. 86 are ignored. Return list of successfully read files. 123 If section is given, return a list of tuples with (name, value) for 124 each option in the section. Otherwise, return a list of tuples with 660 """Return a list of section names, excluding [DEFAULT]""" 662 return list(self._sections.keys()) 686 """Return a list of option names for the given section name.""" 692 return list(opt [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | parserRealSource8.js | 243 // In the case of function-nested statics, no member list will have bee initialized for the function, so we need 244 // to copy it over. We don't set this by default because having a non-null member list will throw off assignment 302 // the "type" member. We need the original "Scope type" for completion list, etc. 396 var list = <ASTList>ast; 397 list.enclosingScope = context.scopeChain.scope; 678 // In the case of function-nested statics, no member list will have bee initialized for the function, so we need
679 // to copy it over. We don't set this by default because having a non-null member list will throw off assignment
728 // the "type" member. We need the original "Scope type" for completion list, etc.
805 var list = ast;
806 list [all...] |
/third_party/rust/crates/nom/src/character/ |
H A D | streaming.rs | 90 pub fn one_of<I, T, Error: ParseError<I>>(list: T) -> impl Fn(I) -> IResult<I, char, Error> in one_of() 96 move |i: I| match (i).iter_elements().next().map(|c| (c, list.find_token(c))) { in one_of() 115 pub fn none_of<I, T, Error: ParseError<I>>(list: T) -> impl Fn(I) -> IResult<I, char, Error> in none_of() 121 move |i: I| match (i).iter_elements().next().map(|c| (c, !list.find_token(c))) { in none_of()
|
H A D | complete.rs | 89 pub fn one_of<I, T, Error: ParseError<I>>(list: T) -> impl Fn(I) -> IResult<I, char, Error> in one_of() 95 move |i: I| match (i).iter_elements().next().map(|c| (c, list.find_token(c))) { in one_of() 113 pub fn none_of<I, T, Error: ParseError<I>>(list: T) -> impl Fn(I) -> IResult<I, char, Error> in none_of() 119 move |i: I| match (i).iter_elements().next().map(|c| (c, !list.find_token(c))) { in none_of()
|
/third_party/spirv-tools/source/opt/ |
H A D | instruction.cpp | 597 std::vector<std::unique_ptr<Instruction>>&& list) { in InsertBefore() 598 Instruction* first_node = list.front().get(); in InsertBefore() 599 for (auto& inst : list) { in InsertBefore() 602 list.clear(); in InsertBefore() 596 InsertBefore( std::vector<std::unique_ptr<Instruction>>&& list) InsertBefore() argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/ |
H A D | dpp-nfc.py | 238 summary("Use current AP operating channel (%d MHz) as the URI channel list (%s)" % (freq, chan)) 291 records = list(ndef.message_decoder(msg, 'relax')) 294 return list(ndef.message_decoder(msg, 'relax')) 318 list(ndef.message_decoder(msg, 'strict', {})) 550 list(ndef.message_decoder(req, 'strict', {})) 641 summary("Use alternative channel list while processing alternative proposal from peer") 662 summary("Own URI (try another channel list): %s" % data) 1028 parser.add_argument('--chan', default=None, help='channel list') 1029 parser.add_argument('--altchan', default=None, help='alternative channel list')
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/ |
H A D | dpp.c | 77 struct dl_list list; member 99 struct dl_list list; member 136 * be the first entry on this list. */ 853 "DPP: URI channel-list: opclass=%d channel=%d ==> freq=%d", in dpp_parse_uri_chan_list() 857 "DPP: Ignore unknown URI channel-list channel (opclass=%d channel=%d)", in dpp_parse_uri_chan_list() 861 "DPP: Too many channels in URI channel-list - ignore list"); in dpp_parse_uri_chan_list() 877 wpa_printf(MSG_DEBUG, "DPP: Invalid URI channel-list"); in dpp_parse_uri_chan_list() 4419 struct dpp_configurator, list) { in dpp_configurator_get_id() 8352 dl_list_for_each(bi, &dpp->bootstrap, struct dpp_bootstrap_info, list) { in dpp_next_id() [all...] |
/base/time/time_service/services/timer/src/ |
H A D | timer_manager.cpp | 91 extern bool AddBatchLocked(std::vector<std::shared_ptr<Batch>> &list, const std::shared_ptr<Batch> &batch); 429 TIME_HILOGI(TIME_MODULE_SERVICE, "Set timer from delay list, id=%{public}" PRId64 "", pendingTimer->id); in RemoveLocked() 618 TIME_HILOGI(TIME_MODULE_SERVICE, "Set timer from delay list, id=%{public}" PRId64 "", pendingTimer->id); in TriggerIdleTimer() 1120 bool AddBatchLocked(std::vector<std::shared_ptr<Batch>> &list, const std::shared_ptr<Batch> &newBatch) 1122 auto it = std::upper_bound(list.begin(), 1123 list.end(), 1128 list.insert(it, newBatch); 1129 return it == list.begin();
|
/foundation/ability/ability_runtime/frameworks/js/napi/app/js_app_manager/ |
H A D | js_app_manager.cpp | 642 std::vector<AppExecFwk::AppStateData> list; in OnGetForegroundApplications() 643 int32_t ret = appManager->GetForegroundApplications(list); in OnGetForegroundApplications() 646 task->ResolveWithNoError(env, CreateJsAppStateDataArray(env, list)); in OnGetForegroundApplications() 1440 std::vector<int32_t> list; in OnGetSupportedProcessCachePids() 1441 int32_t ret = appManager->GetSupportedProcessCachePids(bundleName, list); in OnGetSupportedProcessCachePids() 1444 task->ResolveWithNoError(env, CreateNativeArray(env, list)); in OnGetSupportedProcessCachePids()
|
/foundation/ability/ability_runtime/services/appmgr/src/ |
H A D | app_running_record.cpp | 387 const std::list<std::shared_ptr<ApplicationInfo>> AppRunningRecord::GetAppInfoList() in GetAppInfoList() 389 std::list<std::shared_ptr<ApplicationInfo>> appInfoList; in GetAppInfoList() 1239 std::list<std::shared_ptr<ModuleRunningRecord>> AppRunningRecord::GetAllModuleRecord() const in GetAllModuleRecord() 1241 std::list<std::shared_ptr<ModuleRunningRecord>> moduleRecordList; in GetAllModuleRecord() 1244 for (const auto &list : item.second) { in GetAllModuleRecord() 1245 moduleRecordList.push_back(list); in GetAllModuleRecord()
|
H A D | app_running_manager.cpp | 279 const std::string &bundleName, std::list<pid_t> &pids, const bool clearPageStack) in ProcessExitByBundleName() 308 bool AppRunningManager::GetPidsByUserId(int32_t userId, std::list<pid_t> &pids) in GetPidsByUserId() 350 const std::string &bundleName, const int uid, std::list<pid_t> &pids, const bool clearPageStack) in ProcessExitByBundleNameAndUid() 379 const int userId, const int appIndex, std::list<pid_t> &pids) in GetPidsByBundleNameUserIdAndAppIndex() 789 void AppRunningManager::GetForegroundApplications(std::vector<AppStateData> &list) in GetForegroundApplications() argument 810 list.push_back(appData); in GetForegroundApplications()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/list/ |
H A D | list_common_test_ng.cpp | 51 AssertionResult VerifyForEachItemsOrder(std::list<std::string> expectKeys); 52 AssertionResult VerifyLazyForEachItemsOrder(std::list<std::string> expectKeys); 160 std::list<std::string> newIds; in CreateForEachList() 164 std::list<int32_t> removedElmtId; in CreateForEachList() 201 AssertionResult ListCommonTestNg::VerifyForEachItemsOrder(std::list<std::string> expectKeys) in VerifyForEachItemsOrder() 218 AssertionResult ListCommonTestNg::VerifyLazyForEachItemsOrder(std::list<std::string> expectKeys) in VerifyLazyForEachItemsOrder() 980 * @tc.steps: step1. When list is not Scrollable in HWTEST_F() 992 * @tc.steps: step2. When list is Scrollable in HWTEST_F() 1467 * @tc.desc: Drag with 2 lanes list 1533 * @tc.desc: Drag with 2 lanes list, bu [all...] |
/foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/systems/ |
H A D | node_system.cpp | 136 inline auto Find(ListType&& list, ValueType&& value) in Find() argument 138 return std::find(list.begin(), list.end(), BASE_NS::forward<ValueType>(value)); in Find() 142 inline auto FindIf(ListType&& list, Predicate&& pred) in FindIf() argument 144 return std::find_if(list.begin(), list.end(), BASE_NS::forward<Predicate>(pred)); in FindIf()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_profiler/ |
H A D | rs_profiler.cpp | 1115 std::map<std::string, std::tuple<NodeId, std::string>> list; in OnParallelRenderBegin() local 1116 GetSurfacesTrees(*g_context, list); in OnParallelRenderBegin() 1122 for (const auto& item : list) { in OnParallelRenderBegin() 1742 std::vector<int64_t> list; in OnParallelRenderBegin() local 1743 list.push_back(item.second); in OnParallelRenderBegin() 1744 animeMap.insert({ Utils::PatchNodeId(item.first), list }); in OnParallelRenderBegin()
|
/foundation/multimedia/av_session/services/session/server/ |
H A D | avsession_item.cpp | 513 AAFwk::IArray* list = AAFwk::IArray::Query(value); in SetExtras() local 514 if (list != nullptr && AAFwk::Array::IsStringArray(list)) { in SetExtras() 515 SetExtrasInner(list); in SetExtras() 1468 void AVSessionItem::SetExtrasInner(AAFwk::IArray* list) 1480 AAFwk::Array::ForEach(list, func);
|
/foundation/communication/dsoftbus/core/transmission/trans_channel/tcp_direct/src/ |
H A D | trans_tcp_direct_message.c | 102 TRANS_LOGE(TRANS_CTRL, "creat list failed"); in TransSrvDataListInit() 121 LIST_FOR_EACH_ENTRY_SAFE(item, next, &g_tcpSrvDataList->list, ServerDataBuf, node) { in TransSrvDestroyDataBuf() 165 ListTailInsert(&g_tcpSrvDataList->list, &node->node); in TransSrvAddDataBufNode() 184 LIST_FOR_EACH_ENTRY_SAFE(item, next, &g_tcpSrvDataList->list, ServerDataBuf, node) { in TransSrvDelDataBufNode() 1020 LIST_FOR_EACH_ENTRY(item, &(g_tcpSrvDataList->list), ServerDataBuf, node) { in TransSrvGetDataBufNodeById() 1223 TRANS_LOGE(TRANS_CTRL, "tcp srv data list empty."); in TransTdcGetDataBufInfoByChannelId() 1231 LIST_FOR_EACH_ENTRY(item, &(g_tcpSrvDataList->list), ServerDataBuf, node) { in TransTdcGetDataBufInfoByChannelId() 1251 TRANS_LOGE(TRANS_CTRL, "srv data list empty."); in TransTdcUpdateDataBufWInfo() 1260 LIST_FOR_EACH_ENTRY_SAFE(item, nextItem, &(g_tcpSrvDataList->list), ServerDataBuf, node) { in TransTdcUpdateDataBufWInfo() 1326 TRANS_LOGE(TRANS_CTRL, "tcp srv data list empt in TransReadDataLen() [all...] |