/third_party/node/deps/npm/node_modules/@colors/colors/lib/ |
H A D | extendStringPrototype.js | 46 var x = Object.keys(colors.styles); 68 Object.keys(theme).forEach(function(prop) {
|
/third_party/node/deps/npm/node_modules/color-convert/ |
H A D | index.js | 6 const models = Object.keys(conversions); 71 const routeModels = Object.keys(routes);
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | common_test.py | 28 gyp.common.TopologicallySorted(graph.keys(), GetEdge), ["a", "c", "d", "b"] 44 gyp.common.CycleError, gyp.common.TopologicallySorted, graph.keys(), GetEdge
|
H A D | mac_tool.py | 176 def ExecCopyInfoPlist(self, source, dest, convert_to_binary, *keys): 184 if keys: 185 plist.update(json.loads(keys[0])) 212 # Remove any keys with values that haven't been replaced. 362 def ExecCompileXcassets(self, keys, *inputs): 366 |keys| arguments is a json-encoded dictionary of extra arguments to 415 if keys: 416 keys = json.loads(keys) 417 for key, value in keys [all...] |
/third_party/node/deps/npm/node_modules/@tufjs/models/dist/utils/ |
H A D | guard.js | 23 Object.keys(value).every((k) => typeof k === 'string') && 30 Object.keys(value).every((k) => typeof k === 'string') &&
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
H A D | data_structures.py | 39 def keys(self): member in DictOfStringSets 40 """Return an iterator over keys.""" 41 return self.d.keys()
|
/third_party/skia/src/gpu/ |
H A D | GrThreadSafePipelineBuilder.cpp | 53 void GrThreadSafePipelineBuilder::Stats::dumpKeyValuePairs(SkTArray<SkString>* keys, in dumpKeyValuePairs() argument 55 keys->push_back(SkString("shader_compilations")); values->push_back(fShaderCompilations); in dumpKeyValuePairs()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | modularizeLibrary_ErrorFromUsingES6FeaturesWithOnlyES5Lib.js | 14 m.keys(); 68 m.keys();
|
H A D | modularizeLibrary_TargetES6UsingES6Lib.js | 13 m.keys(); 66 m.keys();
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_debugobj.py | 40 self.assertEqual(list(ti.keys()), [0, 1, 2]) 53 self.assertEqual(ti.keys(), [0, 1, 2])
|
/kernel/linux/linux-6.6/tools/perf/ |
H A D | builtin-lock.c | 318 struct lock_key *keys = report_keys; in select_key() local 321 keys = contention_keys; in select_key() 323 for (i = 0; keys[i].name; i++) { in select_key() 324 if (!strcmp(keys[i].name, sort_key)) { in select_key() 325 compare = keys[i].key; in select_key() 328 if (list_empty(&keys[i].list)) in select_key() 329 list_add_tail(&keys[i].list, &lock_keys); in select_key() 342 struct lock_key *keys = report_keys; in add_output_field() local 345 keys = contention_keys; in add_output_field() 347 for (i = 0; keys[ in add_output_field() 366 struct lock_key *keys = report_keys; setup_output_field() local 2145 struct lock_key *keys = contention_keys; __cmd_contention() local [all...] |
/drivers/hdf_core/framework/tools/hdf_dev_eco_tool/command_line/ |
H A D | hdf_delete_handler.py | 44 help=' '.join(self.handlers.keys()), 60 driver_config_index.keys())) 72 driver_config_index.keys())) 325 board_name_list = list(res_json_format.keys()) 352 model_info_key_list = list(model_info.keys()) 354 file_list = list(model_info[key_name].keys()) 384 model_info_key_list = list(model_info.keys()) 386 file_list = list(model_info[key_name].keys())
|
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | mac_tool.py | 176 def ExecCopyInfoPlist(self, source, dest, convert_to_binary, *keys): 184 if keys: 185 plist.update(json.loads(keys[0])) 212 # Remove any keys with values that haven't been replaced. 362 def ExecCompileXcassets(self, keys, *inputs): 366 |keys| arguments is a json-encoded dictionary of extra arguments to 415 if keys: 416 keys = json.loads(keys) 417 for key, value in keys [all...] |
/third_party/node/test/fixtures/wpt/WebCryptoAPI/wrapKey_unwrapKey/ |
H A D | wrapKey_unwrapKey.https.any.js | 9 var wrappers = []; // Things we wrap (and upwrap) keys with 10 var keys = []; // Things to wrap and unwrap variable 12 // Generate all the keys needed, then iterate over all combinations 19 keys.forEach(function(key) { 108 keys.push({name: params.algorithm.name, algorithm: params.algorithm, usages: params.usages, key: result}); 110 keys.push({name: params.algorithm.name + " public key", algorithm: params.algorithm, usages: params.publicUsages, key: result.publicKey}); 111 keys.push({name: params.algorithm.name + " private key", algorithm: params.algorithm, usages: params.privateUsages, key: result.privateKey}); 152 }, "Can wrap and unwrap " + toWrap.name + " keys using " + fmt + " and " + wrapper.parameters.name); 172 }, "Can wrap and unwrap " + toWrap.name + " keys as non-extractable using " + fmt + " and " + wrapper.parameters.name); 199 }, "Can unwrap " + toWrap.name + " non-extractable keys usin [all...] |
/third_party/python/Lib/tkinter/test/ |
H A D | widget_tests.py | 188 keys = widget.keys() 189 self.assertEqual(sorted(keys), sorted(widget.configure())) 190 for k in keys: 192 # Test if OPTIONS contains all keys 201 keys = set(keys) 203 for k in sorted(keys - expected): 205 aliases[k] in keys and
|
/third_party/gn/src/gn/ |
H A D | string_atom_unittest.cc | 132 // Verify that allocating more than 128 string keys works properly. 134 std::vector<StringAtom> keys; 142 keys.push_back(StringAtom(string_for(nn))); 146 ASSERT_EQ(keys[nn].str(), string_for(nn));
|
/third_party/mbedtls/scripts/ |
H A D | generate_psa_constants.py | 276 return ''.join([make(k, d[k]) for k in sorted(d.keys())]) 281 return ''.join([make(k, d[k]) for k in sorted(d.keys())]) 304 return ''.join([make(k, d[k]) for k in sorted(d.keys())])
|
/third_party/node/deps/v8/third_party/ittapi/ |
H A D | buildall.py | 51 keys = [] 57 keys.append(key) 63 for key in keys:
|
/third_party/node/test/parallel/ |
H A D | test-cluster-basic.js | 46 Object.keys(obj).forEach((name, index) => { 92 const stateNames = Object.keys(checks.worker.states); 144 assert.strictEqual(Object.keys(arguments[0]).length, 4);
|
/third_party/node/test/fixtures/wpt/WebCryptoAPI/digest/ |
H A D | digest.https.any.js | 47 Object.keys(sourceData).forEach(function(size) { 48 Object.keys(digestedData).forEach(function(alg) { 104 Object.keys(sourceData).forEach(function(size) {
|
/third_party/node/deps/npm/node_modules/chalk/source/vendor/ansi-styles/ |
H A D | index.js | 68 export const modifierNames = Object.keys(styles.modifier); 69 export const foregroundColorNames = Object.keys(styles.color); 70 export const backgroundColorNames = Object.keys(styles.bgColor);
|
/third_party/node/deps/npm/node_modules/http-proxy-agent/dist/ |
H A D | index.js | 91 for (const name of Object.keys(headers)) { 138 function omit(obj, ...keys) { 142 if (!keys.includes(key)) {
|
/third_party/node/deps/npm/node_modules/ansi-styles/ |
H A D | index.js | 68 export const modifierNames = Object.keys(styles.modifier); 69 export const foregroundColorNames = Object.keys(styles.color); 70 export const backgroundColorNames = Object.keys(styles.bgColor);
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-reflect.cc | 8 #include "src/objects/keys.h" 88 Handle<FixedArray> keys; in BUILTIN() local 90 isolate, keys, in BUILTIN() 94 return *isolate->factory()->NewJSArrayWithElements(keys); in BUILTIN()
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-forin.cc | 13 #include "src/objects/keys.h" 34 Handle<FixedArray> keys; in Enumerate() local 36 isolate, keys, in Enumerate() 42 if (!accumulator.is_receiver_simple_enum()) return keys; in Enumerate()
|