/build/tools/ |
D | check_radio_versions.py | 30 for line in f: 31 line = line.strip() variable 32 if line.startswith("require"): 33 key, value = line.split()[1].split("=", 1) 59 for line in f: 60 line = line.strip() variable 61 if not line or line.startswith("#"): continue 62 h, v = line.split()
|
D | post_process_props.py | 80 for line in self.lines: 81 if not line or line.startswith("#"): 83 if "=" in line: 84 key, value = line.split("=", 1) 90 for line in self.lines: 91 if line.startswith(key): 92 return line[len(key):] 105 self.lines = [ line for line in self.lines if not line.startswith(key) ]
|
D | parsedeps.py | 94 for line in f: 95 line = line.strip() 96 if len(line) > 0: 97 if line[0] == '#': 98 pos,tgt = line.rsplit(":", 1) 103 (tgt,prereq) = line.split(':', 1) 111 line = raw_input("target> ") 112 if not line.strip(): 114 split = line.split()
|
D | warn.py | 498 def classifywarning(line): argument 501 if cpat.match(line): 502 i['members'].append(line) 530 for line in infile: 532 line = line.replace("‘", "'"); variable 533 line = line.replace("’", "'"); variable 534 if warningpattern.match(line): 535 if line != lastmatchedline: 536 classifywarning(line) 537 lastmatchedline = line [all …]
|
D | diff_package_overlays.py | 51 for line in f: 52 line = line.strip() 53 if not line or line.startswith("#"): 55 words = line.split()
|
D | event_log_tags.py | 63 for self.linenum, line in enumerate(file_object): 66 line = line.strip() 67 if not line or line[0] == '#': continue 68 parts = re.split(r"\s+", line, 2) 71 self.AddError("failed to parse \"%s\"" % (line,))
|
D | filter-product-graph.py | 7 def choose_regex(regs, line): argument 9 m = reg.match(line) 37 lines = [line.strip() for line in lines] 39 for line in lines: 40 func,m = choose_regex(REGS, line)
|
D | adbs | 37 line = stream.readline() variable 38 if (line == ''): 40 if(tracer.ProcessLine(line) == False): 41 print(line.strip())
|
D | product_debug.py | 27 def split_line(line): argument 28 words = line.split("=", 1) 40 return [split_line(line) for line in lines if line.strip()]
|
D | dump-package-stats | 35 types of files in each package. Emits one line per package. 38 Example output line:
|
/build/core/tasks/check_boot_jars/ |
D | check_boot_jars.py | 24 for line in f: 25 line = line.strip() 26 if not line or line.startswith('#'): 28 lines.append(line)
|
/build/tools/releasetools/ |
D | common.py | 155 for line in data.split("\n"): 156 if not line: 158 name, value = line.split(" ", 1) 196 for line in lines: 197 line = line.strip() 198 if not line or line.startswith("#"): 200 if "=" in line: 201 name, value = line.split("=", 1) 223 for line in data.split("\n"): 224 line = line.strip() [all …]
|
D | sign_target_files_apks | 300 for line in data.split("\n"): 301 line = line.strip() 302 original_line = line 303 if line and line[0] != '#' and "=" in line: 304 key, value = line.split("=", 1) 332 line = key + "=" + value 333 if line != original_line: 335 print " with: ", line 336 output.append(line)
|
D | sign_target_files_apks.py | 300 for line in data.split("\n"): 301 line = line.strip() 302 original_line = line 303 if line and line[0] != '#' and "=" in line: 304 key, value = line.split("=", 1) 332 line = key + "=" + value 333 if line != original_line: 335 print " with: ", line 336 output.append(line)
|
D | check_target_files_signatures | 96 for line in out.split("\n"): 97 line = line.strip() 98 if line.startswith("Subject:"): 99 return line[8:].strip() 211 for line in manifest.split("\n"): 212 line = line.strip() 213 m = re.search(r'A: (\S*?)(?:\(0x[0-9a-f]+\))?="(.*?)" \(Raw', line)
|
D | check_target_files_signatures.py | 96 for line in out.split("\n"): 97 line = line.strip() 98 if line.startswith("Subject:"): 99 return line[8:].strip() 211 for line in manifest.split("\n"): 212 line = line.strip() 213 m = re.search(r'A: (\S*?)(?:\(0x[0-9a-f]+\))?="(.*?)" \(Raw', line)
|
D | pylintrc | 58 # option multiple times (only on the command line, not in the configuration 76 # command line instead of printing them on stdout. Reports (if any) will be 230 # Minimum line length for functions/classes that require docstrings, shorter 244 # A path to a file that contains private dictionary; one word per line. 254 # Maximum number of characters on a single line. 255 max-line-length=80 257 # Regexp for a line that is allowed to be longer than the limit. 260 # Allow the body of an if to be on the same line as the test if there is no 262 single-line-if-stmt=no 274 # Number of spaces of indent required inside a hanging or continued line. [all …]
|
D | build_image.py | 465 for line in f: 466 line = line.strip() 467 if not line or line.startswith("#"): 469 k, v = line.split("=", 1)
|
/build/tools/droiddoc/templates-pdk/assets/ |
D | style.css | 45 line-height: 110%; 56 line-height: 110%; 67 line-height: 110%; 73 line-height: 110%; 84 line-height: 110%; 94 line-height: 110%; 103 line-height: 110%; 192 line-height: 120%; 230 line-height: 120%; 235 line-height: 120%; [all …]
|
/build/core/ |
D | filter_symbols.sh | 15 $NM -g -fp $1 | while read -a line 17 type=${line[1]}
|
D | definitions.mk | 1721 define emit-line 1728 @$(call emit-line,$(wordlist 1,200,$(1)),$(2)) 1729 @$(call emit-line,$(wordlist 201,400,$(1)),$(2)) 1730 @$(call emit-line,$(wordlist 401,600,$(1)),$(2)) 1731 @$(call emit-line,$(wordlist 601,800,$(1)),$(2)) 1732 @$(call emit-line,$(wordlist 801,1000,$(1)),$(2)) 1733 @$(call emit-line,$(wordlist 1001,1200,$(1)),$(2)) 1734 @$(call emit-line,$(wordlist 1201,1400,$(1)),$(2)) 1735 @$(call emit-line,$(wordlist 1401,1600,$(1)),$(2)) 1736 @$(call emit-line,$(wordlist 1601,1800,$(1)),$(2)) [all …]
|
/build/tools/droiddoc/templates-ds/assets/js/grid/ |
D | 960.gridder.css | 1 …line-height:1!important;list-style-type:none!important;margin:0!important;padding:0!important;text…
|
/build/tools/droiddoc/templates-pdk/assets/design/ |
D | default.css | 37 line-height: 48px; 64 line-height: 15px; } 241 line-height: 10px; } 317 line-height: 30px; 386 line-height: 30px; 409 line-height: 20px; 416 line-height: 20px; } 436 line-height: 20px; 444 line-height: 20px; 523 line-height: 23px; [all …]
|
/build/tools/droiddoc/templates-sdk/assets/css/ |
D | default.css | 55 line-height: 48px; 82 line-height: 15px; } 134 line-height: 20px; 170 line-height: 0; 179 line-height: 68px; 184 line-height: 56px; 193 line-height: 56px; 203 line-height: 48px; 210 line-height: 32px; 215 line-height: 32px; [all …]
|
/build/tools/droiddoc/templates-sdk-dev/assets/css/ |
D | default.css | 41 line-height: 48px; 68 line-height: 15px; } 270 line-height: 15px; } 286 /* no white line between second level sections */ 525 line-height:28px; 626 line-height:16px; 654 line-height:26px; 731 line-height: 20px; 811 line-height: 23px; 826 line-height: 20px; [all …]
|