/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | symbol_table_test.cpp | 55 * Function: IsMatch 61 HWTEST_F_L0(SymbolTableTest, IsMatch) in HWTEST_F_L0() 69 EXPECT_EQ(SymbolTable::IsMatch(symbolTableName1, symbolTableOther), false); in HWTEST_F_L0() 72 EXPECT_EQ(SymbolTable::IsMatch(symbolTableName2, symbolTableOther), false); in HWTEST_F_L0() 75 EXPECT_EQ(SymbolTable::IsMatch(symbolTableName3, symbolTableOther), true); in HWTEST_F_L0()
|
H A D | transitions_dictionary_test.cpp | 30 HWTEST_F_L0(TransitionsDictionaryTest, IsMatch) in HWTEST_F_L0() 36 bool result = TransitionsDictionary::IsMatch(key.GetTaggedValue(), metaData.GetTaggedValue(), in HWTEST_F_L0() 40 result = TransitionsDictionary::IsMatch(key.GetTaggedValue(), metaData.GetTaggedValue(), in HWTEST_F_L0()
|
H A D | global_dictionary_test.cpp | 28 * @tc.name: IsMatch 29 * @tc.desc: Check whether two JSTaggedValue is equal through calling IsMatch function is within expectations. 33 HWTEST_F_L0(GlobalDictionaryTest, IsMatch) in HWTEST_F_L0() 40 EXPECT_EQ(GlobalDictionary::IsMatch(globalKey.GetTaggedValue(), globalOtherKey), true); in HWTEST_F_L0() 41 EXPECT_EQ(GlobalDictionary::IsMatch(globalKey.GetTaggedValue(), JSTaggedValue::Undefined()), false); in HWTEST_F_L0()
|
H A D | tagged_dictionary_test.cpp | 323 * @tc.desc: Call the "IsMatch" function to determine whether the key in the dictionary is equal to the defined key. 334 result = NumberDictionary::IsMatch(numberKey1, numberKey2); in HWTEST_F_L0() 337 result = NumberDictionary::IsMatch(numberKey1, numberKey1); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | tagged_dictionary.h | 47 static bool PUBLIC_API IsMatch(const JSTaggedValue &key, const JSTaggedValue &other); 48 static bool IsMatch(const uint8_t* str, int size, const JSTaggedValue &other); 115 static bool PUBLIC_API IsMatch(const JSTaggedValue &key, const JSTaggedValue &other); 184 static bool IsMatch(const JSTaggedValue &key, const JSTaggedValue &other) in IsMatch() function in panda::ecmascript::PointerToIndexDictionary
|
H A D | transitions_dictionary.h | 28 static inline bool IsMatch([[maybe_unused]] const JSTaggedValue &key, in IsMatch() function in panda::ecmascript::TransitionsDictionary 40 static inline bool IsMatch(const JSTaggedValue &key, const JSTaggedValue &metaData, const JSTaggedValue &otherKey, in IsMatch() function in panda::ecmascript::TransitionsDictionary
|
H A D | template_map.h | 26 static inline bool IsMatch(const JSTaggedValue &key, const JSTaggedValue &other) in IsMatch() function in panda::ecmascript::TemplateMap
|
H A D | symbol_table.h | 50 static inline bool IsMatch(const JSTaggedValue &name, const JSTaggedValue &other) in IsMatch() function in panda::ecmascript::SymbolTable
|
H A D | global_dictionary.h | 49 static inline bool IsMatch(const JSTaggedValue &key, const JSTaggedValue &other);
|
H A D | linked_hash_table.h | 105 if (HashObject::IsMatch(key, element)) { in FindElement() 334 static inline bool IsMatch(JSTaggedValue key, JSTaggedValue other) in IsMatch() function in panda::ecmascript::LinkedHashMapObject 375 static inline bool IsMatch(JSTaggedValue key, JSTaggedValue other) in IsMatch() function in panda::ecmascript::LinkedHashSetObject
|
H A D | tagged_dictionary.cpp | 47 bool NameDictionary::IsMatch(const JSTaggedValue &key, const JSTaggedValue &other) in IsMatch() function in panda::ecmascript::NameDictionary 52 bool NameDictionary::IsMatch(const uint8_t* str, int size, const JSTaggedValue &other) in IsMatch() function in panda::ecmascript::NameDictionary 266 bool NumberDictionary::IsMatch(const JSTaggedValue &key, const JSTaggedValue &other) in IsMatch() function in panda::ecmascript::NumberDictionary
|
H A D | tagged_hash_table.h | 247 if (Derived::IsMatch(key, keyValue)) { in FindEntry() 270 if (Derived::IsMatch(str, strSize, keyValue)) { in FindEntry()
|
H A D | global_dictionary-inl.h | 45 bool GlobalDictionary::IsMatch(const JSTaggedValue &key, const JSTaggedValue &other) in IsMatch() function in panda::ecmascript::GlobalDictionary
|
H A D | js_hclass.cpp | 73 if (TransitionsDictionary::IsMatch(key, metaData, element, GetAttributes(entry).GetWeakRawValue())) { in FindEntry()
|
/arkcompiler/ets_runtime/ecmascript/require/ |
H A D | js_cjs_module_cache.h | 57 static inline bool IsMatch(const JSTaggedValue &fileName, const JSTaggedValue &other) in IsMatch() function in panda::ecmascript::CjsModuleCache 97 if (IsMatch(key, keyValue)) { in FindEntry()
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
H A D | pgo_profiler_info.h | 395 bool IsMatch() const in IsMatch() function in panda::ecmascript::pgo::PGOMethodIdSet::PGOMethodNameSet
|
H A D | pgo_profiler_info.cpp | 530 if (methodNameSet.second.IsMatch()) { in GetMismatchResult()
|