Home
last modified time | relevance | path

Searched defs:length (Results 1 – 25 of 525) sorted by relevance

12345678910>>...21

/arkcompiler/ets_frontend/ets2panda/bindings/test/expected/
DgetDefinitionAtPosition.json5 "length": 1 number
10 "length": 1 number
15 "length": 1 number
20 "length": 3 number
25 "length": 1 number
30 "length": 3 number
35 "length": 1 number
40 "length": 1 number
45 "length": 3 number
50 "length": 4 number
[all …]
DgetDocumentHighlights.json11 "length": 3 number
15 "length": 0 number
23 "length": 3 number
27 "length": 0 number
35 "length": 3 number
39 "length": 0 number
56 "length": 3 number
60 "length": 0 number
68 "length": 3 number
72 "length": 0 number
[all …]
DgetReferencesAtPosition.json6 "length": 1 number
13 "length": 1 number
18 "length": 1 number
23 "length": 1 number
28 "length": 1 number
33 "length": 1 number
40 "length": 1 number
45 "length": 1 number
50 "length": 1 number
DgetSpanOfEnclosingComment.json4 "length": 0 number
8 "length": 6 number
12 "length": 9 number
DgetFileReferences.json6 "length": 29 number
11 "length": 29 number
18 "length": 29 number
23 "length": 29 number
/arkcompiler/runtime_core/static_core/libpandabase/utils/
Dbit_memory_stream.h33 void EnsureSpace(size_t length) in EnsureSpace()
38 void Write(size_t value, size_t length) in Write()
49 void Write(uint32_t *ptr, size_t payloadLength, size_t length) in Write()
90 T Read(size_t length) in Read()
98 BitMemoryRegion ReadRegion(size_t length) in ReadRegion()
/arkcompiler/runtime_core/libpandabase/utils/
Dbit_memory_stream.h33 void EnsureSpace(size_t length) in EnsureSpace()
38 void Write(size_t value, size_t length) in Write()
49 void Write(uint32_t *ptr, size_t payload_length, size_t length) in Write()
90 T Read(size_t length) in Read()
98 BitMemoryRegion ReadRegion(size_t length) in ReadRegion()
Dbit_memory_region.h152 Read(size_t offset, size_t length) const in Read()
193 T Pop(size_t length) in Pop()
201 void Write(uint32_t value, size_t offset, size_t length) in Write()
226 BitMemoryRegion Subregion(size_t offset, size_t length) in Subregion()
233 BitMemoryRegion Subregion(size_t offset, size_t length) const in Subregion()
245 size_t Popcount(size_t first, size_t length) const in Popcount()
/arkcompiler/ets_runtime/test/moduletest/arrayfrom/
Darrayfrom.js116 get length() { getter
120 set length(x) { setter
208 let res = Array.from({length : 3}, () => {}); property
213 let res = Array.from({length : 3}, () => ({})); property
218 let res = Array.from({length : 3}, () => []); property
223 let res = Array.from({length : 3}, () => [1,2,3]); property
228 let res = Array.from({length : 3}, () => 0); property
235 let res = Array.from({length : len}, () => num); property
258 let arrayLike = {0:1.1, 1:12, 2:'ss', length: 3} property
264 let res = Array.from({length : 3}, (_, index) => [index * 2]); property
[all …]
/arkcompiler/ets_frontend/ets2panda/test/unit/lsp/
Dclassifier_test.cpp32 size_t const length = 1; in TEST_F() local
51 size_t const length = 5; in TEST_F() local
70 size_t const length = 1; in TEST_F() local
89 size_t const length = 1; in TEST_F() local
108 size_t const length = 3; in TEST_F() local
127 size_t const length = 1; in TEST_F() local
145 size_t const length = 1; in TEST_F() local
163 size_t const length = 5; in TEST_F() local
182 size_t const length = 28; in TEST_F() local
209 size_t const length = 28; in TEST_F() local
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/benchmarks/interop_js/array_map_reduce/map/bu_d2d/
DrandomArray.js16 function generateRandomString(length) { argument
27 function generateRandomArray(length, stringLength, arr) { argument
/arkcompiler/ets_runtime/ecmascript/
Djs_bigint-inl.h24 JSHandle<BigInt> BigInt::CreateBigint(JSThread *thread, uint32_t length) in CreateBigint()
37 JSHandle<BigInt> BigInt::CreateRawBigInt(JSThread *thread, uint32_t length) in CreateRawBigInt()
49 …andle<BigInt> BigInt::CreateSubBigInt(JSThread *thread, const JSHandle<BigInt>& x, uint32_t length) in CreateSubBigInt()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_sendable_arraybuffer_test.cpp39 size_t length = 5; in HWTEST_F_L0() local
73 size_t length = 5; in HWTEST_F_L0() local
100 size_t length = 5; in HWTEST_F_L0() local
119 size_t length = 5; in HWTEST_F_L0() local
138 size_t length = 5; in HWTEST_F_L0() local
162 size_t length = 5; in HWTEST_F_L0() local
186 size_t length = 5; in HWTEST_F_L0() local
202 size_t length = 5; in HWTEST_F_L0() local
/arkcompiler/runtime_core/static_core/runtime/coretypes/
Darray.cpp28 static Array *AllocateArray(ark::BaseClass *arrayClass, size_t elemSize, ArraySizeT length, ark::Sp… in AllocateArray()
50 Array *Array::Create(ark::Class *arrayClass, const uint8_t *data, ArraySizeT length, ark::SpaceType… in Create()
72 Array *Array::Create(ark::Class *arrayClass, ArraySizeT length, ark::SpaceType spaceType, bool pinn… in Create()
91 Array *Array::Create(DynClass *dynarrayclass, ArraySizeT length, ark::SpaceType spaceType, bool pin… in Create()
110 Array *Array::CreateTagged(const PandaVM *vm, ark::BaseClass *arrayClass, ArraySizeT length, ark::S… in CreateTagged()
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_vector.cpp30 uint32_t length = vector->GetSize(); in Add() local
44 uint32_t length = vector->GetSize(); in Insert() local
104 uint32_t length = vector->GetSize(); in GetIndexFrom() local
128 uint32_t length = GetSize(); in GetLastElement() local
150 uint32_t length = vector->GetSize(); in GetLastIndexFrom() local
171 uint32_t length = vector->GetSize(); in Remove() local
185 uint32_t length = vector->GetSize(); in RemoveByIndex() local
207 int32_t length = static_cast<int32_t>(vector->GetSize()); in RemoveByRange() local
234 int32_t length = static_cast<int32_t>(vector->GetSize()); in SubVector() local
262 uint32_t length = vector->GetSize(); in ToString() local
[all …]
Djs_api_arraylist.cpp29 uint32_t length = arrayList->GetLength(thread).GetArrayLength(); in Add() local
41 int length = arrayList->GetLength(thread).GetInt(); in Insert() local
61 int length = arrayList->GetLength(thread).GetInt(); in Clear() local
76 uint32_t length = obj->GetSize(thread); in Clone() local
99 int length = arrayList->GetLength(thread).GetInt(); in IncreaseCapacityTo() local
111 uint32_t length = arrayList->GetLength(thread).GetArrayLength(); in TrimToCurrentLength() local
149 uint32_t length = arrayList->GetLength(thread).GetArrayLength(); in GetIndexOf() local
165 int length = arrayList->GetLength(thread).GetInt(); in GetLastIndexOf() local
176 int length = arrayList->GetLength(thread).GetInt(); in RemoveByIndex() local
206 uint32_t length = arrayList->GetSize(thread); in Remove() local
[all …]
/arkcompiler/ets_runtime/test/moduletest/objectcloneproperties/
Dobjectcloneproperties.js27 length: 1, property
32 get length() {throw "should not even consider the length property"}, getter
38 length: 4, property
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ani/tests/object_ops/
Dobject_get_property_by_name_int_test.cpp33 ani_int length = 0U; in TEST_F() local
51 ani_int length = 0U; in TEST_F() local
59 ani_int length = 0U; in TEST_F() local
66 ani_int length = 0U; in TEST_F() local
74 ani_int length = 0U; in TEST_F() local
Dobject_get_property_by_name_short_test.cpp33 ani_short length = 0U; in TEST_F() local
51 ani_short length = 0U; in TEST_F() local
59 ani_short length = 0U; in TEST_F() local
68 ani_short length = 0U; in TEST_F() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
Dstd_core_gc.cpp185 [[nodiscard]] static ResArrayType *StdGCAllocatePinnedPrimitiveTypeArray(EtsLong length) in StdGCAllocatePinnedPrimitiveTypeArray()
213 extern "C" EtsBooleanArray *StdGCAllocatePinnedBooleanArray(EtsLong length) in StdGCAllocatePinnedBooleanArray()
218 extern "C" EtsByteArray *StdGCAllocatePinnedByteArray(EtsLong length) in StdGCAllocatePinnedByteArray()
223 extern "C" EtsCharArray *StdGCAllocatePinnedCharArray(EtsLong length) in StdGCAllocatePinnedCharArray()
228 extern "C" EtsShortArray *StdGCAllocatePinnedShortArray(EtsLong length) in StdGCAllocatePinnedShortArray()
233 extern "C" EtsIntArray *StdGCAllocatePinnedIntArray(EtsLong length) in StdGCAllocatePinnedIntArray()
238 extern "C" EtsLongArray *StdGCAllocatePinnedLongArray(EtsLong length) in StdGCAllocatePinnedLongArray()
243 extern "C" EtsFloatArray *StdGCAllocatePinnedFloatArray(EtsLong length) in StdGCAllocatePinnedFloatArray()
248 extern "C" EtsDoubleArray *StdGCAllocatePinnedDoubleArray(EtsLong length) in StdGCAllocatePinnedDoubleArray()
/arkcompiler/runtime_core/common_interfaces/objects/string/
Dline_string-inl.h37 uint32_t length = str->GetLength(); in ObjectSize() local
43 uint32_t length = str->GetLength(); in DataSize() local
50 int32_t length = static_cast<int32_t>(GetLength()); in Get() local
/arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/test_cases/java_test_framework/java_cases/
DClassTest.java31 private double length; field in Rectangle
40 public Rectangle(double length, double width) { in Rectangle()
/arkcompiler/jsvm/src/
Djsvm_reference.h165 const size_t length, in ExternalOneByteStringResource()
175 size_t length() const override in length() function
189 const size_t length, in ExternalStringResource()
200 size_t length() const override in length() function
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ani/tests/string_ops/
Dstring_new_utf16_test.cpp45 size_t length = sizeof(example) / sizeof(example[0U]) - 1U; in TEST_F() local
54 size_t length = sizeof(example) / sizeof(example[0U]) - 1U; in TEST_F() local
64 size_t length = sizeof(example) / sizeof(example[0U]); in TEST_F() local
74 size_t length = sizeof(example) / sizeof(example[0U]) - 1U; in TEST_F() local
84 size_t length = sizeof(example) / sizeof(example[0U]) - 1U; in TEST_F() local
105 size_t length = sizeof(example) / sizeof(example[0U]); in TEST_F() local
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ani/tests/array_ops/
Darray_get_length_test.cpp28 ani_size length = 0; in TEST_F() local
37 ani_size length = 0; in TEST_F() local
45 ani_size length = 0; in TEST_F() local

12345678910>>...21