/system/extras/perf_tools/ |
D | parse_timing.py | 130 def find_took(words): argument 131 for i in range(len(words)): 132 if words[i] == 'took' or words[i] == "took:": 142 words = line.strip().split(' ') 143 i = find_took(words) 146 key = str1.join(words[8:i]) 148 if words[i+1] == 'to' and words[i+2] == 'complete:': 150 val = float(words[i+3][:-2]); 151 elif words[i+1][-2:] == 'ms': 153 val = float(words[i+1][:-2]); [all …]
|
D | progress_report.py | 107 words = line.split(" ") 109 if keyword in words[-2]: 110 return (words[0], words[-2], words[-1])
|
D | sbtpull.py | 27 words = _line.split("]", 1) 28 timeString = words[0].strip(" [") 32 self.text = words[1][:150] 283 for words in self.columnNames: 284 print(", '{}'".format(words), end='')
|
/system/core/storaged/tools/ |
D | ranker.py | 99 words = line.split() 100 if words[0] == "->": 105 i = len(words) - 8 106 task = " ".join(words[1:i]) 110 task_io[j] += long(words[i+j]) 114 task_io.append(long(words[i+j])) 117 elif len(words) > 8: 118 if not is_number(words[0]) and args.native: 123 i = len(words) - 8 124 uid = " ".join(words[:i]) [all …]
|
/system/tools/xsdc/src/main/java/com/android/xsdc/java/ |
D | Utils.java | 36 private static String toCamelCase(String[] words) { in toCamelCase() argument 37 String res = words[0]; in toCamelCase() 38 for (int idx = 1; idx < words.length; ++idx) { in toCamelCase() 39 res += capitalize(words[idx]); in toCamelCase()
|
/system/tools/xsdc/src/main/java/com/android/xsdc/cpp/ |
D | Utils.java | 39 private static String toCamelCase(String[] words) { in toCamelCase() argument 40 String res = words[0]; in toCamelCase() 41 for (int idx = 1; idx < words.length; ++idx) { in toCamelCase() 42 res += capitalize(words[idx]); in toCamelCase()
|
/system/extras/boottime_tools/io_analysis/ |
D | check_io_trace.py | 109 words = string.split(l) 110 cmd_pos = get_string_pos(words, "block_rq_complete:") 112 cmd_pos = get_string_pos(words, "block_bio_complete:") 113 block_num = int(words[-4]) 117 operation = words[cmd_pos + 2] 120 end_time = int(float(words[cmd_pos - 1][:-1])*1000000) #us
|
/system/core/init/ |
D | subcontext_test.cpp | 194 auto words = std::make_shared<std::vector<std::string>>(); in BuildTestFunctionMap() local 195 auto do_add_word = [words](const BuiltinArguments& args) { in BuildTestFunctionMap() 196 words->emplace_back(args[1]); in BuildTestFunctionMap() 199 auto do_return_words_as_error = [words](const BuiltinArguments& args) -> Result<void> { in BuildTestFunctionMap() 200 return Error() << Join(*words, " "); in BuildTestFunctionMap()
|
/system/tools/hidl/lint/lints/ |
D | methodDocComment.cpp | 49 std::vector<std::string> words = base::Split(line, " "); in getFirstWordAfterPrefix() local 50 *out = words.empty() ? "" : words.at(0); in getFirstWordAfterPrefix()
|
/system/extras/perf_tools/bats/ |
D | lcan.py | 114 words = line.split(" ") 204 words = line.split(" ") 340 words = line.split(" ") 341 timeString = words[0] 450 def findAll(self, words): argument 451 for word in words:
|
/system/media/camera/docs/ |
D | metadata_helpers.py | 1526 for words in text.split(" "): 1529 if len(words.split(char)) >= CAP_LETTER_MIN: 1530 new_word = re.sub(r"([a-z])([A-Z])", r"\1<wbr>\2", words) 1531 new_txt = new_txt.replace(words, new_word)
|
/system/apex/ |
D | pylintrc | 373 # List of comma separated words that should not be checked. 374 spelling-ignore-words= 379 # Tells whether to store unknown words to indicated private dictionary in 381 spelling-store-unknown-words=no
|
/system/tools/mkbootimg/ |
D | pylintrc | 366 # List of comma separated words that should not be checked. 367 spelling-ignore-words= 372 # Tells whether to store unknown words to indicated private dictionary in 374 spelling-store-unknown-words=no
|
/system/linkerconfig/ |
D | README.md | 64 TODO: a few words about the files
|
/system/update_engine/ |
D | pylintrc | 175 # List of comma separated words that should not be checked. 176 spelling-ignore-words= 181 # Tells whether to store unknown words to indicated private dictionary in 183 spelling-store-unknown-words=no
|
/system/extras/boottime_tools/bootanalyze/ |
D | bootanalyze.py | 571 words = line.split() 572 if len(words) > 1: 573 pid = int(words[1])
|
/system/chre/doc/ |
D | nanoapp_overview.md | 29 nanoapps. In other words, the system only runs nanoapps that possess a digital 106 words, the command `cat my_nanoapp.napp_header my_nanoapp.so > my_nanoapp.napp`
|
D | framework_build.md | 68 architecture, or variant consist of multiple words or components, then they
|
D | framework_overview.md | 158 implemented in a platform-specific source file. In other words, it defines the
|
D | porting_guide.md | 29 words, this code is likely to be re-used by multiple platforms, but it is not
|
/system/core/bootstat/ |
D | bootstat.cpp | 958 std::vector<std::string> words(android::base::Split(reason, ",_-")); in BootReasonStrToReason() local 961 for (auto& r : words) { in BootReasonStrToReason()
|
/system/netd/server/ |
D | NetdNativeService.cpp | 114 bool contains(const Vector<String16>& words, const String16& word) { in contains() argument 115 for (const auto& w : words) { in contains()
|
/system/apex/docs/ |
D | howto.md | 157 words,
|
/system/memory/libion/original-kernel-headers/linux/ |
D | LICENSE | 331 the words "Oracle designates this particular file as subject to the "Classpath"
|
/system/bpfprogs/ |
D | LICENSE | 331 the words "Oracle designates this particular file as subject to the "Classpath"
|