/third_party/skia/include/core/ |
H A D | SkScalar.h | 169 /** Interpolate along the function described by (keys[length], values[length]) 170 for the passed searchKey. SearchKeys outside the range keys[0]-keys[Length] 174 Repeated keys are allowed for discontinuous functions (so long as keys is 176 keys the first one will be used. 178 SkScalar SkScalarInterpFunc(SkScalar searchKey, const SkScalar keys[],
|
/third_party/skia/infra/bots/recipes/ |
H A D | skpbench.py | 154 for k in sorted(api.vars.builder_cfg.keys()):
|
/third_party/skia/bench/ |
H A D | check_bench_regressions.py | 98 keys = Label objects 179 ratios = exceptions[i].keys()
|
/third_party/vk-gl-cts/external/vulkancts/scripts/ |
H A D | gen_ext_deps.py | 83 extNames = sorted(coreVersionsDict.keys())
|
H A D | ohos_gen_ext_deps.py | 84 extNames = sorted(coreVersionsDict.keys())
|
/third_party/vk-gl-cts/framework/delibs/depool/ |
H A D | dePoolHashSet.h | 157 * \param CMPFUNC Function used for exact matching of the keys. 197 KEYARRAYTYPENAME##_set(keyArray, arrayNdx, slot->keys[elemNdx]); \
|
/foundation/arkui/ace_engine_lite/frameworks/native_engine/jsi/test/unittest/common/ |
H A D | jsi_interface_tdd_test.cpp | 783 JSIValue keys = JSI::GetObjectKeys(object); in JSIInterfaceTest021() local 784 JSIValue keyValue1 = JSI::GetPropertyByIndex(keys, 0); in JSIInterfaceTest021() 785 JSIValue keyValue2 = JSI::GetPropertyByIndex(keys, 1); in JSIInterfaceTest021() 802 JSI::ReleaseValueList(object, keys, keyValue1, keyValue2); in JSIInterfaceTest021()
|
/foundation/distributeddatamgr/data_share/frameworks/native/provider/src/ |
H A D | js_datashare_ext_ability.cpp | 152 napi_value keys = 0; in UnwrapBatchUpdateResult() local 153 if (napi_get_property_names(env, info, &keys) != napi_ok) { in UnwrapBatchUpdateResult() 159 if (napi_get_array_length(env, keys, &arrLen) != napi_ok) { in UnwrapBatchUpdateResult() 165 if (napi_get_element(env, keys, i, &key) != napi_ok) { in UnwrapBatchUpdateResult()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/ |
H A D | distributeddb_storage_data_operation_test.cpp | 417 std::vector<Key> keys; in HWTEST_F() local 420 keys.push_back(keyTmp); in HWTEST_F() 422 keys.push_back(keyTmp); in HWTEST_F() 425 * @tc.steps:step3. DeleteBatch keys from database by DeleteBatch in HWTEST_F() 428 errCode = g_connection->DeleteBatch(option, keys); in HWTEST_F()
|
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/src/ |
H A D | napi_transaction.cpp | 118 napi_value keys = nullptr; in ParseValuesBucket() local 120 static_cast<napi_key_filter>(napi_key_enumerable | napi_key_skip_symbols), napi_key_numbers_to_strings, &keys); in ParseValuesBucket() 122 status = napi_get_array_length(env, keys, &arrLen); in ParseValuesBucket() 127 status = napi_get_element(env, keys, i, &key); in ParseValuesBucket()
|
/foundation/distributeddatamgr/relational_store/interfaces/ndk/src/ |
H A D | relational_store.cpp | 683 std::vector<OHOS::NativeRdb::RdbStore::PRIKey> keys; in OH_Rdb_FindModifyTime() local 684 keys.reserve(objects.size()); in OH_Rdb_FindModifyTime() 688 keys.push_back(std::move(priKey)); in OH_Rdb_FindModifyTime() 690 auto results = rdbStore->GetStore()->GetModifyTime(tableName, columnName, keys); in OH_Rdb_FindModifyTime()
|
/kernel/linux/linux-5.10/drivers/hid/usbhid/ |
H A D | hid-pidff.c | 109 /* Special field key tables used to put special field keys into arrays */ 894 static int pidff_find_special_keys(int *keys, struct hid_field *fld, in pidff_find_special_keys() argument 904 keys[i] = j + 1; in pidff_find_special_keys() 913 #define PIDFF_FIND_SPECIAL_KEYS(keys, field, name) \ 914 pidff_find_special_keys(pidff->keys, pidff->field, pidff_ ## name, \
|
/kernel/linux/linux-5.10/tools/perf/ |
H A D | builtin-kvm.c | 486 static struct kvm_event_key keys[] = { variable 496 for (i = 0; keys[i].name; i++) { in select_key() 497 if (!strcmp(keys[i].name, kvm->sort_key)) { in select_key() 498 kvm->compare = keys[i].key; in select_key()
|
/kernel/linux/linux-6.6/drivers/hid/usbhid/ |
H A D | hid-pidff.c | 109 /* Special field key tables used to put special field keys into arrays */ 894 static int pidff_find_special_keys(int *keys, struct hid_field *fld, in pidff_find_special_keys() argument 904 keys[i] = j + 1; in pidff_find_special_keys() 913 #define PIDFF_FIND_SPECIAL_KEYS(keys, field, name) \ 914 pidff_find_special_keys(pidff->keys, pidff->field, pidff_ ## name, \
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/parser/ |
H A D | oh_jsunit_parser.py | 270 ids_in_suites = [_id for _id in report_listener.suites.keys()] 271 ids_in_result = [_id for _id in report_listener.suite_distributions.keys()] 320 all_suite_set = set(self.runner.expect_tests_dict.keys()) 706 if self.current_value not in self.all_result_dict.keys():
|
/third_party/node/lib/ |
H A D | _tls_wrap.js | 1514 Server.prototype.setTicketKeys = function setTicketKeys(keys) { 1515 validateBuffer(keys); 1516 assert(keys.byteLength === 48, 1517 'Session ticket keys must be a 48-byte buffer'); 1518 this._sharedCreds.context.setTicketKeys(keys);
|
/third_party/node/src/ |
H A D | node_report.cc | 392 Local<Array> keys; in PrintJavaScriptErrorProperties() local 393 if (!error_obj->GetOwnPropertyNames(context).ToLocal(&keys)) { in PrintJavaScriptErrorProperties() 396 uint32_t keys_length = keys->Length(); in PrintJavaScriptErrorProperties() 399 if (!keys->Get(context, i).ToLocal(&key) || !key->IsString()) { in PrintJavaScriptErrorProperties()
|
/third_party/nghttp2/src/ |
H A D | shrpx_connection_handler.cc | 903 if (!ticket_keys || ticket_keys->keys.empty()) { in on_tls_ticket_key_get_success() 904 LOG(WARN) << "Memcached: tls ticket keys are empty; tls ticket disabled"; in on_tls_ticket_key_get_success() 911 LOG(INFO) << "ticket keys get done"; in on_tls_ticket_key_get_success() 913 << util::format_hex(ticket_keys->keys[0].data.name); in on_tls_ticket_key_get_success() 914 for (size_t i = 1; i < ticket_keys->keys.size(); ++i) { in on_tls_ticket_key_get_success() 915 auto &key = ticket_keys->keys[i]; in on_tls_ticket_key_get_success()
|
/third_party/littlefs/scripts/ |
H A D | perfbd.py | 669 names = list(table.keys() | diff_table.keys()) 821 names_ = list(table_.keys()) 929 for path in co.OrderedDict.fromkeys(r.file for r in results).keys():
|
/third_party/node/deps/v8/src/debug/ |
H A D | debug-evaluate.cc | 277 Handle<FixedArray> keys = in UpdateValues() local 283 for (int i = 0; i < keys->length(); i++) { in UpdateValues() 284 DCHECK(keys->get(i).IsString()); in UpdateValues() 285 Handle<String> key(String::cast(keys->get(i)), isolate_); in UpdateValues()
|
H A D | debug-scopes.cc | 958 Handle<FixedArray> keys = in VisitLocalScope() local 963 for (int i = 0; i < keys->length(); i++) { in VisitLocalScope() 965 DCHECK(keys->get(i).IsString()); in VisitLocalScope() 966 Handle<String> key(String::cast(keys->get(i)), isolate_); in VisitLocalScope()
|
/third_party/python/Lib/multiprocessing/ |
H A D | managers.py | 51 view_types = [type(getattr({}, name)()) for name in ('items','keys','values')] 344 keys = list(self.id_to_refcount.keys()) 345 keys.sort() 346 for ident in keys: 1167 'keys', 'pop', 'popitem', 'setdefault', 'update', 'values'
|
/third_party/protobuf/js/ |
H A D | message.js | 1632 var keys = {}; 1634 keys[name] = 0; 1637 keys[name] = 0; 1639 for (name in keys) {
|
/third_party/python/Lib/test/ |
H A D | test_plistlib.py | 611 self.assertEqual(list(pl2.keys()), ['a', 'b', 'c']) 613 self.assertEqual(list(pl2.keys()), ['b', 'a', 'c']) 629 self.assertEqual(list(pl2.keys()), ['a', 'b', 'c']) 631 self.assertEqual(list(pl2.keys()), ['b', 'a', 'c'])
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | ap_config.c | 666 static void hostapd_config_free_wep(struct hostapd_wep_keys *keys) in hostapd_config_free_wep() argument 670 bin_clear_free(keys->key[i], keys->len[i]); in hostapd_config_free_wep() 671 keys->key[i] = NULL; in hostapd_config_free_wep() 1518 /* individual keys are not use; can use key idx0 for in hostapd_set_security_params() 1519 * broadcast keys */ in hostapd_set_security_params()
|