Home
last modified time | relevance | path

Searched refs:words (Results 1 – 25 of 28) sorted by relevance

12

/system/extras/perf_tools/
Dparse_timing.py130 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 …]
Dprogress_report.py107 words = line.split(" ")
109 if keyword in words[-2]:
110 return (words[0], words[-2], words[-1])
Dsbtpull.py27 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/
Dranker.py99 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/
DUtils.java36 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/
DUtils.java39 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/
Dcheck_io_trace.py109 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/
Dsubcontext_test.cpp194 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/
DmethodDocComment.cpp49 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/
Dlcan.py114 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/
Dmetadata_helpers.py1526 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/
Dpylintrc373 # 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/
Dpylintrc366 # 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/
DREADME.md64 TODO: a few words about the files
/system/update_engine/
Dpylintrc175 # 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/
Dbootanalyze.py571 words = line.split()
572 if len(words) > 1:
573 pid = int(words[1])
/system/chre/doc/
Dnanoapp_overview.md29 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`
Dframework_build.md68 architecture, or variant consist of multiple words or components, then they
Dframework_overview.md158 implemented in a platform-specific source file. In other words, it defines the
Dporting_guide.md29 words, this code is likely to be re-used by multiple platforms, but it is not
/system/core/bootstat/
Dbootstat.cpp958 std::vector<std::string> words(android::base::Split(reason, ",_-")); in BootReasonStrToReason() local
961 for (auto& r : words) { in BootReasonStrToReason()
/system/netd/server/
DNetdNativeService.cpp114 bool contains(const Vector<String16>& words, const String16& word) { in contains() argument
115 for (const auto& w : words) { in contains()
/system/apex/docs/
Dhowto.md157 words,
/system/memory/libion/original-kernel-headers/linux/
DLICENSE331 the words "Oracle designates this particular file as subject to the "Classpath"
/system/bpfprogs/
DLICENSE331 the words "Oracle designates this particular file as subject to the "Classpath"

12