Home
last modified time | relevance | path

Searched defs:dict (Results 1 – 22 of 22) sorted by relevance

/arkcompiler/runtime_core/scripts/
Dgc_pause_stats.py30 def sort_one_gc_stat(stats: dict, gc_type: str) -> list:
39 def sort_gc_stats(stats: dict) -> list:
49 def save_pause_stats(gc_log_path: str, file_name: str, stats: dict) -> None:
98 def update_stats(stats: dict, gc_type: str, time_value: float):
135 def update_group_stats(gc_pause_stats: dict, gc_type: str, full_gc_type: str, time_v: float):
142 def process_one_log(gc_log_path: str, result_file_path: str, all_stats: dict) -> None:
Drun_check_atomic_format.py95 def process_results(atomic_comments: dict, atomic_operations: dict) -> int:
/arkcompiler/ets_runtime/ecmascript/
Dobject_operator.cpp310 GlobalDictionary *dict = GlobalDictionary::Cast(array); in LookupGlobal() local
338 GlobalDictionary *dict = GlobalDictionary::Cast(array); in LookupPropertyInlinedProps() local
379 NameDictionary *dict = NameDictionary::Cast(array); in LookupPropertyInlinedProps() local
396 auto dict = NumberDictionary::Cast(receiver->GetElements().GetTaggedObject()); in TransitionForAttributeChanged() local
402 auto dict = NumberDictionary::Cast(receiver->GetElements().GetTaggedObject()); in TransitionForAttributeChanged() local
415 JSHandle<NameDictionary> dict(JSObject::TransitionToDictionary(thread_, receiver)); in TransitionForAttributeChanged() local
421 auto dict = NameDictionary::Cast(receiver->GetProperties().GetTaggedObject()); in TransitionForAttributeChanged() local
493 NumberDictionary *dict = NumberDictionary::Cast(elements); in UpdateDataValue() local
500 auto *dict = GlobalDictionary::Cast(receiver->GetProperties().GetTaggedObject()); in UpdateDataValue() local
622 JSHandle<NameDictionary> dict(JSObject::TransitionToDictionary(thread_, receiver)); in WriteDataProperty() local
[all …]
Djs_hclass-inl.h112 TransitionsDictionary *dict = TransitionsDictionary::Cast(transitions.GetTaggedObject()); in FindTransitions() local
135 TransitionsDictionary *dict = TransitionsDictionary::Cast(transitions.GetTaggedObject()); in FindProtoTransitions() local
Djs_object.cpp155 JSMutableHandle<NameDictionary> dict( in TransitionToDictionary() local
204 JSMutableHandle<NumberDictionary> dict(thread, NumberDictionary::Create(thread)); in ElementsToDictionary() local
272 JSHandle<NumberDictionary> dict(thread, receiver->GetElements()); in AddElementInternal() local
331 GlobalDictionary *dict = GlobalDictionary::Cast(array); in GetAllKeys() local
335 NameDictionary *dict = NameDictionary::Cast(obj->GetProperties().GetTaggedObject()); in GetAllKeys() local
355 GlobalDictionary *dict = GlobalDictionary::Cast(array); in GetAllKeysByFilter() local
359 NameDictionary *dict = NameDictionary::Cast(obj->GetProperties().GetTaggedObject()); in GetAllKeysByFilter() local
375 NameDictionary *dict = NameDictionary::Cast(obj->GetProperties().GetTaggedObject()); in GetAllKeys() local
386 GlobalDictionary *dict = GlobalDictionary::Cast(obj->GetProperties().GetTaggedObject()); in GetAllEnumKeys() local
413 NameDictionary *dict = NameDictionary::Cast(obj->GetProperties().GetTaggedObject()); in GetAllEnumKeys() local
[all …]
Dobject_fast_operator-inl.h90 NameDictionary *dict = NameDictionary::Cast(array); in GetPropertyByName() local
176 NameDictionary *dict = NameDictionary::Cast(properties); in SetPropertyByName() local
257 NumberDictionary *dict = NumberDictionary::Cast(elements); in GetPropertyByIndex() local
Ddump.cpp1427 NumberDictionary *dict = NumberDictionary::Cast(elements); in Dump() local
1435 GlobalDictionary *dict = GlobalDictionary::Cast(properties); in Dump() local
1469 NameDictionary *dict = NameDictionary::Cast(properties); in Dump() local
3623 NameDictionary *dict = NameDictionary::Cast(properties); in Dump() local
4360 NumberDictionary *dict = NumberDictionary::Cast(elements); in DumpForSnapshot() local
4366 GlobalDictionary *dict = GlobalDictionary::Cast(properties); in DumpForSnapshot() local
4396 NameDictionary *dict = NameDictionary::Cast(properties); in DumpForSnapshot() local
/arkcompiler/ets_runtime/ecmascript/module/
Djs_module_manager.cpp188 NameDictionary *dict = NameDictionary::Cast(properties); in GetValueFromExportObject() local
320 NameDictionary *dict = NameDictionary::Cast(resolvedModules_.GetTaggedObject()); in HostGetImportedModule() local
333 NameDictionary *dict = NameDictionary::Cast(resolvedModules_.GetTaggedObject()); in HostGetImportedModule() local
376 NameDictionary *dict = NameDictionary::Cast(resolvedModules_.GetTaggedObject()); in HostResolveImportedModuleWithMerge() local
433 NameDictionary *dict = NameDictionary::Cast(resolvedModules_.GetTaggedObject()); in HostResolveImportedModule() local
457 NameDictionary *dict = NameDictionary::Cast(resolvedModules_.GetTaggedObject()); in HostResolveImportedModule() local
490 JSHandle<NameDictionary> dict(thread, resolvedModules_); in ResolveModule() local
506 JSHandle<NameDictionary> dict(thread, resolvedModules_); in ResolveNativeModule() local
556 JSHandle<NameDictionary> dict(thread, resolvedModules_); in AddResolveImportedModule() local
692 NameDictionary *dict = NameDictionary::Cast(resolvedModules_.GetTaggedObject()); in HostResolveImportedModule() local
Djs_module_deregister.cpp93 JSHandle<NameDictionary> dict(thread, moduleManager->resolvedModules_.GetTaggedObject()); in RemoveModule() local
Djs_module_source_text.cpp183 NameDictionary *dict = NameDictionary::Cast(properties); in ResolveExportObject() local
1190 NameDictionary *dict = NameDictionary::Cast(dictionary.GetTaggedObject()); in GetModuleValue() local
1212 NameDictionary *dict = NameDictionary::Cast(dictionary.GetTaggedObject()); in FindByExport() local
/arkcompiler/toolchain/build/compile_script/
Dark.py254 def is_dict_flags_match_arg(dict_to_match: dict, arg_to_match: str) -> bool:
260 …def which_dict_flags_match_arg(self, dict_including_dicts_to_match: dict, arg_to_match: str) -> st…
289 …def get_help_msg_of_dict(self, dict_in: dict, indentation_str_current: str, indentation_str_per_le…
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dclass_info_extractor.cpp369 …JSHandle<NameDictionary> dict = BuildDictionaryProperties(thread, prototype, nonStaticKeys, nonSta… in DefineClassFromExtractor() local
395 …JSHandle<NameDictionary> dict = BuildDictionaryProperties(thread, JSHandle<JSObject>(constructor),… in DefineClassFromExtractor() local
456 …JSHandle<NameDictionary> dict = BuildDictionaryProperties(thread, prototype, nonStaticKeys, nonSta… in DefineClassWithIHClass() local
489 …JSHandle<NameDictionary> dict = BuildDictionaryProperties(thread, JSHandle<JSObject>(constructor),… in DefineClassWithIHClass() local
522 JSMutableHandle<NameDictionary> dict( in BuildDictionaryProperties() local
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DgenericFunctionsAndConditionalInference.ts73 dict: <P>(p: {[k in keyof P]: Result<F, P[k]>}) => Result<F, P> method
/arkcompiler/ets_runtime/ecmascript/tests/
Dglobal_dictionary_test.cpp231 JSHandle<GlobalDictionary> dict(GlobalDictionary::PutIfAbsent(thread, dictHandle, in HWTEST_F_L0() local
278 JSHandle<GlobalDictionary> dict(GlobalDictionary::PutIfAbsent(thread, dictHandle, in HWTEST_F_L0() local
Dtagged_dictionary_test.cpp104 …JSHandle<NameDictionary> dict(NameDictionary::PutIfAbsent(thread, dictHandle, key1, value1, metaDa… in HWTEST_F_L0() local
234 …JSHandle<NumberDictionary> dict = NumberDictionary::PutIfAbsent(thread, dictHandle, key1, value1, … in HWTEST_F_L0() local
Dlinked_hash_table_test.cpp68 JSHandle<LinkedHashMap> dict = LinkedHashMap::Create(thread, numOfElement); in HWTEST_F_L0() local
Ddump_test.cpp807 JSHandle<TaggedArray> dict = factory->NewDictionaryArray(4); in HWTEST_F_L0() local
817 JSHandle<COWTaggedArray> dict = factory->NewCOWTaggedArray(4); in HWTEST_F_L0() local
Djs_object_test.cpp883 NameDictionary *dict = NameDictionary::Cast(obj1->GetProperties().GetTaggedObject()); in HWTEST_F_L0() local
916 NameDictionary *dict = NameDictionary::Cast(obj1->GetProperties().GetTaggedObject()); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dfast_runtime_stub-inl.h214 GlobalDictionary *dict = GlobalDictionary::Cast(properties); in GetGlobalOwnProperty() local
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_lazy_callback.cpp235 NameDictionary *dict = NameDictionary::Cast(array); in ITERATE_INTL() local
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h704 GlobalDictionary *dict = GlobalDictionary::Cast(env->GetGlobalRecord()->GetTaggedObject()); in RuntimeStGlobalRecord() local
1310 GlobalDictionary *dict = GlobalDictionary::Cast(env->GetGlobalRecord()->GetTaggedObject()); in RuntimeLdGlobalRecord() local
1334 GlobalDictionary *dict = GlobalDictionary::Cast(env->GetGlobalRecord()->GetTaggedObject()); in RuntimeTryUpdateGlobalRecord() local
/arkcompiler/ets_runtime/ecmascript/debugger/
Ddebugger_api.cpp621 JSHandle<TaggedArray> dict(thread, TaggedArray::Cast(dictionary.GetTaggedObject())); in GetLocalExportVariables() local