/development/testrunner/ |
D | am_instrument_parser.py | 48 for line in result.splitlines(): 49 result_block_string += line + '\n' 51 if "INSTRUMENTATION_STATUS_CODE:" in line: 60 if "INSTRUMENTATION_CODE:" in line: 90 for line in result.split('\n'): 91 line = line.strip(string.whitespace) 92 if re_result.match(line): 94 key = re_result.search(line).group(1).strip(string.whitespace) 97 val = re_result.search(line).group(2).strip(string.whitespace) 104 elif re_code.match(line): [all …]
|
D | android_mk.py | 45 def _ProcessMKLine(self, line): argument 53 m = self._RE_INCLUDE.match(line) 57 parts = line.split(self._VAR_DELIMITER) 61 if line.find('libgtest_main') != -1: 154 for line in mk: 155 self._ProcessMKLine(line)
|
/development/scripts/ |
D | stack_core.py | 103 line = unicode(ln, errors='ignore') 104 process_header = process_info_line.search(line) 105 signal_header = signal_line.search(line) 106 register_header = register_line.search(line) 107 thread_header = thread_line.search(line) 108 dalvik_jni_thread_header = dalvik_jni_thread_line.search(line) 109 dalvik_native_thread_header = dalvik_native_thread_line.search(line) 131 if trace_line.match(line): 132 match = trace_line.match(line) 167 if code_line.match(line): [all …]
|
D | compare-installed-size.py | 45 for line in input_stream: 47 line = line.strip() 50 size, name = line.split()
|
D | symbol.py | 296 for line in stream: 299 components = func_regexp.match(line) 315 components = asm_regexp.match(line)
|
/development/tools/axl/ |
D | chewperf.py | 17 line = rawLines[x].split() 19 if line[-1] == "SIGNAL_STRENGTH": 34 for line in rawLines: 35 if "Pulled" in line: 36 chewed = [int(line.split()[5]), int(line.split()[7])] 39 out.append("%s %d" % (line, (tm - last))) 42 out.append(line)
|
D | chewie.py | 74 line = f.readline() 75 if len(line) == 0: break 77 splitup = line.split()
|
/development/tools/findunused/ |
D | find_unused_resources.rb | 94 file.each { |line| 96 findAllOccurrences(re, line).each { |id| 114 file.each { |line| 115 findAllOccurrences(@@stringIdPattern, line).each {|id| 118 findAllOccurrences(@@layoutIdPattern, line).each {|id| 122 findAllOccurrences(re, line).each {|id| 133 file.each { |line| 135 findAllOccurrences(re, line).each {|id|
|
/development/ndk/platforms/android-8/samples/bitmap-plasma/jni/ |
D | plasma.c | 200 uint16_t* line = (uint16_t*)pixels; in fill_plasma() local 215 uint16_t* line_end = line + info->width; in fill_plasma() 217 if (line < line_end) { in fill_plasma() 218 if (((uint32_t)line & 3) != 0) { in fill_plasma() 224 line[0] = palette_from_fixed(ii >> 2); in fill_plasma() 225 line++; in fill_plasma() 228 while (line + 2 <= line_end) { in fill_plasma() 240 ((uint32_t*)line)[0] = pixel; in fill_plasma() 241 line += 2; in fill_plasma() 244 if (line < line_end) { in fill_plasma() [all …]
|
/development/ndk/platforms/android-9/samples/native-plasma/jni/ |
D | plasma.c | 209 uint16_t* line = (uint16_t*)pixels; in fill_plasma() local 224 uint16_t* line_end = line + buffer->width; in fill_plasma() 226 if (line < line_end) { in fill_plasma() 227 if (((uint32_t)line & 3) != 0) { in fill_plasma() 233 line[0] = palette_from_fixed(ii >> 2); in fill_plasma() 234 line++; in fill_plasma() 237 while (line + 2 <= line_end) { in fill_plasma() 249 ((uint32_t*)line)[0] = pixel; in fill_plasma() 250 line += 2; in fill_plasma() 253 if (line < line_end) { in fill_plasma() [all …]
|
/development/tools/idegen/src/ |
D | Configuration.java | 206 String line; in parsePackageName() local 207 while ((line = in.readLine()) != null) { in parsePackageName() 208 String trimmed = line.trim(); in parsePackageName() 256 String line; in parseFile() local 257 while ((line = in.readLine()) != null) { in parseFile() 258 String trimmed = line.trim(); in parseFile()
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
D | MonkeySourceScript.java | 204 String line; in readHeader() local 206 while ((line = mBufferedReader.readLine()) != null) { in readHeader() 207 line = line.trim(); in readHeader() 209 if (line.indexOf(HEADER_COUNT) >= 0) { in readHeader() 211 String value = line.substring(HEADER_COUNT.length() + 1).trim(); in readHeader() 217 } else if (line.indexOf(HEADER_SPEED) >= 0) { in readHeader() 219 String value = line.substring(HEADER_COUNT.length() + 1).trim(); in readHeader() 225 } else if (line.indexOf(HEADER_LINE_BY_LINE) >= 0) { in readHeader() 227 } else if (line.indexOf(STARTING_DATA_LINE) >= 0) { in readHeader() 242 String line; in readLines() local [all …]
|
D | MonkeyGetAppFrameRateEvent.java | 111 String line = null; in getNumberOfFrames() local 112 while((line = reader.readLine()) != null) { in getNumberOfFrames() 113 Matcher m = NO_OF_FRAMES_PATTERN.matcher(line); in getNumberOfFrames()
|
/development/tools/idegen/src/com/android/idegen/ |
D | ModuleIndexes.java | 58 public boolean processLine(String line) throws IOException { in build() 60 String[] arr = line.split(":"); in build() 63 "Ignoring index line " + count + ". Bad format: " + line); in build()
|
D | MakeFileParser.java | 99 public boolean processLine(String line) throws IOException { in parse() 100 String trimmed = line.trim(); in parse() 124 logger.info("Malformed line " + line); in parse()
|
/development/samples/TtsEngine/src/com/example/android/ttsengine/ |
D | RobotSpeakTtsService.java | 217 String line = null; in buildFrequencyMap() local 220 while ((line = br.readLine()) != null) { in buildFrequencyMap() 221 String[] parts = line.split(":"); in buildFrequencyMap() 223 throw new IOException("Invalid line encountered: " + line); in buildFrequencyMap()
|
/development/samples/TicTacToeMain/ |
D | README.txt | 10 Build is supported both via Ant (command-line tools) or via ADT (the Android 22 file TicTacToeMain/default.properties contains the special line: 29 contains the special line:
|
/development/samples/training/testingfun/ |
D | gradlew.bat | 49 @rem Get command-line arguments, handling Windowz variants 55 @rem Slurp the command line arguments. 70 @rem Setup the command line
|
/development/samples/training/NsdChat/src/com/example/android/nsdchat/ |
D | NsdChatActivity.java | 99 public void addChatLine(String line) { in addChatLine() argument 100 mStatusView.append("\n" + line); in addChatLine()
|
/development/samples/SampleSyncAdapter/samplesyncadapter_server/static/css/ |
D | main.css | 44 line-height: 2em; 62 text-decoration: line-through;
|
/development/samples/SearchableDictionary/src/com/example/android/searchabledict/ |
D | DictionaryDatabase.java | 209 String line; in loadWords() local 210 while ((line = reader.readLine()) != null) { in loadWords() 211 String[] strings = TextUtils.split(line, "-"); in loadWords()
|
/development/tools/mkstubs/src/com/android/mkstubs/ |
D | Main.java | 236 String line; in addStringsFromFile() local 237 while ((line = br.readLine()) != null) { in addStringsFromFile() 238 addString(p, line); in addStringsFromFile()
|
/development/tutorials/ReverseDebug/ |
D | README.txt | 9 line 42 when "p" is being dereferenced. 70 Now set a breakpoint on line 41 and set flag to 1 so that the program can 74 Breakpoint 1 at 0xb6f174a8: file development/tutorials/ReverseDebug/main.c, line 41. 93 "reverse-continue" command will bring the program back to line 41 and let you
|
/development/samples/MySampleRss/src/com/example/codelab/rssexample/ |
D | RssService.java | 230 String line; in readRss() local 232 while ((line = inStream.readLine()) != null){ in readRss() 233 rssFeed.append(line); in readRss()
|
/development/cmds/monkey/ |
D | README.NETWORK.txt | 28 respond to every command with a line starting with OK for commands 29 that executed without a problem, or a line starting with ERROR for 31 value, that value is returned on the same line as the OK or ERROR 33 on that line. For ERROR values, this could be a message indicating
|