/build/soong/starlark_fmt/ |
D | format_test.go | 28 out := PrintStringList(in, indentLevel) 30 if out != expectedOut { 31 t.Errorf("Expected %q, got %q", expectedOut, out) 38 out := PrintStringList(in, indentLevel) 40 if out != expectedOut { 41 t.Errorf("Expected %q, got %q", expectedOut, out) 48 out := PrintStringList(in, indentLevel) 53 if out != expectedOut { 54 t.Errorf("Expected %q, got %q", expectedOut, out) 61 out := PrintList(in, indentLevel, simpleFormat) [all …]
|
/build/blueprint/proptools/ |
D | clone_test.go | 25 out interface{} 36 out: &struct{ B1, B2 bool }{ 46 out: &struct{ S string }{ 55 out: &struct{ S []string }{ 64 out: &struct{ S []string }{ 71 out: &struct{ S []string }{}, 80 out: &struct{ S []struct{ T string } }{ 91 out: &struct{ S map[string]string }{ 100 out: &struct{ S map[string]string }{ 107 out: &struct{ S map[string]string }{}, [all …]
|
D | typeequal_test.go | 25 out bool 31 out: true, 37 out: false, 43 out: true, 49 out: false, 55 out: true, 61 out: false, 67 out: true, 73 out: false, 79 out: true, [all …]
|
D | escape_test.go | 25 out string member 32 out: `test`, 37 out: `$$test`, 42 out: `test$$`, 47 out: `$$test$$`, 55 out: `test`, 60 out: `'$test'`, 65 out: `'test$'`, 70 out: `'$test$'`, 98 out: `test`, [all …]
|
D | filter_test.go | 40 out interface{} 50 out: &struct { 60 out: nil, 68 out: &struct { 83 out: &struct { 97 out: nil, 107 out: &struct { 121 out: &struct { 133 out: nil, 141 out: &struct { [all …]
|
D | extend_test.go | 29 out interface{} member 53 out: &struct{ B1, B2, B3, B4 bool }{ 74 out: &struct{ B1, B2, B3, B4 bool }{ 90 out: &struct{ S string }{ 102 out: &struct{ S string }{ 131 out: &struct{ B1, B2, B3, B4, B5, B6, B7, B8, B9 *bool }{ 167 out: &struct{ B1, B2, B3, B4, B5, B6, B7, B8, B9 *bool }{ 204 out: &struct{ I1, I2, I3, I4, I5, I6, I7, I8, I9 *int64 }{ 225 out: &struct{ I1, I2, I3 *int64 }{ 242 out: &struct{ S1, S2, S3, S4 *string }{ [all …]
|
/build/make/tools/product_config/src/com/android/build/config/ |
D | MakeWriter.java | 32 public static void write(PrintStream out, GenericConfig config, int flags) { in write() argument 33 (new MakeWriter(flags)).writeGeneric(out, config); in write() 36 public static void write(PrintStream out, FlatConfig config, int flags) { in write() argument 37 (new MakeWriter(flags)).writeFlat(out, config); in write() 46 private void writeGeneric(PrintStream out, GenericConfig config) { in writeGeneric() argument 48 out.println("---------------------------------------------------------"); in writeGeneric() 49 out.println("FILE: " + file.getFilename()); in writeGeneric() 50 out.println("---------------------------------------------------------"); in writeGeneric() 51 writeFile(out, config, file); in writeGeneric() 52 out.println(); in writeGeneric() [all …]
|
D | MakeConfig.java | 123 public void printToStream(PrintStream out) { in printToStream() argument 124 out.println("MakeConfig {"); in printToStream() 125 out.println(" phase: " + mPhase); in printToStream() 126 out.println(" rootNodes: " + mRootNodes); in printToStream() 127 out.print(" singleVars: [ "); in printToStream() 130 out.print(entry.getKey()); in printToStream() 131 out.print(" "); in printToStream() 134 out.println("]"); in printToStream() 135 out.print(" listVars: [ "); in printToStream() 138 out.print(entry.getKey()); in printToStream() [all …]
|
D | Options.java | 56 public static void printHelp(PrintStream out) { in printHelp() argument 57 out.println("usage: product_config"); in printHelp() 58 out.println(); in printHelp() 59 out.println("REQUIRED FLAGS"); in printHelp() 60 out.println(" --ckati_bin CKATI Kati binary to use."); in printHelp() 61 out.println(); in printHelp() 62 out.println("OPTIONAL FLAGS"); in printHelp() 63 out.println(" --hide ERROR_ID Suppress this error."); in printHelp() 64 out.println(" --error ERROR_ID Make this ERROR_ID a fatal error."); in printHelp() 65 out.println(" --help -h This message."); in printHelp() [all …]
|
D | Main.java | 44 System.out.println(); in run() 45 System.out.println("======================================="); in run() 46 System.out.println("PRODUCT CONFIG FILES : " + makeConfig.getPhase()); in run() 47 System.out.println("======================================="); in run() 48 makeConfig.printToStream(System.out); in run() 55 System.out.println("======================"); in run() 56 System.out.println("REGENERATED MAKE FILES"); in run() 57 System.out.println("======================"); in run() 58 MakeWriter.write(System.out, generic, 0); in run() 64 System.out.println("======================="); in run() [all …]
|
/build/soong/java/ |
D | jacoco_test.go | 21 name, in, out string 26 out: "package/Class.class", 31 out: "package/Class*.class", 36 out: "package/*.class", 41 out: "package/**/*.class", 46 out: "**/*.class", 51 out: "*.class", 61 if got != testCase.out { 62 t.Errorf("expected %q got %q", testCase.out, got) 72 out string [all …]
|
/build/soong/android/ |
D | expand_test.go | 40 out string 46 out: "abc", 51 out: "abc", 56 out: "defabc", 61 out: "abcdef", 66 out: "defabcdef", 71 out: "", 76 out: "def", 81 out: "def", 86 out: "defdef", [all …]
|
D | util_test.go | 27 out []string 31 out: []string{"a"}, 35 out: []string{"a", "b"}, 39 out: []string{"a"}, 43 out: []string{"a", "b"}, 47 out: []string{"b", "a"}, 51 out: []string{"a", "b"}, 55 out: []string{"a", "b"}, 59 out: []string{"liblog", "libdl", "libc++", "libc", "libm"}, 66 out := imp(in) [all …]
|
/build/soong/bpfix/bpfix/ |
D | bpfix_test.go | 139 out, err := runFixerOnce(fixer, innerTest) 141 out = err.Error() 144 compareResult := compareOutExpected(in, out, expected) 155 func preProcessOut(out string) (expected string, err error) { 156 expected, err = Reformat(out) 185 out, err := parser.Print(fixer.tree) 189 return string(out), nil 192 func compareOutExpected(in, out, expected string) string { argument 193 if out != expected { 195 in, expected, out) [all …]
|
/build/soong/finder/fs/ |
D | readdir_test.go | 28 out []*dirEntryInfo 46 out: []*dirEntryInfo{ 66 out: []*dirEntryInfo{ 86 out: []*dirEntryInfo{ 106 out: []*dirEntryInfo{ 125 out: []*dirEntryInfo{ 157 out: []*dirEntryInfo{ 189 out: []*dirEntryInfo{ 199 out: nil, 215 out: []*dirEntryInfo{ [all …]
|
/build/soong/tests/ |
D | bootstrap_test.sh | 20 local bootstrap_mtime1=$(stat -c "%y" out/soong/bootstrap.ninja) 21 local output_mtime1=$(stat -c "%y" out/soong/build.ninja) 23 local bootstrap_mtime2=$(stat -c "%y" out/soong/bootstrap.ninja) 24 local output_mtime2=$(stat -c "%y" out/soong/build.ninja) 39 local mtime1=$(stat -c "%y" out/soong/bootstrap.ninja) 44 local mtime2=$(stat -c "%y" out/soong/bootstrap.ninja) 63 grep -q "^# Module:.*my_little_binary_host" out/soong/build.ninja || fail "module not found" 74 grep -q "^# Module:.*my_little_binary_host" out/soong/build.ninja && fail "old module found" 75 grep -q "^# Module:.*my_great_binary_host" out/soong/build.ninja || fail "new module not found" 82 local mtime1=$(stat -c "%y" out/soong/build.ninja) [all …]
|
/build/make/tools/signapk/test/ |
D | run | 5 all: out/signed-$(package) 8 rm -rf out 12 DSAPARAM := out/dsaparam 15 umask 0077 && openssl dsaparam -out $@ 1024 19 umask 0077 && openssl gendsa -out $@.pk~ $(DSAPARAM) 21 -in $@.pk~ -out $@.pk 22 umask 0077 && openssl req -new -x509 -key $@.pk -out $@ -days 1095 \ 25 cert := out/key1.pem 26 out/signed-$(package): $(package) $(cert) 30 -key $(cert).pk -cert $(cert) -tempdir out
|
/build/make/tools/droiddoc/test/stubs/ |
D | func.sh | 17 export A_STUBS=out/stubs/a/stubs 18 export B_STUBS=out/stubs/b/stubs 19 export EXPECTED_STUBS=out/stubs/expected/stubs 28 OBJ_DIR=out/stubs/$ID 36 LD_LIBRARY_PATH=out/host/$PLATFORM/lib \ 40 -J-Djava.library.path=out/host/$PLATFORM/lib \ 44 …-docletpath out/host/$PLATFORM/framework/clearsilver.jar:out/host/$PLATFORM/framework/droiddoc.jar… 46 …sspath out/target/common/obj/JAVA_LIBRARIES/core_intermediates/classes.jar:out/target/common/obj/J… 47 …RC_DIR:out/target/common/obj/JAVA_LIBRARIES/core_intermediates/classes.jar:out/target/common/obj/J… 63 OBJ_DIR=out/stubs/$ID
|
/build/soong/scripts/ |
D | gen_java_usedby_apex.sh | 29 out="$1" 31 rm -f "$out" 32 touch "$out" 33 echo "<externals>" >> "$out" 35 "$dexdeps" "$x" >> "$out" || echo "</external>" >> "$out" 37 echo "</externals>" >> "$out"
|
/build/make/tools/releasetools/ |
D | rangelib.py | 146 out = [] 150 out.append(str(s)) 152 out.append(str(s) + "-" + str(e-1)) 153 return " ".join(out) 168 out = [] 173 out.append(p) 175 return RangeSet(data=out) 186 out = [] 191 out.append(p) 193 return RangeSet(data=out) [all …]
|
/build/soong/python/ |
D | builder.go | 33 Command: `$parCmd -o $out $args`, 40 Command: `$mergeParCmd $out $in`, 48 `echo "#!/usr/bin/env $interp" >${out}.prefix &&` + 49 `$mergeParCmd -p --prefix ${out}.prefix -pm $stub $out $srcsZips && ` + 50 `chmod +x $out && (rm -f $stub; rm -f ${out}.prefix)`, 57 Command: `rm -f $out.main && ` + 58 `sed 's/ENTRY_POINT/$main/' build/soong/python/scripts/main.py >$out.main &&` + 59 `$mergeParCmd -p -pm $out.main --prefix $launcher $out $srcsZips && ` + 60 `chmod +x $out && rm -rf $out.main`, 67 Command: `$mergeParCmd -p --prefix $launcher $out $srcsZips && ` + [all …]
|
/build/soong/genrule/ |
D | genrule_test.go | 111 out: ["out"], 120 out: ["out"], 129 out: ["out"], 138 out: ["out"], 148 out: ["out"], 157 out: ["out"], 166 out: ["out"], 175 out: ["out"], 184 out: ["out"], 193 out: ["out"], [all …]
|
/build/soong/androidmk/parser/ |
D | parser_test.go | 25 out []Node 30 out: []Node{ 40 out: []Node{ 49 out: []Node{ 58 out: []Node{ 68 out: []Node{ 99 if len(got) != len(test.out) { 100 t.Fatalf("length mismatch, expected %d nodes, got %d", len(test.out), len(got)) 104 if got[i].Dump() != test.out[i].Dump() { 106 i, test.out[i], test.out[i].Dump(), got[i], got[i].Dump())
|
/build/make/tools/compliance/cmd/testdata/firstparty/ |
D | highest.apex.meta_lic | 7 built: "out/target/product/fictional/obj/ETC/highest_intermediates/highest.apex" 8 installed: "out/target/product/fictional/system/apex/highest.apex" 10 from_path: "out/target/product/fictional/system/lib/liba.so" 14 from_path: "out/target/product/fictional/system/lib/libb.so" 18 from_path: "out/target/product/fictional/system/bin/bin1" 22 from_path: "out/target/product/fictional/system/bin/bin2" 25 sources: "out/target/product/fictional/system/lib/liba.so" 26 sources: "out/target/product/fictional/system/lib/libb.so" 27 sources: "out/target/product/fictional/system/bin/bin1" 28 sources: "out/target/product/fictional/system/bin/bin2"
|
/build/make/tools/compliance/cmd/testdata/restricted/ |
D | highest.apex.meta_lic | 7 built: "out/target/product/fictional/obj/ETC/highest_intermediates/highest.apex" 8 installed: "out/target/product/fictional/system/apex/highest.apex" 10 from_path: "out/target/product/fictional/system/lib/liba.so" 14 from_path: "out/target/product/fictional/system/lib/libb.so" 18 from_path: "out/target/product/fictional/system/bin/bin1" 22 from_path: "out/target/product/fictional/system/bin/bin2" 25 sources: "out/target/product/fictional/system/lib/liba.so" 26 sources: "out/target/product/fictional/system/lib/libb.so" 27 sources: "out/target/product/fictional/system/bin/bin1" 28 sources: "out/target/product/fictional/system/bin/bin2"
|