Home
last modified time | relevance | path

Searched refs:next (Results 1751 - 1775 of 6320) sorted by relevance

1...<<71727374757677787980>>...253

/third_party/node/test/parallel/
H A Dtest-http2-https-fallback.js35 function onSession(session, next) {
59 if (typeof next === 'function') {
60 next();
/third_party/node/deps/v8/src/zone/
H A Dzone-allocator.h115 free_list_ = free_list_->next; in allocate()
132 new_free_block->next = free_list_; in deallocate()
139 FreeBlock* next; member
/third_party/node/deps/icu-small/source/common/unicode/
H A Dedits.h43 * next() on the iterator, skips over no-change edits (unchanged regions).
47 * calling next() on the iterator, skips over no-change edits (unchanged regions).
68 * `Edits::Iterator::next()` methods are called. They are identical to the non-change iterators when
193 * The iterator can be moved between edits using the `next()`, `findSourceIndex(int32_t, UErrorCode &)`,
225 * Advances the iterator to the next edit.
232 UBool next(UErrorCode &errorCode) { return next(onlyChanges_, errorCode); } in next() function
412 UBool next(UBool onlyChanges, UErrorCode &errorCode);
/third_party/lwip/test/unit/core/
H A Dtest_timers.c68 /* verify "overload" - next cyclic timer execution is already overdue twice */ in do_test_cyclic_timers()
143 fail_unless((*list_head)->next->time == (u32_t)(lwip_sys_now + 10)); in do_test_timers()
144 fail_unless((*list_head)->next->next->time == (u32_t)(lwip_sys_now + 20)); in do_test_timers()
/third_party/node/deps/v8/src/compiler/
H A Dgraph-reducer.h39 Reduction FollowedBy(Reduction next) const { in FollowedBy()
40 if (next.Changed()) return next; in FollowedBy()
/third_party/node/deps/v8/src/handles/
H A Dpersistent-handles.cc151 prev_next_ = data->next; in PersistentHandlesScope()
152 data->next = new_next; in PersistentHandlesScope()
165 data->next = prev_next_; in Detach()
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/
H A Dnvc0_screen.h94 int next; member
101 int next; member
107 int next; member
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Dlayout_kni_mbuf.rs33 pub next: *mut ::std::os::raw::c_void,
191 unsafe { ::std::ptr::addr_of!((*ptr).next) as usize - ptr as usize }, in bindgen_test_layout_rte_kni_mbuf()
197 stringify!(next) in bindgen_test_layout_rte_kni_mbuf()
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DFieldMaskPartial.cs197 char next = input[i + 1]; in IsPathValid()
198 if (next < 'a' || next > 'z') in IsPathValid()
/third_party/skia/src/core/
H A DSkArenaAlloc.cpp61 char* next; in NextBlock() local
62 memmove(&next, objEnd, sizeof(char*)); in NextBlock()
63 RunDtorsOnBlock(next); in NextBlock()
/third_party/skia/third_party/externals/microhttpd/src/testcurl/https/
H A Dtest_https_sni.c45 struct Hosts *next; member
73 host->next = hosts; in load_keys()
155 for (host = hosts; NULL != host; host = host->next) in sni_callback()
/third_party/skia/tests/
H A DLListTest.cpp70 for (int i = 0; cur; ++i, cur = iter.next()) { in DEF_TEST()
111 for (int i = 0; cur; ++i, cur = iter.next()) { in DEF_TEST()
150 for (int i = 0; cur; ++i, cur = iter.next()) { in DEF_TEST()
/third_party/skia/third_party/externals/freetype/src/cache/
H A Dftcmru.h65 FTC_MruNode next; member
188 _node = _node->next; \
234 _node = _node->next; \
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dedits.h43 * next() on the iterator, skips over no-change edits (unchanged regions).
47 * calling next() on the iterator, skips over no-change edits (unchanged regions).
68 * `Edits::Iterator::next()` methods are called. They are identical to the non-change iterators when
193 * The iterator can be moved between edits using the `next()`, `findSourceIndex(int32_t, UErrorCode &)`,
225 * Advances the iterator to the next edit.
232 UBool next(UErrorCode &errorCode) { return next(onlyChanges_, errorCode); } in next() function
412 UBool next(UBool onlyChanges, UErrorCode &errorCode);
/third_party/toybox/toys/posix/
H A Dxargs.c166 if (dlist) dlist->prev->next = 0; in xargs_main()
167 for (dtemp = dlist; dtemp; dtemp = dtemp->next) in xargs_main()
207 struct double_list *dtemp = dlist->next; in xargs_main()
H A Dps.c224 struct ofields *next, *prev; member
644 for (field = TT.fields; field; field = field->next) { in show_ps()
678 if (!field->next && sign<0) { in show_ps()
687 if (field->next) pad++; in show_ps()
1030 if (new->child) for (dt = new->child->child; dt; dt = dt->next) { in get_threads()
1042 new = dt->child->next; in get_threads()
1128 for (; field; field = field->next) { in get_headers()
1145 // Allocate next chunk of data in parse_rest()
1222 for (field = TT.kfields; field && !ret; field = field->next) { in ksort()
1248 struct dirtree *next in collate_leaves() local
1818 struct regex_list *next; global() member
[all...]
/third_party/vixl/test/
H A Dtest-runner.cc175 for (vixl::Test* c = vixl::Test::first(); c != NULL; c = c->next()) { in main()
181 for (vixl::Test* c = vixl::Test::first(); c != NULL; c = c->next()) { in main()
197 for (c = vixl::Test::first(); c != NULL; c = c->next()) { in main()
/third_party/rust/crates/regex/src/
H A Dre_trait.rs66 fn next(&mut self) -> Option<Option<(usize, usize)>> { in next() functions
117 /// Returns the position of the next character after `i`.
121 /// length of the next UTF-8 sequence.
199 fn next(&mut self) -> Option<(usize, usize)> { in next() functions
209 // the next search at the smallest possible starting position in next()
210 // of the next match following this one. in next()
213 // Just move on to the next match. in next()
215 return self.next(); in next()
263 fn next(&mut self) -> Option<Locations> { in next() functions
279 return self.next(); in next()
[all...]
/third_party/ffmpeg/libavcodec/
H A Ddca_lbr.c419 int i, sf, prev, next, dist; in parse_scale_factors() local
445 next = parse_vlc(&s->gb, &ff_dca_vlc_rsd_amp, 2); in parse_scale_factors()
447 if (next & 1) in parse_scale_factors()
448 next = prev + ((next + 1) >> 1); in parse_scale_factors()
450 next = prev - ( next >> 1); in parse_scale_factors()
455 if (next > prev) in parse_scale_factors()
456 scf[sf + 1] = prev + ((next - prev) >> 1); in parse_scale_factors()
458 scf[sf + 1] = prev - ((prev - next) >> in parse_scale_factors()
1602 float next = ff_dca_st_coeff[pt_st[sf ]]; decode_part_stereo() local
[all...]
/third_party/node/deps/ngtcp2/ngtcp2/lib/
H A Dngtcp2_rtb.c203 frc->next = NULL; in ngtcp2_frame_chain_init()
210 ngtcp2_frame_chain *next; in ngtcp2_frame_chain_list_objalloc_del() local
212 for (; frc; frc = next) { in ngtcp2_frame_chain_list_objalloc_del()
213 next = frc->next; in ngtcp2_frame_chain_list_objalloc_del()
265 ent->next = NULL; in rtb_entry_init()
440 for (frc = ent->frc; frc; frc = frc->next) { in rtb_reclaim_frame()
578 nfrc->next = *pfrc; in rtb_reclaim_frame()
580 pfrc = &nfrc->next; in rtb_reclaim_frame()
595 for (frc = ent->frc; frc; frc = frc->next) { in conn_process_lost_datagram()
[all...]
/third_party/skia/third_party/externals/libpng/
H A Dpngwutil.c368 * next windowBits size we need to fix up the value later. (Because even in png_deflate_claim()
449 png_compression_bufferp next = list->next; in png_free_buffer_list() local
452 list = next; in png_free_buffer_list()
540 png_compression_buffer *next; in png_text_compress() local
554 next = *end; in png_text_compress()
555 if (next == NULL) in png_text_compress()
557 next = png_voidcast(png_compression_bufferp, png_malloc_base in png_text_compress()
560 if (next == NULL) in png_text_compress()
567 next in png_text_compress()
642 png_compression_buffer *next = png_ptr->zbuffer_list; png_write_compressed_data_out() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/list/
H A Dgrid_layout_manager.cpp344 auto next = renderList_.GetItemByIndex(direction == KeyDirection::UP ? --index : ++index); in focusMove() local
345 while (next) { in focusMove()
347 int32_t nextSpan = next->GetColumnSpan(); in focusMove()
351 next = renderList_.GetItemByIndex(direction == KeyDirection::UP ? --index : ++index); in focusMove()
357 auto next = renderList_.GetItemByIndex(--index); in focusMove() local
358 if (next && GetItemGrid(index) < curGrid) { in focusMove()
365 auto next = renderList_.GetItemByIndex(++index); in focusMove() local
366 if (next && GetItemGrid(index) > curGrid) { in focusMove()
/foundation/communication/dsoftbus/core/common/dfx/hisysevent_adapter/
H A Dsoftbus_hisysevt_connreporter.c153 if (g_pIdOfPkgName.prev == NULL && g_pIdOfPkgName.next == NULL) { in ClearConnResultRecord()
164 if (g_connResultApiRecord.prev == NULL && g_connResultApiRecord.next == NULL) { in ClearConnResultRecord()
197 PIdOfPkgNameNode *next = NULL; in GetPkgNameByPId() local
199 LIST_FOR_EACH_ENTRY_SAFE(item, next, &(g_pIdOfPkgName), PIdOfPkgNameNode, node) { in GetPkgNameByPId()
225 ConnResultApiRecordNode *next = NULL; in GetRecordNodeByPkgName() local
227 LIST_FOR_EACH_ENTRY_SAFE(item, next, &(g_connResultApiRecord), ConnResultApiRecordNode, node) { in GetRecordNodeByPkgName()
398 ConnResultApiRecordNode *next = NULL; in SoftBusReportConnResultRecordEvt() local
400 LIST_FOR_EACH_ENTRY_SAFE(item, next, &(g_connResultApiRecord), ConnResultApiRecordNode, node) { in SoftBusReportConnResultRecordEvt()
/foundation/communication/dsoftbus/core/bus_center/lnn/lane_hub/lane_manager/src/
H A Dlnn_lane_link_wifi_direct.c62 ForceDownInfo *next = NULL; in IsForceDownInfoExists() local
63 LIST_FOR_EACH_ENTRY_SAFE(item, next, g_forceDownList, ForceDownInfo, node) { in IsForceDownInfoExists()
123 ForceDownInfo *next = NULL; in DelForceDownInfo() local
124 LIST_FOR_EACH_ENTRY_SAFE(item, next, g_forceDownList, ForceDownInfo, node) { in DelForceDownInfo()
144 ForceDownInfo *next = NULL; in GetForceDownInfoWithoutLock() local
145 LIST_FOR_EACH_ENTRY_SAFE(item, next, g_forceDownList, ForceDownInfo, node) { in GetForceDownInfoWithoutLock()
524 ForceDownInfo *next = NULL; in ForceDownCondWait() local
525 LIST_FOR_EACH_ENTRY_SAFE(item, next, g_forceDownList, ForceDownInfo, node) { in ForceDownCondWait()
H A Dlnn_lane_listener.c81 LaneBusinessInfo *next = NULL; in GetLaneBusinessInfoWithoutLock() local
82 LIST_FOR_EACH_ENTRY_SAFE(item, next, &g_laneBusinessInfoList, LaneBusinessInfo, node) { in GetLaneBusinessInfoWithoutLock()
209 LaneBusinessInfo *next = NULL; in FindLaneBusinessInfoByLinkInfo() local
210 LIST_FOR_EACH_ENTRY_SAFE(item, next, &g_laneBusinessInfoList, LaneBusinessInfo, node) { in FindLaneBusinessInfoByLinkInfo()
231 LaneListenerInfo *next = NULL; in LaneListenerIsExist() local
232 LIST_FOR_EACH_ENTRY_SAFE(item, next, &g_laneListenerList, LaneListenerInfo, node) { in LaneListenerIsExist()
284 LaneListenerInfo *next = NULL; in LaneLinkupNotify() local
285 LIST_FOR_EACH_ENTRY_SAFE(item, next, &g_laneListenerList, LaneListenerInfo, node) { in LaneLinkupNotify()

Completed in 33 milliseconds

1...<<71727374757677787980>>...253