Home
last modified time | relevance | path

Searched full:strings (Results 1 – 25 of 111) sorted by relevance

12345

/arkcompiler/runtime_core/runtime/tests/
Dmultithreaded_intern_string_table_test.cpp167 void TestConcurrentInsertion(const std::array<std::array<uint8_t, 4>, TEST_ARRAY_SIZE> &strings, ui… in TestConcurrentInsertion() argument
185 table->GetOrInternString(strings[current_array_item].data(), 2, ctx); in TestConcurrentInsertion()
195 std::array<std::array<uint8_t, 4>, TEST_ARRAY_SIZE> strings; in TEST_F() local
202 strings[i] = {0xc2, dist(engine), dist(engine), 0x00}; in TEST_F()
206 … threads[i] = std::thread(TestConcurrentInsertion, std::ref(strings), std::ref(array_item), this); in TEST_F()
Darray_test.cpp29 // We need to create a runtime instance to be able to create strings. in ArrayTest()
/arkcompiler/ets_frontend/merge_abc/src/
DassemblyProgramProto.cpp43 for (const auto &str : program.strings) { in Serialize()
83 for (const auto &protoString : protoProgram.strings()) { in Deserialize()
84 program.strings.insert(protoString); in Deserialize()
/arkcompiler/runtime_core/bytecode_optimizer/
Dir_interface.h46 auto it = maps_->strings.find(offset); in GetStringIdByOffset()
47 ASSERT(it != maps_->strings.cend()); in GetStringIdByOffset()
55 ASSERT(it != maps_->strings.cend()); in GetLiteralArrayByOffset()
/arkcompiler/runtime_core/runtime/include/coretypes/
Dstring.h90 * Methods for uncompressed strings (UTF16)
104 * Methods for compresses strings (MUTF8 or LATIN1)
246 * Compares strings by bytes, It doesn't check canonical unicode equivalence.
250 * Compares strings by bytes, It doesn't check canonical unicode equivalence.
256 * Compares strings by bytes, It doesn't check canonical unicode equivalence.
/arkcompiler/runtime_core/assembler/templates/
Dins_emit.h.erb24 const std::unordered_map<std::string, panda_file::StringItem *> &strings,
79 % ops << "strings.find(ids[#{num_id}])->second->GetIndex(method)"
112 if ((ids.size() == 0) || (strings.find(ids[<%= num_id %>]) == strings.cend())) {
/arkcompiler/ets_frontend/es2panda/test/parser/js/
Dtest-multi-line-string-expected.txt1 SyntaxError: Newline is not allowed in strings [test-multi-line-string.js:16:610]
/arkcompiler/runtime_core/verification/util/
Ddescriptor_string.h36 // NB!: non-owning wrapper for mutf8 strings
72 // Assumption: probability of different strings with same len and hash is very low
/arkcompiler/runtime_core/compiler/docs/
Daot_resolve_string.md29 - `--resolve-string-aot-threshold` controls how many strings could be save to PLT-slots (option app…
54 PLT-slots referencing a subset of strings references by the `StringTable`).
/arkcompiler/ets_frontend/ts2panda/src/
Dpandasm.ts127 public strings: Set<string>; property in Program
139 this.strings = new Set();
150 this.strings_arr = Array.from(this.strings);
Dts2panda.ts76 static strings: Set<string> = new Set(); property in Ts2Panda
138 Ts2Panda.strings.add(operand);
166 let strings_arr = Array.from(Ts2Panda.strings);
530 Ts2Panda.strings.clear();
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dlda.str.yaml81 # pandasm expects strings in mutf8 format, not \u or \U
333 …description: Check that two strings created by 'lda.str' instructions are the same in the string c…
346 # empty strings
386 …description: Check that two strings created by 'lda.str' instructions are different in the string …
Du32tou1.yaml67 …Load different values (objects, strings, types, 64-bit floating point values, 64-bit integer value…
Di64toi32.yaml74 …Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer value…
Du32tou16.yaml66 …Load different values (objects, strings, types, 64-bit floating point values, 64-bit integer value…
Du32toi8.yaml71 …Load different values (objects, strings, types, 64-bit floating point values, 64-bit integer value…
Du32tof32.yaml84 …Load different values (objects, strings, types, 64-bit floating point values, 64-bit integer value…
Di64tou1.yaml75 …Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer value…
/arkcompiler/ets_runtime/ecmascript/
Decma_string.h99 * Methods for uncompressed strings (UTF16):
118 * Methods for compresses strings (UTF8 or LATIN1):
353 * Compares strings by bytes, It doesn't check canonical unicode equivalence.
357 * Two strings have the same type of utf encoding format.
361 * Compares strings by bytes, It doesn't check canonical unicode equivalence.
366 * Compares strings by bytes, It doesn't check canonical unicode equivalence.
/arkcompiler/ets_runtime/ecmascript/base/tests/
Djson_parser_test.cpp117 * Test with for Nesting of numbers, strings, objects, arrays, Booleans.
137 * Test with for Nesting of numbers, strings, arrays.
164 * Test without for Nesting of numbers, strings, objects.
/arkcompiler/ets_frontend/merge_abc/protos/
DassemblyProgram.proto46 repeated bytes strings = 6; field
/arkcompiler/runtime_core/tests/verifier-tests/
Dbug_2107_1.pa37 # Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer va…
Dbug_2107_2.pa39 # Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer va…
/arkcompiler/runtime_core/assembler/
Dassembly-program.h38 std::set<std::string> strings; member
/arkcompiler/ets_runtime/
DREADME.md46 * Functions cannot be dynamically created using strings, such as new Function("console.log(1);")).

12345