/third_party/node/deps/icu-small/source/i18n/ |
H A D | uitercollationiterator.cpp | 46 c = iter.next(&iter); in handleNextCE32() 55 UChar32 trail = iter.next(&iter); in handleGetTrailSurrogate() 112 c = iter.next(&iter); in handleNextCE32() 129 c = iter.next(&iter); in handleNextCE32() 146 UChar32 trail = iter.next(&iter); in handleGetTrailSurrogate() 166 c = iter.next(&iter); 181 UChar32 trail = iter.next(&iter); 219 iter.next(&iter); 221 iter.next(&iter); 238 iter.next( [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | uitercollationiterator.cpp | 46 c = iter.next(&iter); in handleNextCE32() 55 UChar32 trail = iter.next(&iter); in handleGetTrailSurrogate() 112 c = iter.next(&iter); in handleNextCE32() 129 c = iter.next(&iter); in handleNextCE32() 146 UChar32 trail = iter.next(&iter); in handleGetTrailSurrogate() 166 c = iter.next(&iter); 181 UChar32 trail = iter.next(&iter); 219 iter.next(&iter); 221 iter.next(&iter); 238 iter.next( [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | uitercollationiterator.cpp | 46 c = iter.next(&iter); in handleNextCE32() 55 UChar32 trail = iter.next(&iter); in handleGetTrailSurrogate() 112 c = iter.next(&iter); in handleNextCE32() 129 c = iter.next(&iter); in handleNextCE32() 146 UChar32 trail = iter.next(&iter); in handleGetTrailSurrogate() 166 c = iter.next(&iter); 181 UChar32 trail = iter.next(&iter); 219 iter.next(&iter); 221 iter.next(&iter); 238 iter.next( [all...] |
/third_party/skia/third_party/externals/libwebp/src/mux/ |
H A D | muxinternal.c | 52 WebPChunk* next; in ChunkRelease() local 57 next = chunk->next_; in ChunkRelease() 59 return next; in ChunkRelease() 93 // Returns next chunk in the chunk list with the given tag. 175 WebPChunk* const next = ChunkRelease(chunk); in ChunkDelete() local 177 return next; in ChunkDelete() 228 WebPMuxImage* next; in MuxImageRelease() local 237 next = wpi->next_; in MuxImageRelease() 239 return next; in MuxImageRelease() 328 WebPMuxImage* const next in MuxImageDelete() local [all...] |
/third_party/skia/third_party/externals/microhttpd/doc/examples/ |
H A D | sessions.c | 98 struct Session *next; member 185 ret = ret->next; in get_session() 211 ret->next = sessions; in get_session() 687 struct Session *next; in expire_sessions() local 695 next = pos->next; in expire_sessions() 700 sessions = pos->next; in expire_sessions() 702 prev->next = next; in expire_sessions() 707 pos = next; in expire_sessions() [all...] |
/third_party/skia/third_party/externals/microhttpd/src/examples/ |
H A D | post_example.c | 76 struct Session *next; member 163 ret = ret->next; in get_session() 189 ret->next = sessions; in get_session() 670 struct Session *next; in expire_sessions() local 678 next = pos->next; in expire_sessions() 683 sessions = pos->next; in expire_sessions() 685 prev->next = next; in expire_sessions() 690 pos = next; in expire_sessions() [all...] |
/third_party/toybox/toys/pending/ |
H A D | init.c | 26 struct action_list_seed *next; member 104 *y = x->next; //remove from the list in add_new_action() 105 while(*y) y = &(*y)->next; //traverse through list till end in add_new_action() 106 x->next = NULL; in add_new_action() 109 y = &(x)->next; in add_new_action() 195 *y = (*y)->next; in reload_inittab() 199 y = &(*y)->next; in reload_inittab() 290 for (x = action_list_pointer; x; x = x->next) { in mark_as_terminated_process() 313 for (; x; x = x->next) { in run_action_from_list() 384 for (x = action_list_pointer; x; x = x->next) { in restart_init_handler() [all...] |
/third_party/toybox/toys/posix/ |
H A D | grep.c | 82 struct reg *next, *prev; member 154 // get next line, check and trim delimiter in do_grep() 162 // Prepare for next line in do_grep() 164 if (TT.reg) for (shoe = (void *)TT.reg; shoe; shoe = shoe->next) in do_grep() 176 for (seek = TT.e; seek; seek = seek->next) { in do_grep() 180 // No need to set fseek.next because this will match every line. in do_grep() 201 for (shoe = (void *)TT.reg; shoe; shoe = shoe->next) { in do_grep() 346 // If we discarded a line while displaying context, show bars before next in do_grep() 385 new->next = list; in parse_regex() 392 al = al->next; in parse_regex() [all...] |
/third_party/skia/fuzz/ |
H A D | FuzzCommon.cpp | 14 fuzz->next(&v); in fuzz_nice_float() 106 fuzz->next(&test); in FuzzNicePath() 122 fuzz->next(&ui); in FuzzNicePath() 135 fuzz->next(&ui); in FuzzNicePath() 230 fuzz->next(&operation); in FuzzEvilPath() 235 fuzz->next(&a, &b); in FuzzEvilPath() 240 fuzz->next(&a, &b); in FuzzEvilPath() 245 fuzz->next(&a, &b, &c, &d); in FuzzEvilPath() 250 fuzz->next(&a, &b, &c, &d, &e); in FuzzEvilPath() 255 fuzz->next( in FuzzEvilPath() [all...] |
/third_party/rust/crates/proc-macro2/src/ |
H A D | parse.rs | 113 let ch = s.chars().next().unwrap(); in skip_whitespace() 158 match input.chars().next() { in word_break() 183 let first = match input.bytes().next() { 325 match chars.next() { in ident_not_raw() 387 while let Some((i, ch)) = chars.next() { in cooked_string() 393 '\r' => match chars.next() { in cooked_string() 397 '\\' => match chars.next() { in cooked_string() 421 while let Some((i, byte)) = bytes.next() { in raw_string() 427 b'\r' => match bytes.next() { in raw_string() 449 while let Some((offset, b)) = bytes.next() { in cooked_byte_string() [all...] |
/third_party/selinux/libsepol/cil/src/ |
H A D | cil_reset_ast.c | 118 struct cil_list_item *next = NULL; in cil_reset_userattr() local 127 next = expr->next; in cil_reset_userattr() 129 expr = next; in cil_reset_userattr() 166 struct cil_list_item *next = expr->next; in cil_reset_roleattr() local 168 expr = next; in cil_reset_roleattr() 195 struct cil_list_item *next = expr->next; in cil_reset_typeattr() local 197 expr = next; in cil_reset_typeattr() [all...] |
H A D | cil_symtab.c | 185 prev = curr, curr = curr->next) { in cil_complex_symtab_insert() 214 node->next = prev->next; in cil_complex_symtab_insert() 215 prev->next = node; in cil_complex_symtab_insert() 217 node->next = symtab->htable[hash]; in cil_complex_symtab_insert() 234 for (curr = symtab->htable[hash]; curr != NULL; curr = curr->next) { in cil_complex_symtab_search() 279 curr = curr->next; in cil_complex_symtab_destroy()
|
/base/startup/init/services/init/standard/ |
H A D | init_cmdexecutor.c | 79 ListNode *node = cmd->cmdExecutor.next;
in RemoveCmdExecutor() 87 node = node->next;
in RemoveCmdExecutor() 89 if (cmd->cmdExecutor.next != &cmd->cmdExecutor) {
in RemoveCmdExecutor() 109 ListNode *node = cmd->cmdExecutor.next;
in PluginExecCmd_() 113 node = node->next;
in PluginExecCmd_() 139 ListNode *node = cmd->cmdExecutor.next;
in PluginExecCmd() 143 node = node->next;
in PluginExecCmd()
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/stylemgr/ |
H A D | app_style.cpp | 43 const AppStyleItem *next = nullptr; in Reset() local 45 next = firstStyleItem_->GetNext(); in Reset() 47 firstStyleItem_ = next; in Reset() 228 char *next = nullptr; in ConcatJerryString() local 232 strtokA = strtok_s(stringA, pixelUnit, &next); in ConcatJerryString() 233 next = nullptr; in ConcatJerryString() 236 strtokB = strtok_s(stringB, pixelUnit, &next); in ConcatJerryString()
|
/foundation/arkui/ace_engine_lite/frameworks/module_manager/ |
H A D | module_manager.cpp | 89 char* next = nullptr; in ParseModuleName() local 90 char* tokenStr = strtok_s(str, ".", &next); in ParseModuleName() 98 if (!CreateString(next, name)) { in ParseModuleName() 109 next = nullptr; in ParseModuleName() 215 node = node->next; in InsertTerminateCallback() 250 node->next = head; in InsertCallback() 268 head = node->next; in InvokeCallbacks()
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | lower_int64.cpp | 11 * The above copyright notice and this permission notice (including the next 152 exec_node *const before = instructions->head_sentinel.next; in lower_64bit_integer_instructions() 153 exec_node *const head = v.function_list.head_sentinel.next; in lower_64bit_integer_instructions() 156 before->next = head; in lower_64bit_integer_instructions() 160 tail->next = after; in lower_64bit_integer_instructions() 303 exec_node *const head = instructions.head_sentinel.next; in lower_op_to_function_call() 306 before->next = head; in lower_op_to_function_call() 310 tail->next = after; in lower_op_to_function_call()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | lib.c | 265 pre_buffer_next = &end->next; in add_pre_buffer() 314 struct token *next = token->next; in sparse_tokenstream() local 316 if (next->pos.whitespace) in sparse_tokenstream() 318 if (next->pos.newline) { in sparse_tokenstream() 320 prec = next->pos.pos; in sparse_tokenstream() 325 token = next; in sparse_tokenstream()
|
/third_party/node/deps/openssl/openssl/crypto/bn/ |
H A D | bn_ctx.c | 28 struct bignum_pool_item *prev, *next; member 94 item = item->next; in ctxdbg() 171 pool = pool->next; in BN_CTX_free() 309 p->current = p->head->next; in BN_POOL_finish() 335 item->next = NULL; in BN_POOL_get() 340 p->tail->next = item; in BN_POOL_get() 353 p->current = p->current->next; in BN_POOL_get()
|
/third_party/node/deps/uvwasi/src/ |
H A D | path_resolver.c | 41 char* next; in uvwasi__normalize_path() local 52 for (cur = path; cur != NULL; cur = next + 1) { in uvwasi__normalize_path() 53 next = uvwasi__strchr_slash(cur); in uvwasi__normalize_path() 54 cur_len = (next == NULL) ? strlen(cur) : (size_t) (next - cur); in uvwasi__normalize_path() 57 if (ptr == normalized_path && next != NULL && is_absolute) { in uvwasi__normalize_path() 108 if (next == NULL) in uvwasi__normalize_path()
|
/third_party/rust/crates/clang-sys/src/ |
H A D | support.rs | 50 /// systems, `xcodebuild -find clang` will next be queried. Last, the 85 if let Some(line) = path.lines().next() { in find() 92 if let Some(line) = path.lines().next() { in find() 147 if let Some(path) = glob::glob(&pattern).ok()?.filter_map(|p| p.ok()).next() { in find() 210 let mut numbers = output[start..].split_whitespace().next()?.split('.'); in parse_version() 211 let major = numbers.next().and_then(parse_version_number)?; in parse_version() 212 let minor = numbers.next().and_then(parse_version_number)?; in parse_version() 213 let subminor = numbers.next().and_then(parse_version_number).unwrap_or(0); in parse_version()
|
/third_party/openssl/crypto/bn/ |
H A D | bn_ctx.c | 28 struct bignum_pool_item *prev, *next; member 94 item = item->next; in ctxdbg() 171 pool = pool->next; in BN_CTX_free() 309 p->current = p->head->next; in BN_POOL_finish() 335 item->next = NULL; in BN_POOL_get() 340 p->tail->next = item; in BN_POOL_get() 353 p->current = p->current->next; in BN_POOL_get()
|
/third_party/skia/third_party/externals/microhttpd/src/microspdy/ |
H A D | daemon.c | 405 for (pos = daemon->sessions_head; NULL != pos; pos = pos->next) in SPDYF_get_timeout() 451 for (pos = daemon->sessions_head; NULL != pos; pos = pos->next) in SPDYF_get_fdset() 477 struct SPDY_Session *next; in SPDYF_run() local 504 next = daemon->sessions_head; in SPDYF_run() 505 while (NULL != (pos = next)) in SPDYF_run() 507 next = pos->next; in SPDYF_run()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
H A D | StackMapParser.h | 31 AccessorIterator& operator++() { A = A.next(); return *this; } in operator ++() 76 FunctionAccessor next() const { in next() function in llvm::StackMapParser::FunctionAccessor 96 ConstantAccessor next() const { in next() function in llvm::StackMapParser::ConstantAccessor 153 LocationAccessor next() const { in next() function in llvm::StackMapParser::LocationKind::LocationAccessor 185 LiveOutAccessor next() const { in next() function in llvm::StackMapParser::LocationKind::LiveOutAccessor 285 RecordAccessor next() const { in next() function in llvm::StackMapParser::LocationKind::RecordAccessor 406 // look at the last record and use the 'next' method. in records_end() 409 return record_iterator(getRecord(getNumRecords() - 1).next()); in records_end()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | CrashRecoveryContext.cpp | 107 i = tmp->next; in ~CrashRecoveryContext() 156 cleanup->next = head; in registerCleanup() 165 head = cleanup->next; in unregisterCleanup() 170 cleanup->prev->next = cleanup->next; in unregisterCleanup() 171 if (cleanup->next) in unregisterCleanup() 172 cleanup->next->prev = cleanup->prev; in unregisterCleanup()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/ |
H A D | http_server.c | 22 struct http_request *next; member 105 p->next = r->next; in http_request_deinit() 107 srv->requests = r->next; in http_request_deinit() 112 r = r->next; in http_request_deinit() 126 req = req->next; in http_request_free_all() 222 req->next = srv->requests; in http_server_cb()
|