| /arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/ |
| D | g1_analytics.h | 69 uint64_t PredictTime(size_t volume, ark::Sequence rateSeq) const in PredictTime() 94 ark::Sequence allocationRateSeq_; 95 ark::Sequence copiedBytesSeq_; 96 ark::Sequence copyingBytesRateSeq_; 97 ark::Sequence remsetRefsSeq_; 98 ark::Sequence remsetRefsPerChunkSeq_; 99 ark::Sequence liveObjecstSeq_; 100 ark::Sequence markingRateSeq_; 101 ark::Sequence updateRefsRateSeq_; 102 ark::Sequence promotionSeq_; [all …]
|
| D | g1_predictions.h | 19 #include "libpandabase/utils/sequence.h" 26 double Predict(const ark::Sequence &seq) const in Predict()
|
| /arkcompiler/ets_frontend/es2panda/ir/expressions/ |
| D | sequenceExpression.h | 34 explicit SequenceExpression(ArenaVector<Expression *> &&sequence) in SequenceExpression() argument 35 : Expression(AstNodeType::SEQUENCE_EXPRESSION), sequence_(std::move(sequence)) in SequenceExpression() 39 const ArenaVector<Expression *> &Sequence() const in Sequence() function 44 ArenaVector<Expression *> &Sequence() in Sequence() function
|
| /arkcompiler/ets_frontend/ets2panda/ast_verifier/ |
| D | sequenceExpressionHasLastType.cpp | 27 const auto *last = expr->Sequence().back(); in operator ()() 29 ctx.AddCheckMessage("Sequence expression type is null", *expr, expr->Start()); in operator ()() 33 ctx.AddCheckMessage("Sequence expression last type is null", *last, last->Start()); in operator ()() 37 …ctx.AddCheckMessage("Sequence expression type and last expression type are not the same", *expr, e… in operator ()()
|
| /arkcompiler/ets_frontend/ets2panda/ir/expressions/ |
| D | sequenceExpression.h | 33 explicit SequenceExpression(ArenaVector<Expression *> &&sequence) in SequenceExpression() argument 34 : Expression(AstNodeType::SEQUENCE_EXPRESSION), sequence_(std::move(sequence)) in SequenceExpression() 40 [[nodiscard]] const ArenaVector<Expression *> &Sequence() const noexcept in Sequence() function 45 [[nodiscard]] ArenaVector<Expression *> &Sequence() noexcept in Sequence() function
|
| D | sequenceExpression.cpp | 30 for (auto *sequence : other.sequence_) { in SequenceExpression() local 31 sequence_.emplace_back(sequence->Clone(allocator, this)->AsExpression()); in SequenceExpression()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/inlining_test/ |
| D | inlining_order_1.sts | 16 //! CHECKER Check inlining sequence without profiling 21 //! CHECKER Check inlining sequence with profiling 26 //! CHECKER Check inlining sequence in AOT
|
| D | inlining_order_3.sts | 17 //! CHECKER Check inlining sequence without profiling 24 //! CHECKER Check inlining sequence with profiling 31 //! CHECKER Check inlining sequence with profiling (AOT)
|
| D | inlining_order_2.sts | 16 //! CHECKER Check inlining sequence without profiling 25 //! CHECKER Check inlining sequence with profiling 34 //! CHECKER Check inlining sequence with profiling (AOT)
|
| /arkcompiler/runtime_core/libpandabase/serializer/ |
| D | tuple_to_struct.h | 33 auto sequence = std::make_index_sequence<std::tuple_size_v<T>> {}; in TupleToStruct() 35 return TupleToStructImpl<Struct>(sequence, std::forward<Tuple>(tup)); in TupleToStruct()
|
| D | for_each_tuple.h | 33 auto sequence = std::make_index_sequence<std::tuple_size_v<T>> {}; in ForEachTuple() 35 ForEachTupleImpl(std::forward<Tuple>(tuple), std::forward<F>(f), sequence); in ForEachTuple()
|
| /arkcompiler/runtime_core/static_core/libpandabase/serializer/ |
| D | tuple_to_struct.h | 33 auto sequence = std::make_index_sequence<std::tuple_size_v<T>> {}; in TupleToStruct() 35 return TupleToStructImpl<Struct>(sequence, std::forward<Tuple>(tup)); in TupleToStruct()
|
| D | for_each_tuple.h | 33 auto sequence = std::make_index_sequence<std::tuple_size_v<T>> {}; in ForEachTuple() 35 ForEachTupleImpl(std::forward<Tuple>(tuple), std::forward<F>(f), sequence); in ForEachTuple()
|
| /arkcompiler/ets_frontend/es2panda/test/parser/js/ |
| D | test_template_string-expected.txt | 1 SyntaxError: Invalid unicode escape sequence [test_template_string.js:16:18]
|
| D | test_template_string5-expected.txt | 1 SyntaxError: Invalid unicode escape sequence [test_template_string5.js:16:17]
|
| D | test_template_string3-expected.txt | 1 SyntaxError: Invalid unicode escape sequence [test_template_string3.js:16:23]
|
| D | test_template_string4-expected.txt | 1 SyntaxError: Invalid unicode escape sequence [test_template_string4.js:16:21]
|
| D | test_template_string1-expected.txt | 1 SyntaxError: Invalid character escape sequence in strict mode [test_template_string1.js:16:15]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_me/include/ |
| D | pme_function.h | 45 // key is label at beginning of lowered while code sequence 47 // key is target label of first conditional branch of lowered if code sequence
|
| /arkcompiler/ets_runtime/ecmascript/base/tests/ |
| D | utf_helper_test.cpp | 88 * @tc.desc: Judge whether an input group of symbols is a valid UTF8 coding sequence. 152 * @tc.desc: Converts a UTF16 encoding sequence encoding a character into a UTF8 encoding sequence, 153 * and returns the sequence and the byte length of the sequence. The parameter "modify" 286 * @tc.desc: Enter a string of UTF16 coded sequences and return the length of the sequence converted… 287 * sequences. "length" indicates the length of the input UTF16 sequence, and "modify" indi… 380 // The trail value of Bad sequence is invalid, not located in [0xDC00, 0xDFFF]. in HWTEST_F_L0() 402 * @tc.desc: Converts a UTF8 encoding sequence encoding a character into a UTF16 encoding sequence, … 403 * sequence and the byte length of the UTF16 encoding sequence. The parameter "combine" id… 465 * @tc.desc: Enter a string of UTF8 coded sequences and return the length of the sequence converted … 535 * @tc.desc: Input aUTF16-encoded sequence (thelength is "utf16Len"), convert part of the sequence i… [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/ |
| D | 1_intro.rst | 221 and a sequence of one or more *nonterminal* and *terminal* symbols as its 239 any nonterminal in the left-hand-side sequence for a right-hand side of the 259 - Parentheses '``(``' and '``)``' to enclose any sequence of terminals and/or 284 sequence of *expression*\ s separated by the terminal ‘``,``’ symbol. The 285 sequence must have at least one *expression*. The list is optionally 376 -- finding the longest sequence of characters that forms a valid token 424 -- a name that consists of a sequence of identifiers separated with the 478 abstract symbol (nonterminal) as its left-hand side, and a sequence 485 -- a sequence of terminal and nonterminal symbols that a programming
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/ |
| D | string_literal_01.sts | 18 /* @@? 16:13 Error SyntaxError: Invalid unicode escape sequence */
|
| /arkcompiler/runtime_core/static_core/runtime/coroutines/ |
| D | threaded_coroutine.h | 69 * launch a new one. Blocks until the created coroutine passes the init sequence. 90 * Notify the waiters that the coroutine has finished its initialization sequence.
|
| /arkcompiler/runtime_core/static_core/docs/ |
| D | assembly_format.md | 32 String literal is a sequence of any characters enclosed in `"` characters. Non-printable characters… 48 A simple identifier is a sequence of ASCII characters. Allowed characters in the sequence are: 64 A prefixed identifier is a sequence of simple identifiers delimited by the `.` char without whitesp… 264 If a function has a body, it consists of optionally labeled sequence of bytecode instructions, one … 411 func_code := <newline-separated sequence of bytecode instructions and their operands> 422 ctor_code := <newline-separated sequence of bytecode instructions and their operands>
|
| /arkcompiler/runtime_core/static_core/docs/diagrams/ |
| D | thread_pool_worker_task-sequence.plantuml | 3 title Sequence diagram for worker
|