Home
last modified time | relevance | path

Searched defs:keys (Results 1 – 25 of 58) sorted by relevance

123

/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_shared_array_test.cpp235 std::vector<JSHandle<JSTaggedValue>> keys; in SharedArrayDefineOwnPropertyTest() local
248 std::vector<JSHandle<JSTaggedValue>> keys; in SharedArrayDefineOwnPropertyTest() local
258 std::vector<JSHandle<JSTaggedValue>>& keys, std::vector<int32_t>& vals) in SharedArrayCheckKeyValueCommon()
277 auto keys = SharedArrayDefineOwnPropertyTest(thread, obj, descVals); in HWTEST_F_L0() local
311 auto keys = SharedArrayDefineOwnPropertyTest(thread, obj, descVals); in HWTEST_F_L0() local
359 auto keys = SharedArrayDefineOwnPropertyTest(thread, obj, descVals); in HWTEST_F_L0() local
404 auto keys = SharedArrayDefineOwnPropertyTest(thread, obj, descVals); in HWTEST_F_L0() local
440 auto keys = SharedArrayDefineOwnPropertyTest(thread, obj, descVals); in HWTEST_F_L0() local
472 auto keys = SharedArrayDefineOwnPropertyTest(thread, obj, descVals); in HWTEST_F_L0() local
510 auto keys = SharedArrayDefineOwnPropertyTest(thread, obj, descVals); in HWTEST_F_L0() local
[all …]
Dbuiltins_array_test.cpp237 std::vector<JSHandle<JSTaggedValue>> keys; in DefineOwnPropertyCommonTest() local
250 std::vector<JSHandle<JSTaggedValue>> keys; in DefineOwnPropertyCommonTest() local
260 std::vector<JSHandle<JSTaggedValue>>& keys, std::vector<int32_t>& vals) in CheckKeyValueCommon()
278 auto keys = DefineOwnPropertyCommonTest(thread, obj, descVals); in HWTEST_F_L0() local
350 std::vector<JSHandle<JSTaggedValue>> keys{key0, key1, key2}; in HWTEST_F_L0() local
380 auto keys = DefineOwnPropertyCommonTest(thread, obj, descVals); in HWTEST_F_L0() local
418 auto keys = DefineOwnPropertyCommonTest(thread, obj, descVals); in HWTEST_F_L0() local
451 auto keys = DefineOwnPropertyCommonTest(thread, obj, descVals); in HWTEST_F_L0() local
482 auto keys = DefineOwnPropertyCommonTest(thread, obj, descVals); in HWTEST_F_L0() local
516 auto keys = DefineOwnPropertyCommonTest(thread, obj, descVals); in HWTEST_F_L0() local
[all …]
Dbuiltins_proxy_test.cpp96 JSHandle<TaggedArray> keys = JSObject::GetOwnPropertyKeys(thread, resultHandle); in HWTEST_F_L0() local
/arkcompiler/ets_frontend/es2panda/lexer/scripts/
Dkeywords.rb188 def collect_functions(functions, keys) argument
/arkcompiler/ets_frontend/ets2panda/lexer/scripts/
Dkeywords.rb26 def build_tree(keys) argument
/arkcompiler/ets_frontend/ets2panda/linter/src/lib/
DTypeScriptLinterConfig.ts38 const keys = Object.keys(ts.SyntaxKind); constant
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dcontainers_lightweightmap_stub_builder.h44 GateRef keys = Load(VariableType::JS_POINTER(), obj, keysOffset); in GetKey() local
Dcontainers_stub_builder.h268 GateRef keys = Load(VariableType::JS_POINTER(), obj, keysOffset); in ContainerGetKey() local
/arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/lib/
Dsummary.rb138 def except(hash, keys) argument
/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/
Dsummary.rb138 def except(hash, keys) argument
/arkcompiler/ets_runtime/ecmascript/
Dlayout_info.cpp127uint32_t *keys, JSHandle<TaggedQueue> shadowQueue, int32_t lastLength) in GetAllEnumKeys()
153 …tAllEnumKeys(JSThread *thread, int end, int offset, JSHandle<TaggedArray> keyArray, uint32_t *keys) in GetAllEnumKeys()
Djs_for_in_iterator.cpp87 TaggedArray *keys = TaggedArray::Cast(taggedKeys.GetTaggedObject()); in NextInternal() local
Dproperty_accessor.cpp164 void PropertyAccessor::AddKeysEndIfNeeded(JSHandle<TaggedArray> keys) in AddKeysEndIfNeeded()
Djs_object.cpp570 uint32_t numOfKeys, uint32_t *keys) in GetAllEnumKeys()
616 uint32_t keys = 0; in GetAllEnumKeys() local
721 uint32_t numOfElements, uint32_t *keys) in GetEnumElementKeys()
730 … JSHandle<TaggedArray> elementArray, uint32_t *keys, in CollectEnumElementsAlongProtoChain()
792 uint32_t keys = 0; in GetEnumElementKeys() local
1736 JSHandle<TaggedArray> keyArray, uint32_t *keys, in CollectEnumKeysAlongProtoChain()
1756 JSHandle<TaggedArray> keyArray, uint32_t *keys, in AppendOwnEnumPropertyKeys()
2040 JSHandle<TaggedArray> keys; in EnumerableOwnNames() local
2062 JSHandle<TaggedArray> keys = JSTaggedValue::GetOwnPropertyKeys(thread, tagObj); in EnumerableOwnNames() local
2707 JSMutableHandle<JSTaggedValue> keys(thread, JSTaggedValue::Undefined()); in EnumerateObjectProperties() local
[all …]
Dbuiltin_entries.h160 std::vector<std::string> keys; variable
Dglobal_dictionary-inl.h178 uint32_t *keys) const in GetEnumAllKeys()
/arkcompiler/runtime_core/static_core/verification/config/handlers/
Dconfig_handler_options.cpp45 PandaString keys; in GetKeys() local
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dclass_info_extractor.cpp129 JSHandle<TaggedArray> &keys, in ExtractAndReturnWhetherWithElements()
203 JSHandle<TaggedArray> &keys, in CreatePrototypeHClass()
245 JSHandle<TaggedArray> &keys, in CreateConstructorHClass()
344 …e<JSHClass> ClassInfoExtractor::CreateSendableHClass(JSThread *thread, JSHandle<TaggedArray> &keys, in CreateSendableHClass()
602 JSHandle<TaggedArray> &keys, in BuildDictionaryProperties()
848 void SendableClassDefiner::FilterDuplicatedKeys(JSThread *thread, const JSHandle<TaggedArray> &keys, in FilterDuplicatedKeys()
892 … const JSHandle<JSObject> &object, JSHandle<TaggedArray> &keys, JSHandle<TaggedArray> &properties, in BuildSendableDictionaryProperties()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_api_lightweightmap_test.cpp69 JSHandle<JSAPILightWeightMap> RemoveCommon(std::vector<JSHandle<JSTaggedValue>>& keys, in RemoveCommon()
188 std::vector<JSHandle<JSTaggedValue>> keys{}; in HWTEST_F_L0() local
208 std::vector<JSHandle<JSTaggedValue>> keys{}; in HWTEST_F_L0() local
Dlayout_info_test.cpp139 uint32_t keys = 0; in GetAllKeysCommon() local
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/generic_call_params/ts_to_sts/
Dgeneric_call_params.js109 function genericKeyof(obj, keys) { argument
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_third_tests.cpp966 Local<JSValueRef> keys[1100]; in HWTEST_F_L0() local
1007 Local<JSValueRef> keys[] = { in HWTEST_F_L0() local
1025 Local<JSValueRef> keys[] = { in HWTEST_F_L0() local
1049 const char *keys[1100]; in HWTEST_F_L0() local
1089 const char *keys[] = { in HWTEST_F_L0() local
1104 const char *keys[] = { in HWTEST_F_L0() local
1163 Local<JSValueRef> keys[] = { in HWTEST_F_L0() local
1187 Local<JSValueRef> keys[] = { in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_plain_array.cpp70 TaggedArray *keys = TaggedArray::Cast(GetKeys().GetTaggedObject()); in AdjustForward() local
152 TaggedArray *keys = TaggedArray::Cast(GetKeys().GetTaggedObject()); in Clear() local
/arkcompiler/ets_runtime/test/sharedtest/sharedtypedarray/
Dsharedtypedarray.ts709 let keys = array.keys(); variable
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_reflect.cpp266 JSHandle<TaggedArray> keys = JSTaggedValue::GetOwnPropertyKeys(thread, target); in ReflectOwnKeys() local

123