/arkcompiler/ets_runtime/test/fuzztest/containersvectorcommon_fuzzer/ |
D | containersvectorcommon_fuzzer.h | 85 JSHandle<JSAPIVector> vector = CreateJSAPIVector(thread); in GetVectorWithData() local 116 JSHandle<JSAPIVector> vector = CreateJSAPIVector(thread); in ContainersVectorAddFuzzTest() local 137 JSHandle<JSAPIVector> vector = CreateJSAPIVector(thread); in ContainersVectorGetFirstElementFuzzTest() local 164 JSHandle<JSAPIVector> vector = CreateJSAPIVector(thread); in ContainersVectorGetIndexOfFuzzTest() local 192 JSHandle<JSAPIVector> vector = CreateJSAPIVector(thread); in ContainersVectorGetLastElementFuzzTest() local 219 JSHandle<JSAPIVector> vector = CreateJSAPIVector(thread); in ContainersVectorHasFuzzTest() local 247 JSHandle<JSAPIVector> vector = CreateJSAPIVector(thread); in ContainersVectorInsertFuzzTest() local 269 JSHandle<JSAPIVector> vector = CreateJSAPIVector(thread); in ContainersVectorRemoveFuzzTest() local 298 JSHandle<JSAPIVector> vector = CreateJSAPIVector(thread); in ContainersVectorSetFuzzTest() local 328 JSHandle<JSAPIVector> vector = CreateJSAPIVector(thread); in ContainersVectorGetLastIndexOfFuzzTest() local [all …]
|
/arkcompiler/runtime_core/libpandabase/tests/ |
D | small_vector_test.cpp | 49 void TestVectorGrow(Vector &vector) in TestVectorGrow() 85 SmallVector<int, 4> vector; in TEST_F() local 89 SmallVector<int, 4, ArenaAllocator, true> vector(GetAllocator()); in TEST_F() local 95 void TestVectorIteration(Vector &vector) in TestVectorIteration() 165 SmallVector<int, 4> vector; in TEST_F() local 169 SmallVector<int, 4, ArenaAllocator, true> vector(GetAllocator()); in TEST_F() local 207 SmallVector<Item, 1> vector; in TEST_F() local 221 SmallVector<Item, 4> vector; in TEST_F() local 248 SmallVector<Item, 2> vector; in TEST_F() local 272 SmallVector<Item, 4> vector; in TEST_F() local [all …]
|
D | bit_vector_test.cpp | 51 BitVector<> vector; variable 113 void TestIteration(T &vector, size_t bits) in TestIteration() 230 void TestModification(T &vector) in TestModification() 301 BitVector<> vector; variable
|
D | arena_allocator_test.cpp | 548 ArenaVector<size_t> vector(aa.Adapter()); variable
|
D | bit_table_test.cpp | 408 void FillVector(T &vector, uint32_t value) in FillVector()
|
/arkcompiler/ets_runtime/ecmascript/js_api/ |
D | js_api_vector.cpp | 30 bool JSAPIVector::Add(JSThread *thread, const JSHandle<JSAPIVector> &vector, const JSHandle<JSTagge… in Add() 43 void JSAPIVector::Insert(JSThread *thread, const JSHandle<JSAPIVector> &vector, in Insert() 62 void JSAPIVector::SetLength(JSThread *thread, const JSHandle<JSAPIVector> &vector, uint32_t newSize) in SetLength() 78 void JSAPIVector::IncreaseCapacityTo(JSThread *thread, const JSHandle<JSAPIVector> &vector, int32_t… in IncreaseCapacityTo() 95 int32_t JSAPIVector::GetIndexOf(JSThread *thread, const JSHandle<JSAPIVector> &vector, in GetIndexOf() 101 int32_t JSAPIVector::GetIndexFrom(JSThread *thread, const JSHandle<JSAPIVector> &vector, in GetIndexFrom() 139 int32_t JSAPIVector::GetLastIndexOf(JSThread *thread, const JSHandle<JSAPIVector> &vector, in GetLastIndexOf() 149 int32_t JSAPIVector::GetLastIndexFrom(JSThread *thread, const JSHandle<JSAPIVector> &vector, in GetLastIndexFrom() 170 bool JSAPIVector::Remove(JSThread *thread, const JSHandle<JSAPIVector> &vector, const JSHandle<JSTa… in Remove() 185 JSTaggedValue JSAPIVector::RemoveByIndex(JSThread *thread, const JSHandle<JSAPIVector> &vector, int… in RemoveByIndex() [all …]
|
D | js_api_vector_iterator.cpp | 39 JSHandle<JSTaggedValue> vector(thread, iter->GetIteratedVector()); in Next() local
|
/arkcompiler/ets_runtime/ecmascript/containers/tests/ |
D | containers_vector_test.cpp | 66 JSHandle<JSTaggedValue> vector = GetCallArg(argv, 2); // 2 means the secode arg in TestForEachFunc() local 83 JSHandle<JSTaggedValue> vector = GetCallArg(argv, 2); // 2 means the secode arg in TestReplaceAllElementsFunc() local 129 JSHandle<JSAPIVector> vector(thread, result); in CreateJSAPIVector() local 167 JSHandle<JSAPIVector> vector = CreateJSAPIVector(); in HWTEST_F_L0() local 248 JSHandle<JSAPIVector> vector = CreateJSAPIVector(); in HWTEST_F_L0() local 320 JSHandle<JSAPIVector> vector = CreateJSAPIVector(); in HWTEST_F_L0() local 425 JSHandle<JSAPIVector> vector = CreateJSAPIVector(); in HWTEST_F_L0() local 499 JSHandle<JSAPIVector> vector = CreateJSAPIVector(); in HWTEST_F_L0() local 542 JSHandle<JSAPIVector> vector = CreateJSAPIVector(); in HWTEST_F_L0() local 668 JSHandle<JSAPIVector> vector = CreateJSAPIVector(); in HWTEST_F_L0() local [all …]
|
/arkcompiler/ets_runtime/test/moduletest/container/ |
D | container_vector.js | 27 let vector = new FastVector(); variable
|
/arkcompiler/ets_runtime/ecmascript/ |
D | weak_vector.cpp | 26 …JSHandle<WeakVector> vector = JSHandle<WeakVector>(thread->GetEcmaVM()->GetFactory()->NewTaggedArr… in Create() local
|
D | js_finalization_registry.cpp | 27 …dVector> CellRecordVector::Append(const JSThread *thread, const JSHandle<CellRecordVector> &vector, in Append()
|
D | tagged_hash_table.h | 207 inline void GetAllKeysIntoVector(std::vector<JSTaggedValue> &vector) const in GetAllKeysIntoVector()
|
D | dump.cpp | 2228 JSAPIVector *vector = JSAPIVector::Cast(GetIteratedVector().GetTaggedObject()); in Dump() local 4653 JSAPIVector *vector = JSAPIVector::Cast(GetIteratedVector().GetTaggedObject()); in DumpForSnapshot() local
|
D | object_factory.cpp | 3765 …dle<JSAPIVectorIterator> ObjectFactory::NewJSAPIVectorIterator(const JSHandle<JSAPIVector> &vector) in NewJSAPIVectorIterator()
|
/arkcompiler/runtime_core/libpandabase/serializer/ |
D | serializer.h | 147 …e_t, const char *> BufferToType(const uint8_t *data, size_t size, /* out */ std::vector<T> &vector) in BufferToType()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_api_vector_test.cpp | 84 …JSHandle<JSAPIVector> vector(factory->NewJSObjectByConstructor(JSHandle<JSFunction>(constructor), … in CreateVector() local 92 JSAPIVector *vector = CreateVector(); in HWTEST_F_L0() local
|
/arkcompiler/ets_runtime/ecmascript/containers/ |
D | containers_vector.cpp | 670 JSHandle<JSAPIVector> vector = JSHandle<JSAPIVector>::Cast(self); in CopyToArray() local 709 JSHandle<JSAPIVector> vector = JSHandle<JSAPIVector>::Cast(self); in ConvertToArray() local
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | bit_vector.h | 500 explicit BitsIndicesRange(const BitVectorBase &vector) : vector_(vector) {} in BitsIndicesRange()
|
/arkcompiler/ets_runtime/ecmascript/debugger/ |
D | debugger_api.cpp | 1183 JSHandle<JSAPIVector> vector(JSNApiHelper::ToJSHandle(value)); in GetVectorValue() local
|