/third_party/pulseaudio/src/pulsecore/ |
H A D | modargs.h | 35 /* Parse the string args. The NULL-terminated array keys contains all valid arguments. */ 36 pa_modargs *pa_modargs_new(const char *args, const char* const keys[]); 37 /* Parse the string args, and add any keys that are not already present. */ 94 * key string for the next entry. The keys in the argument list do not
|
/third_party/python/Lib/test/test_json/ |
H A D | test_dump.py | 44 def keys(self): member in TestDump.test_encode_evil_dict.D
|
/third_party/python/Lib/unittest/ |
H A D | signals.py | 38 for result in _results.keys():
|
/third_party/skia/modules/canvaskit/ |
H A D | particles.js | 5 // The keys should be well-behaved strings - they're turned into null-terminated 18 var assetKeys = Object.keys(assets || {});
|
/third_party/skia/bench/ |
H A D | Benchmark.h | 81 virtual void getGpuStats(SkCanvas*, SkTArray<SkString>* keys, SkTArray<double>* values) {} in getGpuStats() argument
|
/third_party/vk-gl-cts/scripts/ |
H A D | launchcontrol_build.py | 81 choices=BUILD_CONFIGS.keys(),
|
/third_party/zlib/ |
H A D | zlib2ansi | 60 my $pMatch = '(\b' . join('|', keys %pList) . '\b)\W*$' ;
|
/drivers/hdf_core/framework/tools/hdf_dev_eco_tool/ |
H A D | hdf_tool_settings.py | 69 return ','.join(self.settings.get(key).keys()) 124 return list(self.settings.get(key).keys())
|
/test/testfwk/arkxtest/hamock/src/main/mock/ |
H A D | MockKit.js | 212 let keys = Reflect.ownKeys(object); 213 keys.filter(key => (typeof Reflect.get(object, key)) === 'function')
|
/test/testfwk/arkxtest/jsunit/src/module/assert/deepEquals/ |
H A D | assertDeepEquals.js | 239 const aKeys = DeepTypeUtils.keys(a, aClassName === '[object Array]'); 243 if (DeepTypeUtils.keys(b, bClassName === '[object Array]').length !== size) {
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/mapper/ |
H A D | Bcp47Mapper.java | 192 // addKeyMapValues() method, it appears to just be a way to distinguish keys added via 200 Set<AttributeKey> keys = in addInfoAttributes() 202 for (AttributeKey a : keys) { in addInfoAttributes()
|
/third_party/jerryscript/tests/jerry/es2015/ |
H A D | array-from.js | 33 var aProps = Object.keys(a); 35 var bProps = Object.keys(b);
|
/third_party/mbedtls/ |
H A D | Makefile | 134 CTR_DRBG_128_BIT_KEY_WARN_L2=**** Using 128-bit keys for CTR_DRBG limits the security of generated ****\n 135 CTR_DRBG_128_BIT_KEY_WARN_L3=**** keys and operations that use random values generated to 128-bit security ****\n 143 # If 128-bit keys are configured for CTR_DRBG, display an appropriate warning
|
/third_party/node/lib/internal/crypto/ |
H A D | diffiehellman.js | 50 } = require('internal/crypto/keys'); 150 const keys = this[kHandle].generateKeys(); 152 return encode(keys, encoding); 335 throw lazyDOMException('Keys must be ECDH, X25519, or X448 keys', 'InvalidAccessError'); 340 'The public and private keys must be of the same type',
|
H A D | keygen.js | 34 } = require('internal/crypto/keys'); 115 const { 0: err, 1: keys } = ret; 119 const { 0: publicKey, 1: privateKey } = keys;
|
/third_party/node/test/parallel/ |
H A D | test-util-types.js | 56 for (const key of Object.keys(types)) { 265 for (const testedFunc of Object.keys(expected)) {
|
/third_party/node/deps/npm/node_modules/columnify/ |
H A D | columnify.js | 59 // if not suppled column names, automatically determine columns from data keys 111 var changedKeys = Object.keys(col); 265 var keysArray = Object.keys(Object(nextSource));
|
H A D | index.js | 53 // if not suppled column names, automatically determine columns from data keys 105 let changedKeys = Object.keys(col) 254 var keysArray = Object.keys(Object(nextSource));
|
/third_party/node/deps/npm/lib/commands/ |
H A D | token.js | 149 Object.keys(result).forEach(k => this.npm.output(k + '\t' + result[k])) 152 for (const k of Object.keys(result)) {
|
/third_party/node/deps/npm/node_modules/cacache/lib/ |
H A D | verify.js | 50 Object.keys(s).forEach((k) => { 207 Object.keys(buckets),
|
/third_party/node/deps/npm/node_modules/cli-table3/src/ |
H A D | layout-manager.js | 30 Object.keys(alloc).forEach((idx) => { 158 let key = Object.keys(row)[0];
|
/third_party/node/deps/npm/node_modules/npm-profile/lib/ |
H A D | index.js | 188 Object.keys(result).forEach(k => { 214 Object.keys(profile).forEach(key => { 215 // profile keys can't be empty strings, but they CAN be null
|
/third_party/node/deps/npm/test/fixtures/ |
H A D | mock-npm.js | 35 `Received the following top level entries: ${Object.keys(globalDir).join(', ')}.` 169 const npmEnvs = Object.keys(process.env).filter(k => k.startsWith('npm_'))
|
/third_party/mesa3d/src/panfrost/bifrost/ |
H A D | bifrost_isa.py | 238 # Drop keys used for packing to simplify IR representation, so we can check for 258 seen = [op for op in instructions.keys() if op[1:] == key] 297 sorted_instrs = sorted(instructions.keys(), key = key_func)
|
/third_party/python/Lib/dbm/ |
H A D | dumb.py | 61 # file, and holds the values associated with keys. Each value 68 self._index = None # maps keys to (pos, siz) pairs 193 raise TypeError("keys must be bytes or strings") 239 def keys(self): member in _Database 247 return [(key, self[key]) for key in self._index.keys()]
|