Home
last modified time | relevance | path

Searched refs:next (Results 3226 - 3250 of 12535) sorted by relevance

1...<<121122123124125126127128129130>>...502

/third_party/typescript/tests/baselines/reference/
H A DcapturedParametersInInitializers1.js47 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
50 step((generator = generator.apply(thisArg, _arguments || [])).next());
H A DdecoratorOnClassMethodParameter3.js25 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
28 step((generator = generator.apply(thisArg, _arguments || [])).next());
H A DdefaultExportInAwaitExpression01.js34 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
37 step((generator = generator.apply(thisArg, _arguments || [])).next());
H A DnoAsConstNameLookup.js38 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
41 step((generator = generator.apply(thisArg, _arguments || [])).next());
H A DimportCallExpressionAsyncES6AMD.js35 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
38 step((generator = generator.apply(thisArg, _arguments || [])).next());
H A DimportCallExpressionAsyncES6CJS.js36 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
39 step((generator = generator.apply(thisArg, _arguments || [])).next());
H A DimportCallExpressionAsyncES6System.js37 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
40 step((generator = generator.apply(thisArg, _arguments || [])).next());
H A DimportCallExpressionInUMD5.js34 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
37 step((generator = generator.apply(thisArg, _arguments || [])).next());
H A DimportCallExpressionNestedUMD.js29 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
32 step((generator = generator.apply(thisArg, _arguments || [])).next());
H A DinferenceLimit.js51 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
54 step((generator = generator.apply(thisArg, _arguments || [])).next());
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DLazyField.java141 public Entry<K, Object> next() { in next() method in LazyField.LazyIterator
142 Entry<K, ?> entry = iterator.next(); in next()
/third_party/pulseaudio/src/pulsecore/
H A Desound.h148 struct esd_player_info *next; /* point to next entry in list */ member
163 struct esd_sample_info *next; /* point to next entry in list */ member
194 ESD_NEXT_REQUEST, /* proceed to next request */
/third_party/python/Include/internal/
H A Dpycore_hashtable.h14 struct _Py_slist_item_s *next; member
21 #define _Py_SLIST_ITEM_NEXT(ITEM) (((_Py_slist_item_t *)ITEM)->next)
/third_party/rust/crates/cxx/macro/src/syntax/
H A Dset.rs120 fn next(&mut self) -> Option<Self::Item> { in next() functions
121 self.0.next().copied() in next()
/third_party/rust/crates/cxx/syntax/
H A Dset.rs120 fn next(&mut self) -> Option<Self::Item> { in next() functions
121 self.0.next().copied() in next()
/third_party/skia/include/private/
H A DSkDeque.h78 void* next();
100 using Iter::next;
/third_party/rust/crates/proc-macro-error/proc-macro-error-attr/src/
H A Dsettings.rs40 match input.next() {
51 match input.next() {
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineCombinationsIterator.hpp44 T next (void);
92 T CombinationsIterator<T>::next (void) in next() function in vkt::pipeline::CombinationsIterator
/base/tee/tee_client/services/teecd/src/
H A Dfs_work_agent.c71 newFile->next = newFile; in AddOpenFile()
79 g_firstFile->prev->next = newFile; in AddOpenFile()
81 newFile->next = g_firstFile; in AddOpenFile()
89 struct OpenedFile *next = NULL; in DelOpenFile() local
94 next = file->next; in DelOpenFile()
96 if (file == next) { /* only 1 node */ in DelOpenFile()
99 if (file->next == NULL || file->prev == NULL) { in DelOpenFile()
100 tloge("the next or the prev is null\n"); in DelOpenFile()
104 g_firstFile = file->next; in DelOpenFile()
[all...]
/kernel/linux/linux-5.10/drivers/android/
H A Dbinder_alloc.c52 return list_entry(buffer->entry.next, struct binder_buffer, entry); in binder_buffer_next()
596 struct binder_buffer *prev, *next = NULL; in binder_delete_free_buffer() local
599 BUG_ON(alloc->buffers.next == &buffer->entry); in binder_delete_free_buffer()
611 next = binder_buffer_next(buffer); in binder_delete_free_buffer()
612 if (buffer_start_page(next) == buffer_start_page(buffer)) { in binder_delete_free_buffer()
618 next->user_data); in binder_delete_free_buffer()
634 next ? next->user_data : NULL); in binder_delete_free_buffer()
678 struct binder_buffer *next = binder_buffer_next(buffer); in binder_free_buf_locked() local
680 if (next in binder_free_buf_locked()
[all...]
/kernel/linux/linux-5.10/arch/powerpc/platforms/pseries/
H A Diommu.c374 u64 tce_size, num_tce, dma_offset, next; in tce_clearrange_multi_pSeriesLP() local
380 next = start_pfn << PAGE_SHIFT; in tce_clearrange_multi_pSeriesLP()
384 num_tce += next & (tce_size - 1); in tce_clearrange_multi_pSeriesLP()
385 next &= ~(tce_size - 1); in tce_clearrange_multi_pSeriesLP()
397 dma_offset = next + be64_to_cpu(maprange->dma_base); in tce_clearrange_multi_pSeriesLP()
402 next += limit * tce_size; in tce_clearrange_multi_pSeriesLP()
413 u64 tce_size, num_tce, dma_offset, next, proto_tce, liobn; in tce_setrange_multi_pSeriesLP() local
449 next = start_pfn << PAGE_SHIFT; in tce_setrange_multi_pSeriesLP()
453 num_tce += next & (tce_size - 1); in tce_setrange_multi_pSeriesLP()
454 next in tce_setrange_multi_pSeriesLP()
[all...]
/kernel/linux/linux-5.10/drivers/net/
H A Dtap.c112 struct list_head next; member
179 list_add_tail(&q->next, &tap->queue_list); in tap_set_queue()
236 list_del_init(&q->next); in tap_put_queue()
303 list_for_each_entry_safe(q, tmp, &tap->queue_list, next) { in tap_del_queues()
304 list_del_init(&q->next); in tap_del_queues()
344 struct sk_buff *next; in tap_handle_frame() local
356 skb_list_walk_safe(segs, skb, next) { in tap_handle_frame()
360 kfree_skb_list(next); in tap_handle_frame()
395 list_for_each_entry_rcu(tap_major, &major_list, next) { in tap_get_major()
1294 list_for_each_entry(q, &tap->queue_list, next) in tap_queue_resize()
[all...]
/kernel/linux/linux-5.10/drivers/scsi/
H A Dqlogicpti.c690 while(qlink->next) in qpti_chain_add()
691 qlink = qlink->next; in qpti_chain_add()
692 qlink->next = qpti; in qpti_chain_add()
696 qpti->next = NULL; in qpti_chain_add()
704 qptichain = qpti->next; in qpti_chain_del()
707 while(qlink->next != qpti) in qpti_chain_del()
708 qlink = qlink->next; in qpti_chain_del()
709 qlink->next = qpti->next; in qpti_chain_del()
711 qpti->next in qpti_chain_del()
1214 struct scsi_cmnd *next; qpti_intr() local
[all...]
/kernel/linux/linux-5.10/scripts/
H A Dasn1_compiler.c292 struct action *next; member
687 struct element *next; member
1098 ppaction = &(*ppaction)->next in parse_type()
1107 action->next = *ppaction; in parse_type()
1113 action->next = NULL; in parse_type()
1182 child_p = &element->next; in parse_compound()
1246 for (c = e->children; c; c = c->next) in dump_element()
1328 for (action = action_list; action; action = action->next) { in render()
1338 for (action = action_list; action; action = action->next) in render()
1347 for (action = action_list; action; action = action->next) in render()
[all...]
/kernel/linux/linux-5.10/fs/
H A Dlibfs.c109 while ((p = p->next) != &dentry->d_subdirs) { in scan_positives()
192 struct dentry *next = NULL; in dcache_readdir() local
205 while ((next = scan_positives(cursor, p, 1, next)) != NULL) { in dcache_readdir()
206 if (!dir_emit(ctx, next->d_name.name, next->d_name.len, in dcache_readdir()
207 d_inode(next)->i_ino, dt_type(d_inode(next)))) in dcache_readdir()
210 p = &next->d_child; in dcache_readdir()
213 if (next) in dcache_readdir()
[all...]

Completed in 17 milliseconds

1...<<121122123124125126127128129130>>...502