Home
last modified time | relevance | path

Searched refs:line (Results 1 – 25 of 62) sorted by relevance

123

/build/tools/
Dcheck_radio_versions.py30 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()
Dpost_process_props.py80 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) ]
Dparsedeps.py94 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()
Dwarn.py498 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 …]
Ddiff_package_overlays.py51 for line in f:
52 line = line.strip()
53 if not line or line.startswith("#"):
55 words = line.split()
Devent_log_tags.py63 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,))
Dfilter-product-graph.py7 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)
Dadbs37 line = stream.readline() variable
38 if (line == ''):
40 if(tracer.ProcessLine(line) == False):
41 print(line.strip())
Dproduct_debug.py27 def split_line(line): argument
28 words = line.split("=", 1)
40 return [split_line(line) for line in lines if line.strip()]
Ddump-package-stats35 types of files in each package. Emits one line per package.
38 Example output line:
/build/core/tasks/check_boot_jars/
Dcheck_boot_jars.py24 for line in f:
25 line = line.strip()
26 if not line or line.startswith('#'):
28 lines.append(line)
/build/tools/releasetools/
Dcommon.py153 for line in data.split("\n"):
154 if not line:
156 name, value = line.split(" ", 1)
194 for line in lines:
195 line = line.strip()
196 if not line or line.startswith("#"):
198 if "=" in line:
199 name, value = line.split("=", 1)
221 for line in data.split("\n"):
222 line = line.strip()
[all …]
Dsign_target_files_apks298 for line in data.split("\n"):
299 line = line.strip()
300 original_line = line
301 if line and line[0] != '#' and "=" in line:
302 key, value = line.split("=", 1)
326 line = key + "=" + value
327 if line != original_line:
329 print " with: ", line
330 output.append(line)
Dsign_target_files_apks.py298 for line in data.split("\n"):
299 line = line.strip()
300 original_line = line
301 if line and line[0] != '#' and "=" in line:
302 key, value = line.split("=", 1)
326 line = key + "=" + value
327 if line != original_line:
329 print " with: ", line
330 output.append(line)
Dcheck_target_files_signatures96 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)
Dcheck_target_files_signatures.py96 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)
Dpylintrc58 # 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 …]
Dbuild_image.py464 for line in f:
465 line = line.strip()
466 if not line or line.startswith("#"):
468 k, v = line.split("=", 1)
/build/tools/droiddoc/templates-pdk/assets/
Dstyle.css45 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/
Dfilter_symbols.sh15 $NM -g -fp $1 | while read -a line
17 type=${line[1]}
Ddefinitions.mk1678 define emit-line
1685 @$(call emit-line,$(wordlist 1,200,$(1)),$(2))
1686 @$(call emit-line,$(wordlist 201,400,$(1)),$(2))
1687 @$(call emit-line,$(wordlist 401,600,$(1)),$(2))
1688 @$(call emit-line,$(wordlist 601,800,$(1)),$(2))
1689 @$(call emit-line,$(wordlist 801,1000,$(1)),$(2))
1690 @$(call emit-line,$(wordlist 1001,1200,$(1)),$(2))
1691 @$(call emit-line,$(wordlist 1201,1400,$(1)),$(2))
1692 @$(call emit-line,$(wordlist 1401,1600,$(1)),$(2))
1693 @$(call emit-line,$(wordlist 1601,1800,$(1)),$(2))
[all …]
/build/tools/droiddoc/templates-ds/assets/js/grid/
D960.gridder.css1line-height:1!important;list-style-type:none!important;margin:0!important;padding:0!important;text…
/build/tools/droiddoc/templates-pdk/assets/design/
Ddefault.css37 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/
Ddefault.css55 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-ndk/assets/css/
Ddefault.css41 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 …]

123