Home
last modified time | relevance | path

Searched refs:key1 (Results 176 - 200 of 407) sorted by relevance

12345678910>>...17

/third_party/node/deps/cares/src/lib/
H A Dares__htable.h79 * \param[in] key1 first key
83 typedef ares_bool_t (*ares__htable_key_eq_t)(const void *key1,
/third_party/skia/tests/
H A DResourceCacheTest.cpp1060 GrUniqueKey key1, key2, key3; in test_purge_invalidated() local
1061 make_unique_key<0>(&key1, 1); in test_purge_invalidated()
1070 a->resourcePriv().setUniqueKey(key1); in test_purge_invalidated()
1077 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key1)); in test_purge_invalidated()
1086 Bus::Post(Msg(key1, dContext->priv().contextID())); in test_purge_invalidated()
1090 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1)); in test_purge_invalidated()
1128 GrUniqueKey key1, key2; in test_cache_chained_purge() local
1129 make_unique_key<0>(&key1, 1); in test_cache_chained_purge()
1134 a->resourcePriv().setUniqueKey(key1); in test_cache_chained_purge()
1375 GrUniqueKey key1, key in test_partial_purge() local
1462 GrUniqueKey key1, key2; test_custom_data() local
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/cloud/
H A Ddistributeddb_cloud_kvstore_test.cpp1025 Key key1({'k', '1'}); in HWTEST_F()
1028 EXPECT_EQ(kvDelegatePtrS1_->Get(key1, actualValue), OK); in HWTEST_F()
1030 EXPECT_EQ(CheckFlag(key1, LogInfoFlag::FLAG_LOCAL), OK); // flag become 0x2; in HWTEST_F()
1157 Key key1({'k', '1'}); in HWTEST_F()
1158 EXPECT_EQ(kvDelegatePtrS1_->Get(key1, actualValue), NOT_FOUND); in HWTEST_F()
1214 Key key1({'k', '1'}); in HWTEST_F()
1217 EXPECT_EQ(kvDelegatePtrS1_->Get(key1, actualValue), OK); in HWTEST_F()
1220 EXPECT_EQ(kvDelegatePtrS1_->Get(key1, actualValue), OK); in HWTEST_F()
1222 EXPECT_EQ(CheckFlag(key1, LogInfoFlag::FLAG_CLOUD_WRITE), OK); // flag still 0x100; in HWTEST_F()
1225 EXPECT_EQ(kvDelegatePtrS1_->Get(key1, actualValu in HWTEST_F()
1556 Key key1 = {'k', '1'}; HWTEST_F() local
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/test/unittest/oh_adapter/
H A Ddocumentdb_json_common_test.cpp558 string document = R"({"_id" : "001", "key1" : {"key2" : {"key3" : {"key4" : 123, "k42" : "v42"}, "k32" : "v32"}, in HWTEST_F()
560 string document2 = R"({"_id" : "002", "key1" : {"key2" : {"key3" : {"key4" : 123, "k42" : "v42"}, "k32" : "v32"}}, in HWTEST_F()
562 const char *filter = R"({"key1" : {"key2" : {"key3" : {"key4" : 123, "k42" : "v42"}, "k32" : "v32"}}})"; in HWTEST_F()
563 const char *filter2 = R"({"key1" : {"k22" : "v22", "key2" : {"key3" : {"key4" : 123, "k42" : "v42"}, in HWTEST_F()
580 string document = R"({"_id" : "001", "key1" : {"key2" : {"key3" : {"key4" : 123, "k42" : "v42"}, "k32" : "v32"}, in HWTEST_F()
582 string document2 = R"({"_id" : "002", "key1" : {"key2" : {"key3" : {"key4" : 123}, "k32" : "v32"}, "k22" : "v22"}, in HWTEST_F()
/third_party/node/deps/v8/src/profiler/
H A Dstrings-storage.h57 static bool StringsMatch(void* key1, void* key2);
H A Dstrings-storage.cc16 bool StringsStorage::StringsMatch(void* key1, void* key2) { in StringsMatch() argument
17 return strcmp(reinterpret_cast<char*>(key1), reinterpret_cast<char*>(key2)) == in StringsMatch()
/foundation/ability/ability_runtime/interfaces/kits/native/ability/native/ui_extension_ability/
H A Djs_ui_extension_context.h122 bool operator()(const UIExtensionConnectionKey &key1, const UIExtensionConnectionKey &key2) const in operator ()()
124 if (key1.id < key2.id) { in operator ()()
/foundation/arkui/ace_engine/frameworks/core/components/theme/tools/
H A Dbuild_theme_code.py209 for key1, values1 in values[platform].items():
210 value = '{} {} = {},'.format(value, key1, values1)
/kernel/linux/linux-5.10/tools/perf/util/
H A Dexpr.c33 static bool key_equal(const void *key1, const void *key2, in key_equal() argument
36 return !strcmp((const char *)key1, (const char *)key2); in key_equal()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/rbbi/
H A DBreakIteratorRegTest.java46 Object key1 = BreakIterator.registerInstance(sbi, Locale.US, BreakIterator.KIND_WORD); in TestRegUnreg()
88 assertTrue(BreakIterator.unregister(key1), "unregister us word (us sentence)"); in TestRegUnreg()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
H A DBreakIteratorRegTest.java43 Object key1 = BreakIterator.registerInstance(sbi, Locale.US, BreakIterator.KIND_WORD); in TestRegUnreg()
85 assertTrue(BreakIterator.unregister(key1), "unregister us word (us sentence)"); in TestRegUnreg()
/third_party/libwebsockets/lib/core/
H A Dlws_map.c97 lws_map_compare_key_default(const lws_map_key_t key1, size_t kl1, in lws_map_compare_key_default() argument
103 return memcmp(key1, key2, kl1); in lws_map_compare_key_default()
/third_party/node/deps/v8/src/third_party/vtune/
H A Dvtune-jit.cc111 bool operator () (void* key1, void* key2) const { in operator ()()
112 return key1 == key2; in operator ()()
/third_party/rust/crates/cxx/src/
H A Dsip.rs118 fn new_with_keys(key0: u64, key1: u64) -> Self { in new_with_keys()
121 k1: key1, in new_with_keys()
/third_party/openssl/test/
H A Drsa_test.c48 static int key1(RSA *key, unsigned char *c) in key1() function
222 clen = key1(*key, ctext); in rsa_setkey()
/third_party/mesa3d/src/gallium/drivers/v3d/
H A Dv3d_program.c896 fs_cache_compare(const void *key1, const void *key2) in fs_cache_compare() argument
898 return memcmp(key1, key2, sizeof(struct v3d_fs_key)) == 0; in fs_cache_compare()
902 gs_cache_compare(const void *key1, const void *key2) in gs_cache_compare() argument
904 return memcmp(key1, key2, sizeof(struct v3d_gs_key)) == 0; in gs_cache_compare()
908 vs_cache_compare(const void *key1, const void *key2) in vs_cache_compare() argument
910 return memcmp(key1, key2, sizeof(struct v3d_vs_key)) == 0; in vs_cache_compare()
914 cs_cache_compare(const void *key1, const void *key2) in cs_cache_compare() argument
916 return memcmp(key1, key2, sizeof(struct v3d_key)) == 0; in cs_cache_compare()
/foundation/ability/dmsfwk/services/dtbschedmgr/test/unittest/distributedWant/
H A Ddistributed_want_test.cpp862 std::set<std::string> key1; in CompareWant() local
864 key1 = want1->GetParams().KeySet(); in CompareWant()
866 EXPECT_EQ(key1.size(), key2.size()); in CompareWant()
868 std::set<std::string>::iterator iter1 = key1.begin(); in CompareWant()
870 for (; (iter1 != key1.end() && iter2 != key2.end()); iter1++, iter2++) { in CompareWant()
2534 std::string key1 = "cc"; in HWTEST_F() local
2536 want_->SetParam(key1, setValue1); in HWTEST_F()
2537 want_->SetParam(key1, setValue1); in HWTEST_F()
2538 want_->SetParam(key1, setValue2); in HWTEST_F()
2542 want_->SetParam(key1, setValue in HWTEST_F()
2557 std::string key1 = "%1uH3"; HWTEST_F() local
2647 std::string key1 = "dd"; HWTEST_F() local
2665 std::string key1 = "%1uH3"; HWTEST_F() local
[all...]
/foundation/ability/ability_base/test/unittest/want/
H A Dwant_test.cpp625 std::set<std::string> key1; in CompareWant() local
627 key1 = want1->GetParams().KeySet(); in CompareWant()
629 EXPECT_EQ(key1.size(), key2.size()); in CompareWant()
631 std::set<std::string>::iterator iter1 = key1.begin(); in CompareWant()
633 for (; (iter1 != key1.end() && iter2 != key2.end()); iter1++, iter2++) { in CompareWant()
2885 std::string key1 = "cc"; in HWTEST_F() local
2887 want_->SetParam(key1, setValue1); in HWTEST_F()
2888 want_->SetParam(key1, setValue1); in HWTEST_F()
2889 want_->SetParam(key1, setValue2); in HWTEST_F()
2893 want_->SetParam(key1, setValue in HWTEST_F()
2907 std::string key1 = "%1uH3"; HWTEST_F() local
2994 std::string key1 = "dd"; HWTEST_F() local
3011 std::string key1 = "%1uH3"; HWTEST_F() local
[all...]
/third_party/jerryscript/tests/jerry/
H A Dobject-get-own-property-names.js26 var obj = {key1: 'a', key3: 'b', key2: 'c', key4: 'c', key5: ''};
28 // props should contain: key1,key2,key3,key4,key5 and the order is not defined!
29 assert (props.indexOf("key1") !== -1);
/third_party/typescript/tests/baselines/reference/
H A DkeyofAndIndexedAccess.js363 function path<T, K1 extends keyof T>(obj: T, key1: K1): T[K1];
364 function path<T, K1 extends keyof T, K2 extends keyof T[K1]>(obj: T, key1: K1, key2: K2): T[K1][K2];
365 function path<T, K1 extends keyof T, K2 extends keyof T[K1], K3 extends keyof T[K1][K2]>(obj: T, key1: K1, key2: K2, key3: K3): T[K1][K2][K3];
390 const assignTo2 = <T, K1 extends keyof T, K2 extends keyof T[K1]>(object: T, key1: K1, key2: K2) =>
391 (value: T[K1][K2]) => object[key1][key2] = value;
968 var assignTo2 = function (object, key1, key2) {
969 return function (value) { return object[key1][key2] = value; };
1255 declare function path<T, K1 extends keyof T>(obj: T, key1: K1): T[K1];
1256 declare function path<T, K1 extends keyof T, K2 extends keyof T[K1]>(obj: T, key1: K1, key2: K2): T[K1][K2];
1257 declare function path<T, K1 extends keyof T, K2 extends keyof T[K1], K3 extends keyof T[K1][K2]>(obj: T, key1
[all...]
/third_party/node/deps/v8/src/base/
H A Dhashmap.h440 bool operator()(uint32_t hash1, uint32_t hash2, const Key& key1, in operator ()()
442 return hash1 == hash2 && match_(key1, key2); in operator ()()
486 bool operator()(uint32_t hash1, uint32_t hash2, const Key& key1, in operator ()()
488 return key1 == key2; in operator ()()
/third_party/mesa3d/src/gallium/drivers/lima/
H A Dlima_program.c733 lima_fs_cache_compare(const void *key1, const void *key2) in lima_fs_cache_compare() argument
735 return memcmp(key1, key2, sizeof(struct lima_fs_key)) == 0; in lima_fs_cache_compare()
739 lima_vs_cache_compare(const void *key1, const void *key2) in lima_vs_cache_compare() argument
741 return memcmp(key1, key2, sizeof(struct lima_vs_key)) == 0; in lima_vs_cache_compare()
/kernel/linux/linux-5.10/fs/ubifs/
H A Dorphan.c694 union ubifs_key key1, key2; in do_kill_orphans() local
698 ino_key_init(c, &key1, inum); in do_kill_orphans()
699 err = ubifs_tnc_lookup(c, &key1, ino); in do_kill_orphans()
711 lowest_ino_key(c, &key1, inum); in do_kill_orphans()
714 err = ubifs_tnc_remove_range(c, &key1, &key2); in do_kill_orphans()
/kernel/linux/linux-6.6/fs/ubifs/
H A Dorphan.c694 union ubifs_key key1, key2; in do_kill_orphans() local
698 ino_key_init(c, &key1, inum); in do_kill_orphans()
699 err = ubifs_tnc_lookup(c, &key1, ino); in do_kill_orphans()
711 lowest_ino_key(c, &key1, inum); in do_kill_orphans()
714 err = ubifs_tnc_remove_range(c, &key1, &key2); in do_kill_orphans()
/third_party/curl/lib/
H A Dhash.h41 typedef size_t (*comp_function) (void *key1,

Completed in 33 milliseconds

12345678910>>...17