/build/make/tools/ |
D | product_debug.py | 34 def sort_lines(text): argument 35 lines = text.split() 52 def linkify_inherit(variables, text, func_name): argument 53 groups = re.split("(\\$\\(call " + func_name + ",.*\\))", text) 66 def render_original(variables, text): argument 67 text = linkify_inherit(variables, text, "inherit-product") 68 text = linkify_inherit(variables, text, "inherit-product-if-exists") 69 return text 73 text = f.read() 75 return text
|
D | java-layers.py | 192 text = f.read() 194 text = COMMENTS.sub("", text) 195 index = text.find("{") 201 text = text[0:index] 202 statements = [s.strip() for s in text.split(";")]
|
D | generate-notice-files.py | 63 def html_escape(text): argument 65 return "".join(HTML_ESCAPE_TABLE.get(c,c) for c in text)
|
/build/soong/ui/build/ |
D | environment.go | 163 text := strings.TrimSpace(scanner.Text()) 165 if len(text) == 0 || text[0] == '#' { 173 cmd := strings.SplitN(text, " ", 2) 175 return fmt.Errorf("Unknown kati environment line: %q", text) 181 return fmt.Errorf("Failed to unquote kati line: %q", text) 194 return fmt.Errorf("Failed to unquote kati line: %q", text) 198 return fmt.Errorf("Failed to unquote kati line: %q", text) 204 return fmt.Errorf("Unknown kati environment command: %q", text)
|
/build/soong/scripts/ |
D | manifest.py | 115 text = element.nodeValue 116 indent = text[:len(text)-len(text.lstrip())]
|
/build/make/tools/droiddoc/templates-pdk/assets/ |
D | android-developer-reference.js | 117 function new_node(me, mom, text, link, children_data, api_level) argument 165 node.label = document.createTextNode(text); 357 if ( (expand == null && a.text() == "[Expand]") || expand ) { 361 a.text("[Collapse]"); 362 } else if ( (expand == null && a.text() == "[Collapse]") || (expand == false) ) { 366 a.text("[Expand]"); 376 if (a.text() == "[Expand All]") { 380 a.text("[Collapse All]"); 385 a.text("[Expand All]"); 396 $("#toggleAllClassInherited").text("[Collapse All]");
|
D | yui-3.3.0-reset-min.css | 8 …text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';…
|
D | search_autocomplete.js | 107 var text = search.value.replace(/(^ +)|( +$)/g, ''); 142 if (text.length != 0 && 143 s.label.toLowerCase().indexOf(text.toLowerCase()) != -1) { 148 rank_autocomplete_results(text); 155 highlight_autocomplete_result_labels(text);
|
D | android-developer-core.css | 171 text-align:left; 227 text-align:right; 246 text-decoration: none; 256 text-align: center; 418 text-align:left; 428 text-align:left; 470 text-decoration: underline; 627 text-align: right; 819 text-decoration:none; 820 text-align:center; [all …]
|
D | android-developer-docs.css | 85 text-decoration:none; 95 text-decoration:underline; 118 text-decoration:none; 165 text-decoration:none; 206 text-decoration: none; 222 text-decoration:none; 254 text-decoration:none; 259 text-decoration:underline; 291 text-decoration:none; 295 text-decoration:underline; [all …]
|
D | style.css | 28 text-align: left; 201 text-decoration: none; 238 text-align: left; 303 text-align: right;
|
/build/make/tools/releasetools/ |
D | rangelib.py | 75 def parse(cls, text): argument 89 return cls(text) 92 def parse_raw(cls, text): argument 99 raw = [int(i) for i in text.split(',')] 104 def _parse_internal(self, text): argument 108 for p in text.split():
|
/build/make/tools/product_config/src/com/android/build/config/ |
D | DumpConfigParser.java | 299 private static List<String> splitList(String text) { in splitList() argument 302 return new ArrayList(Arrays.asList(LIST_SEPARATOR.split(text.trim()))); in splitList() 308 private MakeConfig.BlockType parseBlockType(CsvParser.Line line, String text) { in parseBlockType() argument 309 if ("before".equals(text)) { in parseBlockType() 311 } else if ("inherit".equals(text)) { in parseBlockType() 313 } else if ("after".equals(text)) { in parseBlockType() 318 "Invalid block type: " + text); in parseBlockType()
|
/build/soong/cmd/soong_build/ |
D | writedocs.go | 208 text-align: left 236 text-overflow: ellipsis 242 text-decoration: none 252 -webkit-text-size-adjust: 100%; 253 -moz-text-size-adjust: 100%; 254 -ms-text-size-adjust: 100%; 255 text-size-adjust: 100% 311 .accordion,.simple{margin-left:1.5em;text-indent:-1.5em;margin-top:.25em} 329 text-decoration: none;
|
/build/soong/cc/ndk_api_coverage_parser/ |
D | test_ndk_api_coverage_parser.py | 43 if elem1.text != elem2.text:
|
/build/make/tools/rbcrun/ |
D | README.md | 18 `-c` *text*\ 19 Read script from *text* 76 #### rblf_regex(*pattern*, *text*) 78 Returns *True* if *text* matches *pattern*.
|
/build/soong/java/ |
D | lint.go | 95 text android.Path member 129 func (l LintDepSetsBuilder) Direct(html, text, xml android.Path) LintDepSetsBuilder { 131 l.Text.Direct(text) 378 text := android.PathForModuleOut(ctx, "lint", "lint-report.txt") 381 depSetsBuilder := NewLintDepSetBuilder().Direct(html, text, xml) 391 rule.Command().Text("rm -f").Output(html).Output(text).Output(xml) 427 FlagWithOutput("--text ", text). 450 cmd.Text("|| (").Text("if [ -e").Input(text).Text("]; then cat").Input(text).Text("; fi; exit 7)") 461 text: text, 611 zip(l.textZip, func(l *lintOutputs) android.Path { return l.text })
|
/build/make/tools/warn/ |
D | html_writer.py | 105 def writer(text): argument 106 return output_stream.write(text + '\n') 327 for text in fixed_patterns: 330 out_text = text[:-1] if text[-1] == '\n' else text
|
/build/blueprint/bootstrap/bpdoc/ |
D | properties.go | 200 var name, tag, text string 205 text = f.Doc.Text() 222 Text: formatText(text), 293 func formatText(text string) template.HTML { 295 lines := strings.Split(text, "\n")
|
D | reader.go | 72 text, err := r.getModuleTypeDoc(pkgPath, factoryName) 80 Text: formatText(text),
|
/build/make/tools/droiddoc/templates-pdk/assets/design/ |
D | default.css | 20 /* prevent subpixel antialiasing, which thickens the text */ 21 /* text-rendering: optimizeLegibility; */ 44 text-decoration: none; 244 text-decoration: none; } 257 text-transform: uppercase; } 296 text-transform: uppercase; } 319 text-decoration: none; 320 text-transform: uppercase; } 407 text-transform: uppercase; 524 text-align: center; [all …]
|
/build/soong/android/ |
D | namespace.go | 297 text := fmt.Sprintf("%q depends on undefined module %q", depender, depName) 303 return fmt.Errorf(text) 322 …text += fmt.Sprintf("\nModule %q is defined in namespace %q which can read these %v namespaces: %q… 323 …text += fmt.Sprintf("\nModule %q can be found in these namespaces: %q", depName, foundInNamespaces) 326 return fmt.Errorf(text)
|
/build/blueprint/parser/ |
D | parser.go | 470 switch text := p.scanner.TokenText(); text { 474 Value: text == "true", 475 Token: text, 479 if assignment, local := p.scope.Get(text); assignment == nil { 480 p.errorf("variable %q is not set", text) 491 Name: text,
|
/build/bazel/examples/android_app/java/com/app/ |
D | MainActivity.java | 33 final TextView textView = findViewById(R.id.text); in onCreate()
|
/build/make/core/ |
D | product_config.rbc | 371 def _filter_out(pattern, text): 372 """Return all the words from `text' that do not match any word in `pattern'. 376 text: string or list of words 382 for w in __words(text): 387 def _filter(pattern, text): 388 """Return all the words in `text` that match `pattern`. 393 text: string or list of words. 397 for w in __words(text):
|