| /arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/ |
| D | g1_analytics.h | 65 panda::Sequence allocationRateSeq_; 66 panda::Sequence copiedBytesSeq_; 67 panda::Sequence copyingBytesRateSeq_; 68 panda::Sequence scanRemsetTimeSeq_; 69 panda::Sequence liveObjecstSeq_; 70 panda::Sequence markingRateSeq_; 71 panda::Sequence updateRefsTimeSeq_; 72 panda::Sequence promotionSeq_; 73 panda::Sequence predictionErrorSeq_; 74 panda::Sequence liveObjectsSeq_;
|
| D | g1_predictions.h | 19 #include "libpandabase/utils/sequence.h" 26 double Predict(const panda::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/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/ets_runtime/ecmascript/base/tests/ |
| D | utf_helper_test.cpp | 112 * @tc.desc: Judge whether an input group of symbols is a valid UTF8 coding sequence. 176 * @tc.desc: Converts a UTF16 encoding sequence encoding a character into a UTF8 encoding sequence, 177 * and returns the sequence and the byte length of the sequence. The parameter "modify" 310 * @tc.desc: Enter a string of UTF16 coded sequences and return the length of the sequence converted… 311 * sequences. "length" indicates the length of the input UTF16 sequence, and "modify" indi… 396 // The trail value of Bad sequence is invalid, not located in [0xDC00, 0xDFFF]. in HWTEST_F_L0() 418 * @tc.desc: Converts a UTF8 encoding sequence encoding a character into a UTF16 encoding sequence, … 419 * sequence and the byte length of the UTF16 encoding sequence. The parameter "combine" id… 481 * @tc.desc: Enter a string of UTF8 coded sequences and return the length of the sequence converted … 516 * @tc.desc: Input aUTF16-encoded sequence (thelength is "utf16Len"), convert part of the sequence i… [all …]
|
| /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/runtime_core/static_core/plugins/ets/doc/spec/ |
| D | 1_intro.rst | 223 and a sequence of one or more *nonterminal* and *terminal* symbols as its 241 any nonterminal in the left-hand-side sequence for a right-hand side of the 261 - Parentheses '(' and ')' to enclose any sequence of terminals and/or 286 sequence of *expression*\ s separated by the ‘,’ terminal symbol. The 287 sequence must have at least one *expression*. The list is optionally 380 sequence of characters that form a valid token. 426 -- name that consists of a sequence of identifiers separated with the ‘.’ 480 abstract symbol (nonterminal) as its left-hand side, and a sequence 486 -- a sequence of terminal and nonterminal symbols that a programming
|
| D | 2_lexical.rst | 124 readability. Any sequence of line separators is considered a single separator. 146 always the longest sequence of characters that form a valid token. Tokens 180 An identifier is a sequence of one or more valid Unicode characters. The 588 *BigInt* literals use decimal base only. A *BigInt* literal is a sequence of 722 escape sequence 727 An escape sequence always starts with the backslash character '``\``', followed 755 sequence like ``\u005c``), 758 a bounded Unicode escape sequence like ``\u{5c}``), and 896 *Line comments* begin with the sequence of characters '//' and end with the 897 last line separator character. Any character or sequence of characters [all …]
|
| /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_frontend/es2panda/test/parser/js/ |
| 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_string-expected.txt | 1 SyntaxError: Invalid unicode escape sequence [test_template_string.js:16:18]
|
| D | test_template_string1-expected.txt | 1 SyntaxError: Invalid character escape sequence in strict mode [test_template_string1.js:16:15]
|
| /arkcompiler/ets_frontend/ets2panda/test/parser/ets/ |
| D | string_literal_01-expected.txt | 1 SyntaxError: Invalid unicode escape sequence [string_literal_01.ets:16:13]
|
| /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/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/plugins/ets/stdlib/escompat/ |
| D | Functions.ets | 139 throw new URIError("malformed URI sequence") 148 throw new URIError("malformed URI sequence") 252 throw new URIError("malformed URI sequence") 284 throw new URIError("malformed URI sequence") 290 throw new URIError("malformed URI sequence")
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | js_locale.h | 357 …icu::StringEnumeration *sequence = T::getKeywordValuesForLocale(key, icu::Locale(locale.getBaseNam… in IsWellExtension() local 360 delete sequence; in IsWellExtension() local 361 sequence = nullptr; in IsWellExtension() 365 const char *element = sequence->next(&size, status); in IsWellExtension() 368 delete sequence; in IsWellExtension() local 369 sequence = nullptr; in IsWellExtension() 372 element = sequence->next(&size, status); in IsWellExtension() 374 delete sequence; in IsWellExtension() local 375 sequence = nullptr; in IsWellExtension()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/ |
| D | x64_int_regs.def | 23 …* - User-level applications use as integer registers for passing the sequence %rdi, %rsi, %rdx, %r… 25 * - the sequence %rax, %rdx is used to return INTEGER,
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/02.lexical_elements/09.literals/03.bigint_literals/ |
| D | bigint_literals.ets | 19 BigInt literals use decimal base only. It is a sequence of digits which ends with symbol 'n'.
|