Home
last modified time | relevance | path

Searched defs:vec (Results 1 – 25 of 64) sorted by relevance

123

/arkcompiler/runtime_core/static_core/plugins/ets/tests/mock/
Darray_native_test.cpp96 std::vector<ets_boolean> vec(length); in TEST_F() local
103 std::vector<ets_boolean> vec(length - half); in TEST_F() local
135 std::vector<ets_byte> vec(length); in TEST_F() local
142 std::vector<ets_byte> vec(length - half); in TEST_F() local
174 std::vector<ets_char> vec(length); in TEST_F() local
181 std::vector<ets_char> vec(length - half); in TEST_F() local
213 std::vector<ets_short> vec(length); in TEST_F() local
220 std::vector<ets_short> vec(length - half); in TEST_F() local
252 std::vector<ets_int> vec(length); in TEST_F() local
259 std::vector<ets_int> vec(length - half); in TEST_F() local
[all …]
/arkcompiler/ets_frontend/ets2panda/util/
DdiagnosticEngine.cpp53 for (const auto &vec : diagnostics_) { in GetAllDiagnostic() local
59 for (auto &vec : diagnostics_) { in GetAllDiagnostic() local
70 for (const auto &vec : diagnostics_) { in GetErrorDiagnostic() local
78 for (const auto &vec : diagnostics_) { in GetErrorDiagnostic() local
107 for (auto &vec : diagnostics_) { in FlushDiagnostic() local
/arkcompiler/ets_runtime/ecmascript/
Dweak_vector.cpp67 JSHandle<WeakVector> WeakVector::Append(const JSThread *thread, const JSHandle<WeakVector> &vec, in Append()
79 …andle<WeakVector> WeakVector::FillOrAppend(const JSThread *thread, const JSHandle<WeakVector> &vec, in FillOrAppend()
99 …le<WeakVector> WeakVector::AppendToFullVec(const JSThread *thread, const JSHandle<WeakVector> &vec, in AppendToFullVec()
122 JSHandle<WeakVector> WeakVector::Copy(const JSThread *thread, const JSHandle<WeakVector> &vec, in Copy()
136 uint32_t WeakVector::CheckHole(const JSThread *thread, const JSHandle<WeakVector> &vec) in CheckHole()
Dvtable.cpp45 CVector<JSHandle<JSTaggedValue>> vec {name, type, owner, offset}; in CreateTuple() local
51 CVector<JSHandle<JSTaggedValue>> vec; in GetTuple() local
Dvtable.h45 explicit Tuple(const CVector<JSHandle<JSTaggedValue>> &vec) : items_(std::move(vec)) {} in Tuple()
/arkcompiler/ets_frontend/ets2panda/lsp/include/
Dreferences.h31 void RemoveDuplicates(std::vector<T> &vec, Compare comp) in RemoveDuplicates()
/arkcompiler/ets_runtime/ecmascript/module/
Dmodule_snapshot.cpp278 auto& vec = data->regionRemainSizeVectors_[i]; in ReadDataFromFile() local
343 for (const auto& vec : data->regionRemainSizeVectors_) { in WriteDataToFile() local
449 for (const auto& vec : data->regionRemainSizeVectors_) { in WriteDataToFile() local
Dmodule_path_helper.cpp301 CVector<CString> vec; in ParseUrl() local
336 CVector<CString> vec; in ParsePrefixBundle() local
434 CVector<CString> vec; in FindOhpmEntryPoint() local
484 CVector<CString> vec; in FindPackageInTopLevelWithNamespace() local
/arkcompiler/ets_runtime/test/moduletest/container/
Dcontainer_vector.js45 let vec = vector.clone(); variable
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcompilation_driver.cpp78 std::vector<std::string> vec {}; in SplitString() local
Dcompiler_log.cpp68 std::vector<std::string> vec {}; in spiltString() local
Daot_compiler_preprocessor.cpp86 std::vector<std::string> vec {}; in SplitString() local
410 std::vector<std::string> vec = it->second; in FilterOption() local
Dts_inline_lowering.cpp287 std::vector<GateRef> vec; in ReplaceCallInput() local
323 std::vector<GateRef> vec; in ReplaceAccessorInput() local
843 std::vector<GateRef> vec; in ReplaceSuperCallInput() local
/arkcompiler/runtime_core/static_core/verification/util/tests/
Dstruct_field_test.cpp54 std::vector<int32_t> vec(5U); in TEST_F() local
/arkcompiler/ets_runtime/tools/ap_file_viewer/native/include/
Dprof_convert_json.h99 cJSON* HandleVariantVector(const ProfileType::VariantVector& vec) const in HandleVariantVector()
/arkcompiler/runtime_core/taihe/test/ani_test/author/src/
Dani_test.impl.cpp126 std::vector<Foo> vec; in makeFoo() local
/arkcompiler/runtime_core/libpandabase/tests/
Darena_allocator_test.cpp205 ArenaVector<unsigned> vec(aa.Adapter()); variable
228 ArenaVector<ComplexClass> vec(aa.Adapter()); variable
/arkcompiler/ets_frontend/es2panda/util/
DcommonUtil.cpp40 std::string GetStringByVectorElementsWithDelimiter(const std::vector<std::string> &vec, const char … in GetStringByVectorElementsWithDelimiter()
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/
Dintrinsics_lowering.cpp148 llvm::Value *vec = llvm::UndefValue::get(type); in HandleCall() local
/arkcompiler/runtime_core/static_core/runtime/tests/
Dstack_like_allocator_test.cpp154 std::vector<std::pair<void *, size_t>> vec; in TEST_F() local
/arkcompiler/runtime_core/bytecode_optimizer/
Dbytecode_analysis_results.cpp45 auto &vec = local_export_slot_external_names_.emplace_back(); in SetLocalExportInfo() local
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
Drawheap_dump.cpp400 auto vec = strIdMapObjVec_.find(strId); in UpdateStringTable() local
523 auto vec = strIdMapObjVec_.find(strId); in UpdateStringTable() local
/arkcompiler/runtime_core/static_core/libpandabase/tests/
Darena_allocator_test.cpp225 ArenaVector<unsigned> vec(aa.Adapter()); in TEST_F() local
248 ArenaVector<ComplexClass> vec(aa.Adapter()); in TEST_F() local
/arkcompiler/runtime_core/static_core/verification/type/
Dtype_type.cpp761 PandaVector<Type> vec; in GetArrayElementType() local
776 PandaVector<Type> vec; in GetArrayElementType() local
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_vector_test.cpp444 JSHandle<JSAPIVector> vec = CreateJSAPIVector(); in HWTEST_F_L0() local
565 JSTaggedValue vec = ContainersVector::Clone(callInfo); in HWTEST_F_L0() local
748 JSTaggedValue vec = ContainersVector::SubVector(callInfo); in HWTEST_F_L0() local

123