Home
last modified time | relevance | path

Searched defs:key (Results 1 – 25 of 598) sorted by relevance

12345678910>>...24

/arkcompiler/ets_runtime/test/aottest/vtable/forin/
Dforin.ts30 for (let key in a) { variable
36 for (let key in a) { variable
42 for (let key in a) { variable
48 for (let key in a) { variable
54 for (let key in a) { variable
/arkcompiler/ets_frontend/ets2panda/ir/
DastDump.h90 Property(const char *key, const char *string) : key_(key), value_(string) {} in Property()
91 Property(const char *key, util::StringView str) : key_(key), value_(str) {} in Property()
92 Property(const char *key, bool boolean) : key_(key), value_(boolean) {} in Property()
93 Property(const char *key, char16_t c16) : key_(key), value_(c16) {} in Property()
94 Property(const char *key, lexer::Number number) : key_(key), value_(number) {} in Property()
95 Property(const char *key, lexer::TokenType token) : key_(key), value_(token) {} in Property()
96 … Property(const char *key, std::initializer_list<Property> props) : key_(key), value_(props) {} in Property()
97 …Property(const char *key, const ir::AstNode *node) : key_(key), value_(const_cast<ir::AstNode *>(n… in Property()
99 Property(const char *key, Constant constant) : key_(key), value_(constant) {} in Property()
100 Property(const char *key, Nullish nullish) : key_(key) in Property()
[all …]
/arkcompiler/ets_frontend/es2panda/ir/
DastDump.h76 Property(const char *key, const char *string) : key_(key), value_(string) {} in Property()
77 Property(const char *key, util::StringView str) : key_(key), value_(str) {} in Property()
78 Property(const char *key, bool boolean) : key_(key), value_(boolean) {} in Property()
79 Property(const char *key, double number) : key_(key), value_(number) {} in Property()
80 Property(const char *key, lexer::TokenType token) : key_(key), value_(token) {} in Property()
81 … Property(const char *key, std::initializer_list<Property> props) : key_(key), value_(props) {} in Property()
82 …Property(const char *key, const ir::AstNode *node) : key_(key), value_(const_cast<ir::AstNode *>(n… in Property()
84 Property(const char *key, Constant constant) : key_(key), value_(constant) {} in Property()
85 Property(const char *key, Nullable nullable) : key_(key) in Property()
94 Property(const char *key, Optional optional) : key_(key) in Property()
[all …]
/arkcompiler/ets_runtime/test/aottest/builtin_inlining/map/Values/
DbuiltinMapValues.ts65 for (let key of myMap.values()) { variable
118 for (let key of iter1) { variable
138 for (let key of iter1) { variable
156 for (let key of iter2) { variable
/arkcompiler/ets_runtime/test/aottest/builtin_inlining/map/Keys/
DbuiltinMapKeys.ts65 for (let key of myMap.keys()) { variable
118 for (let key of iter1) { variable
138 for (let key of iter1) { variable
154 for (let key of iter2) { variable
/arkcompiler/ets_runtime/test/aottest/builtin_inlining/set/Values/
DbuiltinSetValues.ts65 for (let key of mySet.values()) { variable
119 for (let key of iter1) { variable
139 for (let key of iter1) { variable
156 for (let key of iter2) { variable
/arkcompiler/ets_runtime/test/aottest/builtin_inlining/set/Entries/
DbuiltinSetEntries.ts65 for (let key of mySet.entries()) { variable
119 for (let key of iter1) { variable
139 for (let key of iter1) { variable
157 for (let key of iter2) { variable
/arkcompiler/ets_runtime/test/aottest/builtin_inlining/map/Entries/
DbuiltinMapEntries.ts65 for (let key of myMap.entries()) { variable
114 for (let key of iter1) { variable
130 for (let key of iter1) { variable
148 for (let key of iter2) { variable
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
Dfactory.h30 void Register(const key_type &key, creator_type func) in Register()
37 std::unique_ptr<TObject> Create(const key_type &key, TArgs... args) const in Create()
76 inline auto CreateProductObject(const typename TFactory::key_type &key, TArgs &&... args) in CreateProductObject()
87 void Register(const key_type &key, creator_type func) in Register()
94 creator_type Create(const key_type &key) const in Create()
121 inline void RegisterFactoryFunction(const typename TFactory::key_type &key, typename TFactory::crea… in RegisterFactoryFunction()
127 inline auto CreateProductFunction(const typename TFactory::key_type &key) in CreateProductFunction()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/ets_proxy/
Dwrappers_cache.h34 Wrapper *Lookup(Key key) in Lookup()
43 Wrapper *Insert(Key key, std::unique_ptr<Wrapper> &&wrapper) in Insert()
50 std::unique_ptr<Wrapper> Steal(Key key) in Steal()
/arkcompiler/ets_runtime/test/sharedtest/sharedmap/
Dsharedmap.ts77 for (let [key, value] of sharedMap.entries()) { variable
106 for (const [key, _] of iterator) { constant
111 for (const [key, _] of iterator) { constant
122 for (const [key, _] of iterator) { constant
133 for (const [key, _] of iterator) { constant
282 for (const [key, value] of subSendableMap.entries()) { constant
322 for (const [key, value] of subSendableMap.entries()) { constant
/arkcompiler/toolchain/tooling/base/
Dpt_json.cpp59 bool PtJson::Add(const char *key, bool value) const in Add() argument
79 bool PtJson::Add(const char *key, int32_t value) const in Add() argument
84 bool PtJson::Add(const char *key, int64_t value) const in Add() argument
89 bool PtJson::Add(const char *key, uint32_t value) const in Add() argument
94 bool PtJson::Add(const char *key, double value) const in Add() argument
114 bool PtJson::Add(const char *key, const char *value) const in Add() argument
134 bool PtJson::Add(const char *key, const std::unique_ptr<PtJson> &value) const in Add() argument
384 Result PtJson::GetBool(const char *key, bool *value) const in GetBool() argument
398 Result PtJson::GetInt(const char *key, int32_t *value) const in GetInt() argument
408 Result PtJson::GetInt64(const char *key, int64_t *value) const in GetInt64() argument
[all …]
/arkcompiler/ets_frontend/merge_abc/protos/
DassemblyProgram.proto26 bytes key = 1; field
30 bytes key = 1; field
34 bytes key = 1; field
38 bytes key = 1; field
/arkcompiler/ets_runtime/ecmascript/
Djs_arguments.cpp23 const JSHandle<JSTaggedValue> &key, PropertyDescriptor &desc) in GetOwnProperty()
43const JSHandle<JSTaggedValue> &key, const PropertyDescriptor &desc) in DefineOwnProperty()
56const JSHandle<JSTaggedValue> &key, const JSHandle<JSTaggedValue> &receiver) in GetProperty()
64 …etProperty(JSThread *thread, const JSHandle<JSArguments> &args, const JSHandle<JSTaggedValue> &key, in SetProperty()
73 const JSHandle<JSTaggedValue> &key) in DeleteProperty()
Dlayout_info.cpp40 JSTaggedValue key = GetKey(i); in GetAllKeys() local
49 JSTaggedValue key = GetKey(i); in GetAllKeys() local
67 JSTaggedValue key = GetKey(static_cast<int>(i)); in GetAllKeysByFilter() local
82 JSTaggedValue key = GetKey(static_cast<int>(i)); in GetAllKeysByFilter() local
100 JSTaggedValue key = GetKey(i); in GetAllKeysForSerialization() local
113 JSTaggedValue key = GetKey(i); in GetNumOfEnumKeys() local
170 CString LayoutInfo::GetSymbolKeyString(JSTaggedValue key) in GetSymbolKeyString()
193 auto key = GetKey(index); in DumpFieldIndexByPGO() local
212 auto key = GetKey(index); in UpdateFieldIndexByPGO() local
Dlinked_hash_table.cpp44 const JSHandle<JSTaggedValue> &key, in Insert()
69 …const JSHandle<Derived> &table, const JSHandle<JSTaggedValue> &key, const JSHandle<JSTaggedValue> … in InsertWeakRef()
112 const JSHandle<JSTaggedValue> &key) in Remove()
146 const JSHandle<JSTaggedValue> &key) in Delete()
152 const JSHandle<JSTaggedValue> &key, const JSHandle<JSTaggedValue> &value) in Set()
158 const JSHandle<JSTaggedValue> &key, const JSHandle<JSTaggedValue> &value) in SetWeakRef()
209 const JSHandle<JSTaggedValue> &key) in Delete()
215 const JSHandle<JSTaggedValue> &key) in Add()
221 const JSHandle<JSTaggedValue> &key) in AddWeakRef()
256 int LinkedHash::Hash(const JSThread *thread, JSTaggedValue key) in Hash()
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_lazy_test.cpp36 JSHandle<JSTaggedValue> key(factory->NewFromUtf8("Date")); in HWTEST_F_L0() local
49 JSHandle<JSTaggedValue> key(factory->NewFromUtf8("Date")); in HWTEST_F_L0() local
66 JSHandle<JSTaggedValue> key(factory->NewFromUtf8("now")); in HWTEST_F_L0() local
75 auto key = factory->NewFromUtf8("Date"); in HWTEST_F_L0() local
90 JSHandle<JSTaggedValue> key(factory->NewFromUtf8("add")); in HWTEST_F_L0() local
99 JSTaggedValue key = factory->NewFromUtf8("Set").GetTaggedValue(); in HWTEST_F_L0() local
114 JSHandle<JSTaggedValue> key(factory->NewFromUtf8("clear")); in HWTEST_F_L0() local
123 JSTaggedValue key = factory->NewFromUtf8("Map").GetTaggedValue(); in HWTEST_F_L0() local
138 JSHandle<JSTaggedValue> key(factory->NewFromUtf8("delete")); in HWTEST_F_L0() local
147 JSTaggedValue key = factory->NewFromUtf8("WeakMap").GetTaggedValue(); in HWTEST_F_L0() local
[all …]
/arkcompiler/ets_runtime/test/fuzztest/containerstreemapcommon_fuzzer/
Dcontainerstreemapcommon_fuzzer.h81 …static bool InitFuzzTest(const uint8_t *data, size_t &size, int32_t &key, EcmaVM *&vm, JSThread *&… in InitFuzzTest()
106 int32_t key = 0; in ContainersTreeMapClearFuzzTest() local
131 int32_t key = 0; in ContainersTreeMapConstructorFuzzTest() local
149 int32_t key = 0; in ContainersTreeMapEntriesFuzzTest() local
179 int32_t key = 0; in ContainersTreeMapForEachFuzzTest() local
210 int32_t key = 0; in ContainersTreeMapGetFuzzTest() local
229 int32_t key = 0; in ContainersTreeMapGetFirstKeyFuzzTest() local
254 int32_t key = 0; in ContainersTreeMapGetHigherKeyFuzzTest() local
280 int32_t key = 0; in ContainersTreeMapGetLastKeyFuzzTest() local
305 int32_t key = 0; in ContainersTreeMapGetLengthFuzzTest() local
[all …]
/arkcompiler/runtime_core/templates/
Dplugin_options.rb24 def assign_data_level(cur_hash, key, cur_data) argument
41 def wrap_array_level(cur_hash, key, cur_data) argument
51 def wrap_hash_level(cur_hash, key, cur_data) argument
/arkcompiler/ets_runtime/test/sharedtest/sharedset/
Dsharedset.ts112 for (const [key, _] of iterator) { constant
117 for (const [key, _] of iterator) { constant
128 for (const [key, _] of iterator) { constant
139 for (const [key, _] of iterator) { constant
268 for (const [key, _] of subSharedset.entries()) { constant
/arkcompiler/runtime_core/tests/cts-generator/
Dtest-runner.rb33 def check_option(optparser, options, key) argument
41 def check_option_limit(optparser, options, key, min, max) argument
50 def check_option_enum(optparser, options, key, enum) argument
/arkcompiler/runtime_core/static_core/tests/cts-generator/
Dtest-runner.rb33 def check_option(optparser, options, key) argument
41 def check_option_limit(optparser, options, key, min, max) argument
50 def check_option_enum(optparser, options, key, enum) argument
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_tree_map.cpp24 …eeMap::Set(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTaggedValue> &key, in Set()
42 …eeMap::Get(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTaggedValue> &key) in Get()
56 JSTaggedValue key = TaggedTreeMap::Cast(GetTreeMap().GetTaggedObject())->GetKey(entry); in GetKey() local
68 const JSHandle<JSTaggedValue> &key) in Delete()
82 …ap::HasKey(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTaggedValue> &key) in HasKey()
110 …p::Replace(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTaggedValue> &key, in Replace()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_set_test.cpp63 JSHandle<JSTaggedValue> key(factory->NewFromASCII("key")); in HWTEST_F_L0() local
78 JSHandle<JSTaggedValue> key(factory->NewFromASCII(keyArray)); in HWTEST_F_L0() local
96 JSHandle<JSTaggedValue> key(thread, JSTaggedValue(i)); in HWTEST_F_L0() local
113 JSHandle<JSTaggedValue> key(thread, JSTaggedValue(i)); in HWTEST_F_L0() local
121 JSHandle<JSTaggedValue> key(thread, JSTaggedValue(5)); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/require/
Djs_cjs_module_cache.h68 static inline uint32_t Hash(const JSTaggedValue &key) in Hash()
82 inline int FindEntry(const JSTaggedValue &key) in FindEntry()
104 inline bool ContainsModule(const JSTaggedValue &key) in ContainsModule()
110 inline JSTaggedValue GetModule(const JSTaggedValue &key) in GetModule()
118 const JSHandle<JSTaggedValue> &key, in SetEntry()

12345678910>>...24