Home
last modified time | relevance | path

Searched refs:comma (Results 1 – 25 of 51) sorted by relevance

123

/arkcompiler/ets_frontend/ets2panda/linter/docs/rules/
Drecipe71.md1 # The comma operator ``,`` is supported only in ``for`` loops
3 Rule ``arkts-no-comma-outside-loops``
7 ArkTS supports the comma operator ``,`` only in ``for`` loops. Otherwise,
36 // Use explicit execution order instead of the comma operator:
/arkcompiler/ets_frontend/ets2panda/linter-4.2/docs/rules/
Drecipe71.md1 # The comma operator ``,`` is supported only in ``for`` loops
3 Rule ``arkts-no-comma-outside-loops``
7 ArkTS supports the comma operator ``,`` only in ``for`` loops. Otherwise,
36 // Use explicit execution order instead of the comma operator:
/arkcompiler/ets_frontend/ets2panda/compiler/debugger/
DdebuginfoDumper.cpp27 static const char *PutComma(bool comma) in PutComma() argument
29 return comma ? "," : ""; in PutComma()
33 void DebugInfoDumper::WrapArray(const char *name, const std::vector<T> &array, bool comma) in WrapArray() argument
41 ss_ << "]" << PutComma(comma); in WrapArray()
88 ss_ << "]" << PutComma(comma); in WrapArray()
208 void DebugInfoDumper::WriteProperty(const char *key, const Value &value, bool comma) in WriteProperty() argument
222 comma ? ss_ << "," : ss_ << std::endl; in WriteProperty()
DdebuginfoDumper.h38 void WrapArray(const char *name, const std::vector<T> &array, bool comma = true);
41 void WriteProperty(const char *key, const Value &value, bool comma = true);
/arkcompiler/ets_frontend/es2panda/compiler/debugger/
DdebuginfoDumper.cpp27 static const char *PutComma(bool comma) in PutComma() argument
29 return comma ? "," : ""; in PutComma()
33 void DebugInfoDumper::WrapArray(const char *name, const std::vector<T> &array, bool comma) in WrapArray() argument
41 ss_ << "]" << PutComma(comma); in WrapArray()
91 ss_ << "]" << PutComma(comma); in WrapArray()
211 void DebugInfoDumper::WriteProperty(const char *key, const Value &value, bool comma) in WriteProperty() argument
225 comma ? ss_ << "," : ss_ << std::endl; in WriteProperty()
DdebuginfoDumper.h38 void WrapArray(const char *name, const std::vector<T> &array, bool comma = true);
41 void WriteProperty(const char *key, const Value &value, bool comma = true);
/arkcompiler/runtime_core/static_core/verification/absint/
Dreg_context.h201 bool comma = false; in DumpRegs() local
202 EnumerateAllRegs([&comma, &logString, &tsys](int num, const auto &absTypeVal) { in DumpRegs()
206 if (comma) { in DumpRegs()
210 comma = true; in DumpRegs()
/arkcompiler/ets_frontend/ets2panda/test/parser/ets/
Denum5-expected.txt1 SyntaxError: Missing comma between enum constants [enum5.ets:18:3]
/arkcompiler/ets_frontend/test262/
DdynamicImport_tests.txt7 nested-else-braceless-not-extensible-no-trailing-comma.js
16 nested-async-function-return-await-not-extensible-no-trailing-comma.js
27 top-level-not-extensible-no-trailing-comma.js
28 nested-async-function-not-extensible-no-trailing-comma.js
29 nested-if-not-extensible-no-trailing-comma.js
31 nested-else-not-extensible-no-trailing-comma.js
42 nested-async-arrow-function-await-not-extensible-no-trailing-comma.js
47 nested-arrow-assignment-expression-not-extensible-no-trailing-comma.js
48 nested-if-braceless-not-extensible-no-trailing-comma.js
50 nested-async-function-await-not-extensible-no-trailing-comma.js
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcompilation_driver.cpp226 const char comma = ','; in ParseOption() local
233 std::vector<std::string> methodNameVec = SplitString(methodNameList, comma); in ParseOption()
235 posComma = str.find_last_of(comma); in ParseOption()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/07.object_literal/
Dtrailing_comma_is_ignored.ets17 desc: The comma at the end of the composite class is ignored
/arkcompiler/runtime_core/assembler/
Dassembly-parser.cpp1370 bool comma = false; in ParseOperandSignatureTypesList() local
1381 if (comma) { in ParseOperandSignatureTypesList()
1385 if (!ParseFunctionArgComma(comma)) { in ParseOperandSignatureTypesList()
2162 bool Parser::ParseFunctionArgComma(bool &comma) in ParseFunctionArgComma() argument
2164 if (comma && *context_ != Token::Type::DEL_COMMA) { in ParseFunctionArgComma()
2169 if (comma) { in ParseFunctionArgComma()
2173 comma = true; in ParseFunctionArgComma()
2183 bool comma = false; in ParseFunctionArgs() local
2194 if (!ParseFunctionArgComma(comma)) { in ParseFunctionArgs()
2288 bool Parser::ParseMetaListComma(bool &comma, bool eq) in ParseMetaListComma() argument
[all …]
Dassembly-parser.h148 bool ParseFunctionArgComma(bool &comma);
152 bool ParseMetaListComma(bool &comma, bool eq);
/arkcompiler/runtime_core/static_core/assembler/
Dassembly-parser.cpp1416 bool comma = false; in ParseOperandSignatureTypesList() local
1427 if (comma) { in ParseOperandSignatureTypesList()
1431 if (!ParseFunctionArgComma(comma)) { in ParseOperandSignatureTypesList()
2247 bool Parser::ParseFunctionArgComma(bool &comma) in ParseFunctionArgComma() argument
2249 if (comma && *context_ != Token::Type::DEL_COMMA) { in ParseFunctionArgComma()
2254 if (comma) { in ParseFunctionArgComma()
2258 comma = true; in ParseFunctionArgComma()
2268 bool comma = false; in ParseFunctionArgs() local
2279 if (!ParseFunctionArgComma(comma)) { in ParseFunctionArgs()
2373 bool Parser::ParseMetaListComma(bool &comma, bool eq) in ParseMetaListComma() argument
[all …]
Dassembly-parser.h149 bool ParseFunctionArgComma(bool &comma);
153 bool ParseMetaListComma(bool &comma, bool eq);
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/test-lists/test262/
Dtest262-excluded-ARM64-IRTOC.txt6 language/expressions/comma/tco-final.js
Dtest262-ignored-LLVM.txt6 language/expressions/comma/tco-final.js
Dtest262-ignored-IRTOC.txt6 language/expressions/comma/tco-final.js
Dtest262-ignored-JIT.txt6 language/expressions/comma/tco-final.js
Dtest262-ignored-AOT.txt4 language/expressions/comma/tco-final.js
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
Dcg_option.cpp674 size_t comma = tmpStr.find_first_of(",", 0); in SetRange() local
677 if (comma != std::string::npos) { in SetRange()
678 subRange.begin = std::stoul(tmpStr.substr(0, comma), nullptr); in SetRange()
679 … subRange.end = std::stoul(tmpStr.substr(comma + 1, std::string::npos - (comma + 1)), nullptr); in SetRange()
/arkcompiler/runtime_core/tests/cts-coverage-tool/
DREADME.md23 --spec (-s) - ISA spec files, comma-separated, merged into one if multiple specified, required
/arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/
DREADME.md23 --spec (-s) - ISA spec files, comma-separated, merged into one if multiple specified, required
/arkcompiler/runtime_core/static_core/scripts/third-party-lists/
Dpublic19 # * Fields in a record are separated by comma (,) without surrounding whitespaces
/arkcompiler/runtime_core/scripts/third-party-lists/
Dpublic19 # * Fields in a record are separated by comma (,) without surrounding whitespaces

123