Home
last modified time | relevance | path

Searched refs:val (Results 1 – 18 of 18) sorted by relevance

/development/scripts/
Dbattery_simulator.py49 val = input("Type NUMBER, 'on', 'off' or 'q' > ").lower()
53 if val == 'q':
55 if val == "on":
58 if val == "off":
61 if re.match("\d+", val):
62 echo_run("adb shell dumpsys battery set level %s" % val)
/development/testrunner/
Dam_instrument_parser.py87 val = ''
97 val = re_result.search(line).group(2).strip(string.whitespace)
99 result_dict[key] = float(val)
101 result_dict[key] = val
103 result_dict[key] = val
107 val = re_code.search(line).group(1).strip(string.whitespace)
108 result_dict[key] = val
112 val = ''
113 result_dict[key] = val
/development/tools/axl/
Dchewie.py143 for val in vals:
144 y= val[9]
147 opened.append(val[2])
148 pylab.text(0, y - 0.25, "%s %s %s" % (val[9], val[0][4], val[8]), font)
157 for val in vals:
158 thread, queued, opened, send, sent, reading, read, uri, server, y = val
/development/tools/repo_diff/service/repodiff/interactors/
Dcommon.go10 val, ok := t[key]
14 return val
Dstrings.go66 for _, val := range s {
67 m[val] = true
/development/tools/repo_diff/service/repodiff/mappers/
Dcsv.go44 for i, val := range s {
45 copied[i] = fmt.Sprintf("%q", val)
Dmappers.go64 for i, val := range intStrings {
66 ints[i], err = strconv.Atoi(val)
68 return nil, errors.Wrap(err, fmt.Sprintf("Could not convert from %s", val))
/development/tools/repo_diff/service/repodiff/constants/
Dconstants.go55 val, ok := displayToStatus[displayStatus]
61 return val, nil
/development/apps/DumpViewer/app/src/main/java/com/android/dumpviewer/pickers/
DPickerActivity.java95 final String val = mAdapter.getItem(position).toString(); in getSelectedItem() local
96 final int sepIndex = val.indexOf(' '); in getSelectedItem()
98 return val.substring(0, sepIndex); in getSelectedItem()
100 return val; in getSelectedItem()
/development/vendor_snapshot/
Dupdate.py53 val = prop[key]
57 if type(val) == list and len(val) == 0:
59 if type(val) == dict and gen_bp_prop(val, '') == '':
63 if type(val) == bool:
64 bp += 'true,\n' if val else 'false,\n'
65 elif type(val) == str:
66 bp += '"%s",\n' % val
67 elif type(val) == list:
69 for elem in val:
72 elif type(val) == dict:
[all …]
/development/tools/repo_diff/service/repodiff/repositories/
Dsource.go28 val, err := s.getOrCreateURLBranchIDPersistence(url, branch)
32 cacheSingleton.Add(cacheKey(url, branch), val)
33 return val, nil
/development/vndk/tools/header-checker/src/repr/
Dir_representation_internal.h43 inline static std::string BoolToString(bool val) { in BoolToString() argument
44 return val ? "true" : "false"; in BoolToString()
/development/tools/winscope/src/utils/
Ddiff.js148 const val = node[key];
149 clone[key] = isPrimitive(val) ? val : cloneDeep(val);
/development/vndk/tools/header-checker/tests/input/
Dexample1.h95 explicit _Node(const T& val) : mVal(val) {} in _Node() argument
/development/tools/winscope/src/
Dtransform.js118 function getDiff(val, compareVal) { argument
119 if (val && isTerminal(compareVal)) {
121 } else if (isTerminal(val) && compareVal) {
123 } else if (compareVal != val) {
/development/tools/logblame/
Danalyze_logs.py59 val = m.group(index)
60 if val:
61 return int(val)
/development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
DInteractiveLineGraphView.java424 private static int formatFloat(final char[] out, float val, int digits) { in formatFloat() argument
426 if (val == 0) { in formatFloat()
430 if (val < 0) { in formatFloat()
432 val = -val; in formatFloat()
437 val *= POW10[digits]; in formatFloat()
438 long lval = Math.round(val); in formatFloat()
/development/tools/winscope/src/flickerlib/
DObjectFormatter.ts98 const formatted = this.formatColorTransform(obj.val);