Home
last modified time | relevance | path

Searched refs:content (Results 1 – 25 of 48) sorted by relevance

12

/build/make/tools/droiddoc/templates-pdk/assets/
Dstyle.css8 div#jd-content table {
12 div#jd-content td, div#jd-content th {
16 div#jd-content table.jd-linktable {
21 div#jd-content p.jd-deprecated-warning {
26 div#jd-content table.jd-linktable th {
38 div#jd-content table.jd-linktable td {
42 div#jd-content table.jd-linktable td p {
48 div#jd-content table.jd-linktable .jd-linkcol {
59 div#jd-content table.jd-linktable .jd-descrcol {
70 div#jd-content table.jd-linktable .jd-descrcol p {
[all …]
Dandroid-developer-docs-devguide.css10 /* Page content container */
16 #jd-content table table,
17 #jd-content table img {
Dandroid-developer-docs.css232 #doc-content {
512 #jd-content {
524 #jd-content h1 {
531 #jd-content h2 {
539 #jd-content h3 {
546 #jd-content h4 {
553 #jd-content h5 {
560 #jd-content .small-header {
570 #jd-content table {
574 #jd-content img {
[all …]
Dandroid-developer-docs.js5 var content; variable
78 content.css({marginLeft:parseInt(navWidth) + 6 + "px"}); //account for 6px-wide handle-bar
81content.css({width:parseInt(windowWidth) - parseInt(navWidth) - 6 + "px"}); // necessary in order …
95 content.css({height:windowHeight + "px"});
133 content = $("#doc-content");
362 content.css({marginLeft:parseInt(sidenavWidth) + 6 + "px"}); //account for 6px-wide handle-bar
365content.css({width:parseInt(windowWidth) - parseInt(sidenavWidth) - 6 + "px"}); // necessary in or…
/build/soong/bp2build/
Dconversion.go49 files = append(files, newFile(bazelRulesSubDir, bzlFileName+".bzl", ruleShim.content))
73 return targets[i].content < targets[j].content
75 content := soongModuleLoad
77 content = `# This file was automatically generated by bp2build for the Bazel migration project.
79 content += "\n\n"
80 content += "package(default_visibility = [\"//visibility:public\"])"
81 content += "\n\n"
82 content += targets.LoadStatements()
84 if content != "" {
86 content += "\n\n"
[all …]
Dbzl_conversion_test.go163 if ruleShim.content != expectedBzl {
167 ruleShim.content)
175 content: "irrelevant",
179 content: "irrelevant",
Dsh_conversion_test.go88 for f, content := range testCase.filesystem {
92 filesystem[f] = []byte(content)
122 if w, g := testCase.expectedBazelTargets[i], target.content; w != g {
Dpython_binary_conversion_test.go117 for f, content := range testCase.filesystem {
121 filesystem[f] = []byte(content)
146 if w, g := testCase.expectedBazelTargets[i], target.content; w != g {
Dbp2build.go58 func writeFile(ctx android.PathContext, pathToFile android.OutputPath, content string) error {
61 return android.WriteFileToOutputDir(pathToFile, []byte(content), 0644)
Dbuild_conversion_test.go195 if actualBazelTarget.content != testCase.expectedBazelTarget {
199 actualBazelTarget.content,
343 if actualBazelTarget.content != expectedBazelTarget {
347 actualBazelTarget.content,
912 for f, content := range testCase.fs {
916 fs[f] = []byte(content)
947 if w, g := testCase.expectedBazelTargets[i], target.content; w != g {
1155 if actualBazelTarget.content != testCase.expectedBazelTarget {
1160 actualBazelTarget.content,
1326 for f, content := range testCase.fs {
[all …]
Dcc_object_conversion_test.go208 for f, content := range testCase.filesystem {
212 filesystem[f] = []byte(content)
240 if w, g := testCase.expectedBazelTargets[i], target.content; w != g {
420 if w, g := testCase.expectedBazelTargets[i], target.content; w != g {
Dbzl_conversion.go51 content string member
65 shim.content = "load(\"//build/bazel/queryview_rules:providers.bzl\", \"SoongModuleInfo\")\n"
72 shim.content += fmt.Sprintf(moduleRuleShim, r.name, r.attrs)
Dbuild_conversion.go34 content string member
54 res += target.content
243 content: `filegroup(name = "bp2build_all_srcs", srcs = glob(["**/*"]))`,
270 content: c,
291 content: fmt.Sprintf(
325 content: fmt.Sprintf(
Dcc_library_headers_conversion_test.go320 for f, content := range testCase.filesystem {
324 filesystem[f] = []byte(content)
361 if w, g := testCase.expectedBazelTargets[i], target.content; w != g {
/build/make/tools/droiddoc/templates-pdk/assets/design/
Ddefault.css50 content: ".";
83 #content {
127 /* content layout */
128 .layout-content-row {
131 .layout-content-row:after {
132 content: ".";
137 * html .layout-content-row {
140 .layout-content-col {
143 .layout-content-col:first-child {
146 .layout-content-col.span-1 {
[all …]
/build/soong/java/
Dclasspath_fragment.go156 var content strings.Builder
157 fmt.Fprintf(&content, "{\n")
158 fmt.Fprintf(&content, "\"jars\": [\n")
160 fmt.Fprintf(&content, "{\n")
162 fmt.Fprintf(&content, "\"path\": \"%s\",\n", jar.path)
163 fmt.Fprintf(&content, "\"classpath\": \"%s\"\n", jar.classpath)
166 fmt.Fprintf(&content, "},\n")
168 fmt.Fprintf(&content, "}\n")
171 fmt.Fprintf(&content, "]\n")
172 fmt.Fprintf(&content, "}\n")
[all …]
/build/soong/android/
Ddefs.go110 Command: `/bin/bash -c 'echo -e -n "$$0" > $out' $content`,
210 content := params.Args["content"]
211 content = shellUnescape(content)
212 content = echoUnescaper.Replace(content)
214 return content
/build/make/tools/
Dtest_post_process_props.py60 content = """
68 self.patcher = patch("post_process_props.open", mock_open(read_data=content))
163 content = """
172 with patch('post_process_props.open', mock_open(read_data=content)) as m:
190 content = """
199 with patch("post_process_props.open", mock_open(read_data=content)) as m:
211 content = """
220 with patch("post_process_props.open", mock_open(read_data=content)) as m:
236 content = """
245 with patch("post_process_props.open", mock_open(read_data=content)) as m:
/build/make/tools/droiddoc/templates-pdk/
Dhead_tag.cs2 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
4 <meta name="Description" content="<?cs var:page.metaDescription ?>">
44 #body-content{position:relative; top:0;}
45 #doc-content{overflow:visible;border-left:3px solid #666;}
Dsampleindex.cs44 </div><!-- end jd-content -->
48 </div><!-- end doc-content -->
Ddocpage.cs97 </div> <!-- end jd-content -->
100 </div><!-- end doc-content -->
/build/soong/rust/
Dproject_json_test.go39 content, err := ioutil.ReadFile(filepath.Join(result.Config.BuildDir(), rustProjectJsonFileName))
43 return content
52 var content interface{}
53 err := json.Unmarshal(rawContent, &content)
57 root, ok := content.(map[string]interface{})
59 t.Errorf("Unexpected JSON format: %v", content)
/build/make/tools/releasetools/
Dtest_check_target_files_vintf.py57 def write_string_to_file(content, path, mode='w'): argument
61 f.write(content)
74 for rel_path, content in SKELETON_TARGET_FILE_STRUCTURE.items():
75 write_string_to_file(content, os.path.join(test_dir, rel_path))
/build/make/core/
Dccache.mk35 CCACHE_COMPILERCHECK ?= content
/build/soong/finder/fs/
Dtest.go26 func Write(t *testing.T, path string, content string, filesystem *MockFs) {
29 err := filesystem.WriteFile(path, []byte(content), 0777)

12