Home
last modified time | relevance | path

Searched refs:Next (Results 1 – 25 of 119) sorted by relevance

12345

/arkcompiler/ets_frontend/es2panda/lexer/regexp/
Dregexp.cpp46 char32_t RegExpParser::Next() in Next() function in panda::es2panda::lexer::RegExpParser
48 return iter_.Next(); in Next()
111 Next(); in ParseDisjunction()
119 Next(); in ParseAlternative()
123 Next(); in ParseAlternative()
133 Next(); in ParseAlternative()
137 Next(); in ParseAlternative()
144 Next(); // eat '?' in ParseAlternative()
146 char32_t cp = Next(); in ParseAlternative()
168 Next(); in ParseAlternative()
[all …]
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_string_iterator_test.cpp79 BuiltinsStringIterator::Next(ecmaRuntimeCallInfo1); in HWTEST_F_L0()
88 BuiltinsStringIterator::Next(ecmaRuntimeCallInfo2); in HWTEST_F_L0()
97 JSTaggedValue result = BuiltinsStringIterator::Next(ecmaRuntimeCallInfo3); in HWTEST_F_L0()
118 BuiltinsStringIterator::Next(ecmaRuntimeCallInfo1); in HWTEST_F_L0()
127 BuiltinsStringIterator::Next(ecmaRuntimeCallInfo2); in HWTEST_F_L0()
136 JSTaggedValue result = BuiltinsStringIterator::Next(ecmaRuntimeCallInfo3); in HWTEST_F_L0()
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DramdaToolsNoInfinite.ts72 type Next<I extends any[]> =
79 0: Iterator<Index, Next<From>, Next<I>>;
88 0: Reverse<T, Prepend<T[Pos<I>], R>, Next<I>>;
116 …GapsOf<T1, T2, GapOf<T1, T2, TN, I> extends infer G ? Tools.Cast<G, any[]> : never, Tools.Next<I>>;
DramdaToolsNoInfinite2.ts168 import { Next } from "Iteration/Next";
177 0: __ListOf<O, Exclude<K, Key<I>>, PickIfEntry<O, LN, I>, Next<I>>;
293 import { Next } from "Iteration/Next";
303 0: __Reverse<L, Prepend<LO, L[Pos<I>]>, Next<I>>;
366 export type Next<I extends Iteration> = IterationMap[I[1]]; alias
559 import { Next } from "Iteration/Next";
575 0: _GapsOf<L1, L2, GapOf<L1, L2, LN, I>, Next<I>>;
/arkcompiler/runtime_core/libpandabase/os/
Dstacktrace.cpp58 std::string Next(char delim = ' ') in Next() function in panda::Tokenizer
241 std::string start_addr = tokenizer.Next('-'); in ScanVma()
242 std::string end_addr = tokenizer.Next(); in ScanVma()
243 std::string rights = tokenizer.Next(); in ScanVma()
245 std::string offset = tokenizer.Next(); in ScanVma()
246 tokenizer.Next(); in ScanVma()
247 tokenizer.Next(); in ScanVma()
248 std::string obj_filename = tokenizer.Next(); in ScanVma()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_iterator.cpp30 JSTaggedValue BuiltinsIterator::Next([[maybe_unused]] EcmaRuntimeCallInfo *argv) in Next() function in panda::ecmascript::builtins::BuiltinsIterator
32 BUILTINS_API_TRACE(argv->GetThread(), Iterator, Next); in Next()
Dbuiltins_async_iterator.cpp30 JSTaggedValue BuiltinsAsyncIterator::Next([[maybe_unused]] EcmaRuntimeCallInfo *argv) in Next() function in panda::ecmascript::builtins::BuiltinsAsyncIterator
32 BUILTINS_API_TRACE(argv->GetThread(), AsyncIterator, Next); in Next()
Dbuiltins_string_iterator.h25 static JSTaggedValue Next(EcmaRuntimeCallInfo *argv);
Dbuiltins_async_from_sync_iterator.h28 static JSTaggedValue Next(EcmaRuntimeCallInfo *argv);
Dbuiltins_string_iterator.cpp27 JSTaggedValue BuiltinsStringIterator::Next(EcmaRuntimeCallInfo *argv) in Next() function in panda::ecmascript::builtins::BuiltinsStringIterator
30 BUILTINS_API_TRACE(argv->GetThread(), StringIterator, Next); in Next()
Dbuiltins_async_iterator.h27 static JSTaggedValue Next(EcmaRuntimeCallInfo *argv);
Dbuiltins_iterator.h27 static JSTaggedValue Next(EcmaRuntimeCallInfo *argv);
/arkcompiler/runtime_core/libpandabase/utils/
Dbit_memory_region.h56 Next(1); in Iterator()
62 Next(1);
80 it.Next(n);
87 it.Next(-n);
96 void Next(uint32_t val) in Next() function
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_api_arraylist_iterator_test.cpp91 HWTEST_F_L0(JSAPIArrayListIteratorTest, Next) in HWTEST_F_L0() argument
108 JSTaggedValue result = JSAPIArrayListIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
130 JSTaggedValue result = JSAPIArrayListIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
Djs_api_vector_iterator_test.cpp143 HWTEST_F_L0(JSAPIVectorIteratorTest, Next) in HWTEST_F_L0() argument
164 JSTaggedValue result = JSAPIVectorIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
201 JSTaggedValue result = JSAPIVectorIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
214 JSTaggedValue result = JSAPIVectorIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
Djs_api_deque_iterator_test.cpp87 HWTEST_F_L0(JSAPIDequeIteratorTest, Next) in HWTEST_F_L0() argument
109 JSTaggedValue result = JSAPIDequeIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
144 JSTaggedValue result = JSAPIDequeIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
157 JSTaggedValue result = JSAPIDequeIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
Djs_api_stack_iterator_test.cpp86 HWTEST_F_L0(JSAPIStackIteratorTest, Next) in HWTEST_F_L0() argument
108 JSTaggedValue result = JSAPIStackIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
143 JSTaggedValue result = JSAPIStackIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
156 JSTaggedValue result = JSAPIStackIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
Djs_api_queue_iterator_test.cpp90 HWTEST_F_L0(JSAPIQueueIteratorTest, Next) in HWTEST_F_L0() argument
112 JSTaggedValue result = JSAPIQueueIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
150 JSTaggedValue result = JSAPIQueueIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
163 JSTaggedValue result = JSAPIQueueIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
Dasync_generator_helper.h24 static JSTaggedValue Next(JSThread *thread, const JSHandle<GeneratorContext> &genContext,
Dgenerator_helper.h27 …static JSHandle<JSObject> Next(JSThread *thread, const JSHandle<GeneratorContext> &genContext, JST…
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_vector_iterator.h30 static JSTaggedValue Next(EcmaRuntimeCallInfo *argv);
Djs_api_queue_iterator.h30 static JSTaggedValue Next(EcmaRuntimeCallInfo *argv);
Djs_api_stack_iterator.h30 static JSTaggedValue Next(EcmaRuntimeCallInfo *argv);
Djs_api_arraylist_iterator.h34 static JSTaggedValue Next(EcmaRuntimeCallInfo *argv);
Djs_api_deque_iterator.h38 static JSTaggedValue Next(EcmaRuntimeCallInfo *argv);

12345