Home
last modified time | relevance | path

Searched defs:map (Results 1 - 25 of 67) sorted by relevance

123

/arkcompiler/ets_runtime/test/moduletest/arraymap/
H A Darraymap.js23 function map() { function
/arkcompiler/ets_runtime/test/fuzztest/functionrefinherit_fuzzer/
H A Dfunctionrefinherit_fuzzer.cpp43 JSHandle<JSTaggedValue> map = env->GetBuiltinsMapFunction(); in FunctionRefInheritFuzzTest() local
/arkcompiler/ets_runtime/test/fuzztest/weakmapref_fuzzer/
H A Dweakmapref_fuzzer.cpp55 Local<WeakMapRef> map = JSNApiHelper::ToLocal<WeakMapRef>(weakMapTag); in WeakMapRefFuzzTest() local
/arkcompiler/ets_runtime/ecmascript/tests/
H A Djs_api_tree_map_test.cpp46 JSAPITreeMap *map = CreateTreeMap(); in HWTEST_F_L0() local
H A Djs_map_test.cpp43 JSHandle<JSMap> map = in CreateMap() local
53 JSMap *map = CreateMap(); in HWTEST_F_L0() local
[all...]
H A Djs_api_hashmap_test.cpp57 JSAPIHashMap *map = CreateHashMap(); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/shared_objects/
H A Djs_shared_map.cpp22 void JSSharedMap::Set(JSThread *thread, const JSHandle<JSSharedMap> &map, in Set() argument
39 bool JSSharedMap::Delete(JSThread *thread, const JSHandle<JSSharedMap> &map, const JSHandle<JSTaggedValue> &key) in Delete() argument
53 void JSSharedMap::Clear(JSThread *thread, const JSHandle<JSSharedMap> &map) in Clear() argument
63 Has(JSThread *thread, const JSHandle<JSSharedMap> &map, JSTaggedValue key) Has() argument
70 Get(JSThread *thread, const JSHandle<JSSharedMap> &map, JSTaggedValue key) Get() argument
77 GetSize(JSThread *thread, const JSHandle<JSSharedMap> &map) GetSize() argument
84 GetKey(JSThread *thread, const JSHandle<JSSharedMap> &map, uint32_t entry) GetKey() argument
92 GetValue(JSThread *thread, const JSHandle<JSSharedMap> &map, uint32_t entry) GetValue() argument
[all...]
/arkcompiler/runtime_core/static_core/verification/config/handlers/
H A Dconfig_handler_options.cpp43 PandaString GetKeys(const M &map) in GetKeys() argument
/arkcompiler/ets_runtime/ecmascript/
H A Djs_weak_container.cpp22 void JSWeakMap::Set(JSThread *thread, const JSHandle<JSWeakMap> &map, const JSHandle<JSTaggedValue> &key, in Set() argument
35 bool JSWeakMap::Delete(JSThread *thread, const JSHandle<JSWeakMap> &map, const JSHandle<JSTaggedValue> &key) in Delete() argument
H A Djs_map.cpp21 void JSMap::Set(JSThread *thread, const JSHandle<JSMap> &map, const JSHandle<JSTaggedValue> &key, in Set() argument
33 bool JSMap::Delete(const JSThread *thread, const JSHandle<JSMap> &map, const JSHandle<JSTaggedValue> &key) in Delete() argument
44 void JSMap::Clear(const JSThread *thread, const JSHandle<JSMap> &map) in Clear() argument
H A Djs_map_iterator.cpp95 LinkedHashMap *map = LinkedHashMap::Cast(iteratedMap.GetTaggedObject()); in Update() local
[all...]
H A Dglobal_env_constants.cpp407 auto map = thread->GetArrayHClassIndexMap(); in InitElementKindHClass() local
/arkcompiler/runtime_core/bytecode_optimizer/
H A Dbytecode_analysis_results.h90 static T& GetOrCreateElementInMap(std::unordered_map<std::string, std::unique_ptr<T>> &map, in GetOrCreateElementInMap() argument
/arkcompiler/runtime_core/libpandabase/serializer/
H A Dserializer.h171 Expected<size_t, const char *> BufferToType(const uint8_t *data, size_t size, /* out */ std::unordered_map<K, V> &map) in BufferToType() argument
/arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/
H A Dcodegen_test.cpp69 auto map = interface.GetPcInsMap(); in TEST() local
/arkcompiler/ets_frontend/ets2panda/lexer/
H A DkeywordsUtil.cpp202 const auto map = kws->KeywordMap(cp); in ScanIdentifierStart() local
252 void KeywordsUtil::ScanIdContinueMaybeKeyword(const Keywords *kws, Span<const KeywordString> map) in ScanIdContinueMaybeKeyword() argument
/arkcompiler/ets_frontend/es2panda/lexer/
H A DkeywordsUtil.cpp206 const auto map = KeywordsMap::Map(cp); in ScanIdentifierStart() local
256 void KeywordsUtil::ScanIdContinueMaybeKeyword(Span<const KeywordString> map) in ScanIdContinueMaybeKeyword() argument
/arkcompiler/ets_runtime/ecmascript/js_api/
H A Djs_api_tree_map.cpp24 void JSAPITreeMap::Set(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTaggedValue> &key, in Set() argument
42 JSTaggedValue JSAPITreeMap::Get(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTaggedValue> &key) in Get() argument
67 JSTaggedValue JSAPITreeMap::Delete(JSThread *thread, const JSHandle<JSAPITreeMap> &map, in Delete() argument
82 bool JSAPITreeMap::HasKey(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTaggedValue> &key) in HasKey() argument
94 Clear(const JSThread *thread, const JSHandle<JSAPITreeMap> &map) Clear() argument
110 Replace(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTaggedValue> &key, const JSHandle<JSTaggedValue> &value) Replace() argument
[all...]
/arkcompiler/ets_runtime/test/fuzztest/jsvaluerefiscontainer_fuzzer/
H A Djsvaluerefiscontainer_fuzzer.cpp69 Local<MapRef> map = MapRef::New(vm); in JSValueRefIsMapFuzzTest() local
/arkcompiler/ets_runtime/test/fuzztest/jsvaluerefishashmap_fuzzer/
H A Djsvaluerefishashmap_fuzzer.cpp130 JSHandle<JSAPIHashMap> map = ConstructobjectHashMap(thread); in JSValueRefIsHashMapFuzzTest() local
/arkcompiler/runtime_core/static_core/runtime/
H A Dstring_table.cpp337 PandaUnorderedMap<panda_file::File::EntityId, coretypes::String *, EntityIdEqual> map; in GetOrInternString() local
/arkcompiler/ets_runtime/ecmascript/extractortool/tests/
H A Dextractor_test.cpp242 auto map = util.GetExtractorMap(); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/napi/test/
H A Djsnapi_sendable_tests.cpp516 Local<SendableMapRef> map = SendableMapRef::New(vm_); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/test/fuzztest/containerstreemapcommon_fuzzer/
H A Dcontainerstreemapcommon_fuzzer.h318 JSHandle<JSAPITreeMap> map = CreateJSAPITreeMap(thread); in ContainersTreeMapGetLengthFuzzTest() local
452 JSHandle<JSAPITreeMap> map = CreateJSAPITreeMap(thread); in ContainersTreeMapRemoveFuzzTest() local
528 JSHandle<JSAPITreeMap> map = CreateJSAPITreeMap(thread); in ContainersTreeMapSetAllFuzzTest() local
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
H A Dreg_alloc_graph_coloring.cpp104 RegAllocGraphColoring::IndexVector RegAllocGraphColoring::PrecolorIG(InterferenceGraph *ig, const RegisterMap &map) in PrecolorIG() argument
231 Register RegAllocGraphColoring::AllocateRegisters(InterferenceGraph *ig, WorkingRanges *ranges, const RegisterMap &map) in AllocateRegisters() argument
261 void RegAllocGraphColoring::Remap(const InterferenceGraph &ig, const RegisterMap &map) in Remap() argument
369 InitMap(RegisterMap *map, bool is_vector) InitMap() argument
[all...]

Completed in 14 milliseconds

123