| /commonlibrary/ets_utils/js_concurrent_module/taskpool/ |
| D | task_manager.cpp | 245 for (auto iter = workers_.begin(); iter != workers_.end(); iter++) { in CheckForBlockedWorkers() local 437 auto iter = std::find_if(idleWorkers_.begin(), idleWorkers_.end(), [](Worker *worker) { in TriggerShrink() local 466 for (auto iter = timeoutWorkers_.begin(); iter != timeoutWorkers_.end();) { in NotifyShrink() local 934 auto iter = callbackTable_.find(taskId); in GetCallbackInfo() local 948 auto iter = callbackTable_.find(taskId); in IncreaseRefCount() local 961 auto iter = callbackTable_.find(taskId); in DecreaseRefCount() local 988 auto iter = callbackTable_.find(task->taskId_); in NotifyCallbackExecute() local 1053 auto iter = dependentTaskInfos_.find(taskId); in NotifyDependencyTaskInfo() local 1085 auto iter = dependTaskInfos_.find(taskId); in IsDependendByTaskId() local 1095 auto iter = dependentTaskInfos_.find(dependentTaskId); in IsDependentByTaskId() local [all …]
|
| D | task_group.cpp | 182 for (auto iter = taskRefs_.begin(); iter != taskRefs_.end(); iter++) { in NotifyGroupTask() local
|
| D | taskpool.cpp | 411 … for (auto iter = taskGroup->taskRefs_.begin(); iter != taskGroup->taskRefs_.end(); iter++) { in ExecuteGroup() local 577 auto iter = taskGroup->taskIds_.begin(); in UpdateGroupInfoByResult() local
|
| /commonlibrary/rust/ylong_runtime/ylong_runtime/benches/ |
| D | ylong_tokio_multi_threaded.rs | 94 fn iter(runtime: Arc<Runtime>, sender: mpsc::SyncSender<()>, n: usize) { in chained_spawn() function 138 fn iter(sender: mpsc::SyncSender<()>, n: usize) { in chained_spawn() function
|
| /commonlibrary/c_utils/base/include/ |
| D | safe_map.h | 142 auto iter = map_.find(key); in Find() local 165 auto iter = map_.find(key); in FindOldAndSetNew() local
|
| D | safe_queue.h | 54 for (auto iter = deque_.begin(); iter != deque_.end(); iter++) { in Erase() local
|
| /commonlibrary/rust/ylong_runtime/ylong_runtime/src/ |
| D | lib.rs | 42 pub mod iter; module
|
| /commonlibrary/rust/ylong_json/src/value/object/ |
| D | btree.rs | 143 pub fn iter(&self) -> Iter<'_, String, JsonValue> { in iter() method 228 let mut iter = object.iter_mut(); in ut_object_iter_mut() localVariable
|
| D | vec.rs | 150 pub fn iter(&self) -> Iter<'_, (String, JsonValue)> { in iter() method
|
| D | linked_list.rs | 147 pub fn iter(&self) -> Iter<'_, (String, JsonValue)> { in iter() method
|
| /commonlibrary/ets_utils/js_sys_module/timer/ |
| D | timer.cpp | 130 auto iter = timerTable.find(tId); in ClearTimer() local 288 auto iter = timerTable.begin(); in ClearEnvironmentTimer() local 303 auto iter = std::find_if(timerTable.begin(), timerTable.end(), [env](const auto &item) { in HasTimer() local
|
| /commonlibrary/rust/ylong_json/src/value/array/ |
| D | vec.rs | 125 pub fn iter(&self) -> Iter<'_, JsonValue> { in iter() method 322 let mut iter = array.iter_mut(); in ut_array_iter_mut() localVariable
|
| D | linked_list.rs | 126 pub fn iter(&self) -> Iter<'_, JsonValue> { in iter() method 416 let mut iter = array.iter_mut(); in ut_array_iter_mut() localVariable
|
| /commonlibrary/rust/ylong_runtime/ylong_io/src/sys/windows/ |
| D | events.rs | 82 pub fn iter(&self) -> IterEvent { in iter() method 116 iter: &'a Vec<Event>, field
|
| /commonlibrary/rust/ylong_runtime/ylong_runtime/src/iter/pariter/ |
| D | filter.rs | 59 fn iter(self) -> Self::Iter { in iter() function
|
| D | map.rs | 62 fn iter(self) -> Self::Iter { in iter() function
|
| D | zip.rs | 71 fn iter(self) -> Self::Iter { in iter() function
|
| D | mod.rs | 52 fn iter(self) -> Self::Iter; in iter() method
|
| /commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/dns/ |
| D | happy_eyeballs.rs | 56 iter: core::slice::Iter<'a, SocketAddr>, field 64 pub(crate) fn iter(&self) -> DomainAddrsIter { in iter() method
|
| D | resolver.rs | 43 iter: IntoIter<SocketAddr>, field
|
| /commonlibrary/ets_utils/js_concurrent_module/worker/ |
| D | worker.cpp | 1211 for (auto iter = globalCallObjects_.begin(); iter != globalCallObjects_.end(); iter++) { in RemoveGlobalCallObject() local 1223 for (auto iter = globalCallObjects_.begin(); iter != globalCallObjects_.end(); iter++) { in ClearGlobalCallObject() local 1566 auto iter = globalCallObjects_.find(instanceNameStr); in HostOnGlobalCallInner() local 2024 auto iter = eventListeners_.find(listener); in HandleEventListeners() local 2146 auto iter = eventListeners_.find(typestr); in AddListenerInner() local 2165 auto iter = eventListeners_.find(typestr); in RemoveListenerInner() local 2197 for (auto iter = eventListeners_.begin(); iter != eventListeners_.end(); iter++) { in RemoveAllListenerInner() local 2305 auto iter = parentPortEventListeners_.find(typestr); in ParentPortAddListenerInner() local 2323 …for (auto iter = parentPortEventListeners_.begin(); iter != parentPortEventListeners_.end(); iter+… in ParentPortRemoveAllListenerInner() local 2336 auto iter = parentPortEventListeners_.find(typestr); in ParentPortRemoveListenerInner() local [all …]
|
| /commonlibrary/ets_utils/js_sys_module/process/ |
| D | js_process.cpp | 105 for (auto iter = pgrous.begin(); iter != pgrous.end(); iter++) { in GetGroups() local 273 auto iter = eventMap.equal_range(temp); in Off() local 453 auto iter = eventMap.begin(); in ClearReference() local
|
| D | js_childprocess.cpp | 359 auto iter = g_signalsMap.find(buffer); in GetValidSignal() local
|
| /commonlibrary/rust/ylong_http/ylong_http/src/ |
| D | headers.rs | 429 pub fn iter(&self) -> HeaderValueIter<'_> { in iter() method 829 pub fn iter(&self) -> HeadersIter<'_> { in iter() method 1282 let mut iter = headers.iter(); in ut_headers_iter() localVariable
|
| /commonlibrary/rust/ylong_runtime/ylong_runtime/src/iter/parallel/ |
| D | mod.rs | 119 fn iter(self) -> Self::Iter { in iter() method
|