| /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_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. 162 * @tc.desc: Converts a UTF16 encoding sequence encoding a character into a UTF8 encoding sequence, 163 * and returns the sequence and the byte length of the sequence. The parameter "modify" 296 * @tc.desc: Enter a string of UTF16 coded sequences and return the length of the sequence converted… 297 * sequences. "length" indicates the length of the input UTF16 sequence, and "modify" indi… 382 // The trail value of Bad sequence is invalid, not located in [0xDC00, 0xDFFF]. in HWTEST_F_L0() 404 * @tc.desc: Converts a UTF8 encoding sequence encoding a character into a UTF16 encoding sequence, … 405 * sequence and the byte length of the UTF16 encoding sequence. The parameter "combine" id… 467 * @tc.desc: Enter a string of UTF8 coded sequences and return the length of the sequence converted … 502 * @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/ets_runtime/ecmascript/ |
| D | js_locale.h | 381 …icu::StringEnumeration *sequence = T::getKeywordValuesForLocale(key, icu::Locale(locale.getBaseNam… in IsWellExtension() local 384 delete sequence; in IsWellExtension() local 385 sequence = nullptr; in IsWellExtension() 389 const char *element = sequence->next(&size, status); in IsWellExtension() 392 delete sequence; in IsWellExtension() local 393 sequence = nullptr; in IsWellExtension() 396 element = sequence->next(&size, status); in IsWellExtension() 398 delete sequence; in IsWellExtension() local 399 sequence = nullptr; in IsWellExtension()
|
| /arkcompiler/runtime_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… 315 If a function has a body, it consists of optionally labeled sequence of bytecode instructions, one … 458 func_code := <newline-separated sequence of bytecode instructions and their operands>
|
| D | ir_format.md | 261 … of the approaches to make iterating more effective is to store data in sequence container, such a… 267 …ount doesn't depend on the instruction type. Therefore storing users in sequence container has one… 269 …on instruction type and mostly have fixed count. Thus, they should be stored in sequence container.
|
| /arkcompiler/runtime_core/libpandabase/ |
| D | README.md | 114 Tail argument is a sequence of positinal arguments values. Function ```PushBackTail()``` adds an ar… 133 …d, first argument without double dash prefix concidered as a begin of positional arguments sequence
|
| /arkcompiler/ets_runtime/ecmascript/base/ |
| D | bit_helper.h | 130 /// sequence of ones starting at the least significant bit with the remainder 138 /// non-empty sequence of ones with the remainder zero (64 bit version.)
|
| D | utf_helper.cpp | 159 // Bad sequence in ConvertUtf16ToUtf8()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/ |
| D | assembler_aarch64.cpp | 397 // One to up three instruction sequence. in Mov() 455 /// starts a contiguous sequence of ones if we look at the bits from the LSB 466 /// ends a contiguous sequence of ones if we look at the bits from the LSB 494 // Try to find the chunks which start/end a contiguous sequence of ones. in TrySequenceOfOnes() 511 // Outside of the contiguous sequence of ones everything needs to be zero. in TrySequenceOfOnes() 516 // If our contiguous sequence of ones wraps around from the MSB into the LSB, in TrySequenceOfOnes() 517 // just swap indices and pretend we are materializing a contiguous sequence in TrySequenceOfOnes() 518 // of zeros surrounded by a contiguous sequence of ones. in TrySequenceOfOnes() 530 // contiguous sequence of ones. in TrySequenceOfOnes()
|
| /arkcompiler/ets_frontend/ts2panda/tests/ |
| D | regAllocator.test.ts | 228 it("VReg sequence of CalliDynRange is not continuous", function () { 250 it("VReg sequence of DynRange is not continuous", function () {
|
| /arkcompiler/runtime_core/libpandabase/utils/ |
| D | json_parser.cpp | 143 // Chunk ends with an unfinished escape sequence. in UnescapeStringChunk() 184 // Invalid escape sequence. in UnescapeStringChunk()
|
| D | utf.cpp | 54 * Convert mutf8 sequence to utf16 pair and return pair: [utf16 code point, mutf8 size]. 55 * In case of invalid sequence return first byte of it.
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | lda.str.yaml | 74 # unknown escape sequence 86 # invalid mutf8 sequence
|
| /arkcompiler/ets_frontend/es2panda/parser/ |
| D | expressionParser.cpp | 416 auto &sequence = expr->AsSequenceExpression()->Sequence(); in ConvertToArrowParameter() local 418 for (auto *it : sequence) { in ConvertToArrowParameter() 422 params.swap(sequence); in ConvertToArrowParameter() 689 for (auto *seq : lhsExpression->AsSequenceExpression()->Sequence()) { in ParseAssignmentExpression() 2184 ArenaVector<ir::Expression *> sequence(Allocator()->Adapter()); in ParseSequenceExpression() local 2185 sequence.push_back(startExpr); in ParseSequenceExpression() 2192 sequence.push_back(expr); in ParseSequenceExpression() 2200 … sequence.push_back(ParseExpression(acceptTsParam ? ExpressionParseFlags::ALLOW_TS_PARAM_TOKEN in ParseSequenceExpression() 2204 lexer::SourcePosition end = sequence.back()->End(); in ParseSequenceExpression() 2205 auto *sequenceNode = AllocNode<ir::SequenceExpression>(std::move(sequence)); in ParseSequenceExpression()
|
| /arkcompiler/runtime_core/disassembler/tests/ |
| D | labels_test.cpp.in | 83 << "label sequence is broken";
|
| /arkcompiler/runtime_core/compiler/docs/ |
| D | cleanup_doc.md | 5 It also removes empty basic blocks when it is possible and merges a linear basic block sequence to … 8 Picture of merging a linear basic block sequence:
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_locale.cpp | 318 …unicode_language_id production of locale does not contain the ["-" unicode_script_subtag] sequence, in GetScript() 347 …unicode_language_id production of locale does not contain the ["-" unicode_region_subtag] sequence, in GetRegion()
|
| /arkcompiler/ets_frontend/ts2panda/src/ |
| D | syntaxCheckHelper.ts | 57 // Like \\1, should not be treated as an octal escape sequence
|
| D | regAllocator.ts | 132 … throw Error("Warning: VReg sequence of DynRange is not continuous. Please adjust it now.");
|
| /arkcompiler/ets_frontend/es2panda/lexer/ |
| D | lexer.cpp | 69 ThrowError("Invalid unicode escape sequence"); in ScanUnicodeCodePointEscape() 74 ThrowError("Invalid unicode escape sequence"); in ScanUnicodeCodePointEscape() 610 ThrowError("Invalid character escape sequence in strict mode"); in ScanStringUnicodePart()
|
| D | lexer.h | 314 ThrowError("Invalid unicode escape sequence"); in ScanHexEscape()
|
| /arkcompiler/runtime_core/compiler/optimizer/code_generator/ |
| D | spill_fill_encoder.cpp | 190 // There is possible to have sequence to intrinsics with no getter/setter in interpreter: in EncodeRegisterToX()
|
| D | encoder.md | 145 /* == Sequence for create and configure encoder ==*/
|