/development/scripts/ |
D | battery_simulator.py | 49 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/ |
D | am_instrument_parser.py | 87 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/ |
D | chewie.py | 143 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/ |
D | common.go | 10 val, ok := t[key] 14 return val
|
D | strings.go | 66 for _, val := range s { 67 m[val] = true
|
/development/tools/repo_diff/service/repodiff/mappers/ |
D | csv.go | 44 for i, val := range s { 45 copied[i] = fmt.Sprintf("%q", val)
|
D | mappers.go | 64 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/ |
D | constants.go | 55 val, ok := displayToStatus[displayStatus] 61 return val, nil
|
/development/apps/DumpViewer/app/src/main/java/com/android/dumpviewer/pickers/ |
D | PickerActivity.java | 95 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/ |
D | update.py | 53 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/ |
D | source.go | 28 val, err := s.getOrCreateURLBranchIDPersistence(url, branch) 32 cacheSingleton.Add(cacheKey(url, branch), val) 33 return val, nil
|
/development/vndk/tools/header-checker/src/repr/ |
D | ir_representation_internal.h | 43 inline static std::string BoolToString(bool val) { in BoolToString() argument 44 return val ? "true" : "false"; in BoolToString()
|
/development/tools/winscope/src/utils/ |
D | diff.js | 148 const val = node[key]; 149 clone[key] = isPrimitive(val) ? val : cloneDeep(val);
|
/development/vndk/tools/header-checker/tests/input/ |
D | example1.h | 95 explicit _Node(const T& val) : mVal(val) {} in _Node() argument
|
/development/tools/winscope/src/ |
D | transform.js | 118 function getDiff(val, compareVal) { argument 119 if (val && isTerminal(compareVal)) { 121 } else if (isTerminal(val) && compareVal) { 123 } else if (compareVal != val) {
|
/development/tools/logblame/ |
D | analyze_logs.py | 59 val = m.group(index) 60 if val: 61 return int(val)
|
/development/samples/training/InteractiveChart/src/com/example/android/interactivechart/ |
D | InteractiveLineGraphView.java | 424 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/ |
D | ObjectFormatter.ts | 98 const formatted = this.formatColorTransform(obj.val);
|