Home
last modified time | relevance | path

Searched refs:out (Results 1 – 25 of 175) sorted by relevance

1234567

/build/soong/android/
Dexpand_test.go39 out string
44 out: "abc",
48 out: "abc",
52 out: "defabc",
56 out: "abcdef",
60 out: "defabcdef",
64 out: "",
68 out: "def",
72 out: "def",
76 out: "defdef",
[all …]
Dutil_test.go24 out []string
28 out: []string{"a"},
32 out: []string{"a", "b"},
36 out: []string{"a"},
40 out: []string{"a", "b"},
44 out: []string{"b", "a"},
48 out: []string{"a", "b"},
52 out: []string{"a", "b"},
56 out: []string{"liblog", "libdl", "libc++", "libc", "libm"},
62 out := FirstUniqueStrings(testCase.in)
[all …]
Dvariable_test.go25 out string member
33 out: "0",
38 out: "1",
43 out: "2",
48 out: "0",
53 out: "1",
58 out: "-1",
64 out: "-DA=1",
69 out: "-DA=1u",
74 out: "-DA=abc",
[all …]
Dpaths_test.go29 out string member
36 out: "",
40 out: "a/b",
44 out: "a/b/c",
48 out: ".",
52 out: ".",
56 out: "",
61 out: "",
66 out: "",
71 out: "",
[all …]
/build/blueprint/proptools/
Dtypeequal_test.go25 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 …]
Dclone_test.go25 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 }{},
79 out: &struct{ B1, B2 *bool }{
89 out: &struct{ S *string }{
98 out: &struct{ S *int64 }{
109 out: &struct{ S struct{ S string } }{
[all …]
Descape_test.go25 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$'`,
97 if got != testCase.out {
[all …]
Dextend_test.go28 out interface{} member
52 out: &struct{ B1, B2, B3, B4 bool }{
73 out: &struct{ B1, B2, B3, B4 bool }{
89 out: &struct{ S string }{
101 out: &struct{ S string }{
130 out: &struct{ B1, B2, B3, B4, B5, B6, B7, B8, B9 *bool }{
166 out: &struct{ B1, B2, B3, B4, B5, B6, B7, B8, B9 *bool }{
203 out: &struct{ I1, I2, I3, I4, I5, I6, I7, I8, I9 *int64 }{
224 out: &struct{ I1, I2, I3 *int64 }{
241 out: &struct{ S1, S2, S3, S4 *string }{
[all …]
/build/soong/java/
Djacoco_test.go21 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/finder/fs/
Dreaddir_test.go28 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/third_party/zip/
Dandroid_test.go25 out []byte
30 out: []byte{},
35 out: []byte{1, 2, 3},
40 out: []byte{2, 0, 2, 0, 1, 2},
45 out: []byte{2, 0, 2, 0, 1, 2, 2, 0, 0, 0},
50 out: []byte{},
55 out: []byte{2, 0, 0, 0},
60 out: []byte{0, 0, 8, 0, 0, 0},
65 out: []byte{2, 0, 0, 0},
72 if !bytes.Equal(got, testcase.out) {
[all …]
/build/make/tools/signapk/test/
Drun5 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/
Dfunc.sh17 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/kati/
DMakefile.kati18 KATI_GOPATH:=$$(pwd)/out
20 KATI_GOPATH:=$$(pwd)/out:$${GOPATH}
24 -rm -f out/bin/kati
26 cp out/bin/kati $@
29 -rm -rf out/src out/pkg
30 mkdir -p out/src/github.com/google/kati
31 cp -a $(GO_SRCS) cmd out/src/github.com/google/kati
39 rm -rf out kati go_src_stamp
Dpack.sh21 rm -fr out/kati
22 mkdir out/kati
23 git archive --prefix src/ master | tar -C out/kati -xvf -
25 cd out/kati
Dninja_test.go118out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/ && echo "host C++: llvm-rs-cc <= fram…
119out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/ && echo "host C++: llvm-rs-cc <= fram…
120 depfile: `out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/llvm-rs-cc.P`,
123out/target/product/generic/obj/SHARED_LIBRARIES/libsonivox_intermediates/lib_src/ && prebuilts/gcc…
127out/target/common/obj/APPS/Galaxy4_intermediates/src/renderscript && mkdir -p out/target/common/ob…
131out/target/product/generic/obj/SHARED_LIBRARIES/libclcore.bc_intermediates/arch/) && (prebuilts/cl…
132out/target/product/generic/obj/SHARED_LIBRARIES/libclcore.bc_intermediates/arch/) && (prebuilts/cl…
133 …depfile: `out/target/product/generic/obj/SHARED_LIBRARIES/libclcore.bc_intermediates/arch/generic.…
/build/make/tools/releasetools/
Drangelib.py143 out = []
147 out.append(str(s))
149 out.append(str(s) + "-" + str(e-1))
150 return " ".join(out)
165 out = []
170 out.append(p)
172 return RangeSet(data=out)
183 out = []
188 out.append(p)
190 return RangeSet(data=out)
[all …]
/build/soong/cmd/javac_wrapper/
Djavac_wrapper_test.go25 in, out string
29 out: "\x1b[1mFile.java:40: \x1b[31merror:\x1b[0m\x1b[1m cannot find symbol\x1b[0m\n",
33 out: "import static com.blah.SYMBOL;\n",
37 out: "\x1b[1m \x1b[32m^\x1b[0m\x1b[1m \x1b[0m\n",
41out: "\x1b[1mFile.java:398: \x1b[35mwarning:\x1b[0m\x1b[1m [RectIntersectReturnValueIgnored] Retur…
45 out: "\x1b[1m\x1b[35mwarning:\x1b[0m\x1b[1m [options] blah\x1b[0m\n",
49 out: " (see http://go/errorprone/bugpattern/RectIntersectReturnValueIgnored.md)\n",
61 out: "\n",
65 out: "\n",
78 if got != test.out {
[all …]
/build/soong/cmd/extract_linker/
Dmain_test.go25 out string
30 out: "\n",
35 out: ".byte 127,69,76,70,2,1\n",
48out: ".byte 127,69,76,70,2,1,1,0,0,0,0,0,0,0,0,0,48,0,62,0,1,0,0,0,80,152,2,0,0,0,0,0,64,0,0,0,0,0…
58 if buf.String() != testcase.out {
59 t.Errorf("input: %#v\n want: %q\n got: %q\n", testcase.in, testcase.out, buf.String())
/build/soong/scripts/
Djar-args.sh35 out=$(mktemp)
54 cat $in | $0 a > $out
56 if cmp $out $expected; then
63 cat $out
67 rm -f $in $expected $out
/build/blueprint/
Dsplice_modules_test.go35 out []*moduleInfo
44 out: []*moduleInfo{testModuleD, testModuleE, testModuleB, testModuleC},
53 out: []*moduleInfo{testModuleA, testModuleD, testModuleE, testModuleC},
62 out: []*moduleInfo{testModuleA, testModuleB, testModuleD, testModuleE},
71 out: []*moduleInfo{testModuleD, testModuleE},
80 out: []*moduleInfo{testModuleD, testModuleE, testModuleB, testModuleC},
89 out: []*moduleInfo{testModuleA, testModuleD, testModuleE, testModuleC},
98 out: []*moduleInfo{testModuleA, testModuleB, testModuleD, testModuleE},
107 out: []*moduleInfo{testModuleD, testModuleE},
119 if !reflect.DeepEqual(got, testCase.out) {
[all …]
/build/make/core/
Dconfig_sanitizers.mk32 my_global_sanitize := $(filter-out integer_overflow,$(my_global_sanitize))
33 my_global_sanitize_diag := $(filter-out integer_overflow,$(my_global_sanitize_diag))
44 my_global_sanitize := $(filter-out cfi,$(my_global_sanitize))
45 my_global_sanitize_diag := $(filter-out cfi,$(my_global_sanitize_diag))
115 my_sanitize := $(filter-out cfi,$(my_sanitize))
116 my_sanitize_diag := $(filter-out cfi,$(my_sanitize_diag))
121 my_sanitize := $(filter-out cfi,$(my_sanitize))
122 my_sanitize_diag := $(filter-out cfi,$(my_sanitize_diag))
127 my_sanitize := $(filter-out cfi,$(my_sanitize))
128 my_sanitize_diag := $(filter-out cfi,$(my_sanitize_diag))
[all …]
Dsupport_libraries.mk38 LOCAL_JAVA_LIBRARIES := $(filter-out $(requested_support_libs), \
40 LOCAL_STATIC_JAVA_LIBRARIES := $(filter-out $(requested_support_libs), \
42 LOCAL_SHARED_ANDROID_LIBRARIES := $(filter-out $(requested_support_libs), \
44 LOCAL_STATIC_ANDROID_LIBRARIES := $(filter-out $(requested_support_libs), \
/build/soong/ui/build/
Denvironment.go56 out := (*e)[:0]
61 out = append(out, env)
63 *e = out
68 out := (*e)[:0]
73 out = append(out, env)
75 *e = out
/build/blueprint/bootstrap/bpglob/
Dbpglob.go30 out = flag.String("o", "", "file to write list of files that match glob") var
63 if *out == "" {
72 _, err := pathtools.GlobWithDepFile(flag.Arg(0), *out, *out+".d", excludes)

1234567