Home
last modified time | relevance | path

Searched refs:keystr (Results 1 – 15 of 15) sorted by relevance

/external/skqp/infra/bots/recipes/
Dcompute_buildstats.py88 keystr = ' '.join(keys)
103 return (keystr, propstr)
108 (keystr, propstr) = keys_and_props(api)
116 args=[f, out_dir, keystr, propstr])
121 (keystr, propstr) = keys_and_props(api)
130 args=[f, out_dir, keystr, propstr, bloaty_exe])
135 (keystr, propstr) = keys_and_props(api)
146 args=[stripped, out_dir, keystr, propstr, bloaty_exe,
165 (keystr, propstr) = keys_and_props(api)
175 args=[f, out_dir, keystr, propstr, bloaty_exe],
/external/python/cpython2/Mac/Modules/
DNav.c138 char *keystr; in filldialogoptions() local
148 keystr = PyString_AsString(key); in filldialogoptions()
149 if( strcmp(keystr, "defaultLocation") == 0 ) { in filldialogoptions()
159 } else if( strcmp(keystr, "version") == 0 ) { in filldialogoptions()
162 } else if( strcmp(keystr, "dialogOptionFlags") == 0 ) { in filldialogoptions()
165 } else if( strcmp(keystr, "location") == 0 ) { in filldialogoptions()
168 } else if( strcmp(keystr, "clientName") == 0 ) { in filldialogoptions()
171 } else if( strcmp(keystr, "windowTitle") == 0 ) { in filldialogoptions()
174 } else if( strcmp(keystr, "actionButtonLabel") == 0 ) { in filldialogoptions()
177 } else if( strcmp(keystr, "cancelButtonLabel") == 0 ) { in filldialogoptions()
[all …]
/external/skia/infra/bots/recipes/
Dcompute_buildstats.py118 keystr = ' '.join(keys)
133 return (keystr, propstr)
138 (keystr, propstr) = keys_and_props(api)
146 args=[f, out_dir, keystr, propstr, TOTAL_SIZE_BYTES_KEY,
165 (keystr, propstr) = keys_and_props(api)
174 args=[f, out_dir, keystr, propstr, bloaty_exe, TOTAL_SIZE_BYTES_KEY,
193 (keystr, propstr) = keys_and_props(api)
206 args=[stripped, out_dir, keystr, propstr, bloaty_exe,
232 (keystr, propstr) = keys_and_props(api)
242 args=[f, out_dir, keystr, propstr, bloaty_exe,
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
DConfigLoader.java57 final String keystr = entry.getKey().toString(); in loadSystemProperties() local
58 if (keystr.startsWith(SYS_PREFIX)) { in loadSystemProperties()
59 result.put(keystr.substring(SYS_PREFIX.length()), in loadSystemProperties()
/external/skqp/infra/bots/buildstats/
Dbuildstats_web.py18 keystr = sys.argv[3]
30 keys = keystr.split(' ')
Dbuildstats_wasm.py18 keystr = sys.argv[3]
46 keys = keystr.split(' ')
Dbuildstats_cpp.py20 keystr = sys.argv[3]
33 keys = keystr.split(' ')
Dbuildstats_flutter.py20 keystr = sys.argv[3]
36 keys = keystr.split(' ')
/external/skia/infra/bots/buildstats/
Dbuildstats_web.py19 keystr = sys.argv[3]
33 keys = keystr.split(' ')
Dbuildstats_wasm.py19 keystr = sys.argv[3]
48 keys = keystr.split(' ')
Dbuildstats_cpp.py21 keystr = sys.argv[3]
36 keys = keystr.split(' ')
Dbuildstats_flutter.py21 keystr = sys.argv[3]
41 keys = keystr.split(' ')
/external/fastrpc/src/
Dfastrpc_perf.c110 char *keystr = pdsp->keys; in get_perf_adsp() local
116 token = keystr; in get_perf_adsp()
117 keystr += strlen(token) + 1; in get_perf_adsp()
/external/python/cpython2/Lib/plat-mac/
Daepack.py71 keystr = key.which
73 keystr = key.want
75 keystr = key
76 ae.AEPutParamDesc(keystr, pack(value))
/external/python/cpython3/Modules/_sqlite/
Dcursor.c98 _pysqlite_get_converter(const char *keystr, Py_ssize_t keylen) in _pysqlite_get_converter() argument
105 key = PyUnicode_FromStringAndSize(keystr, keylen); in _pysqlite_get_converter()