Home
last modified time | relevance | path

Searched refs:input (Results 1 – 25 of 71) sorted by relevance

123

/build/blueprint/proptools/
Dproptools_test.go22 input string
27 input: "S",
32 input: "String",
37 input: "STRING",
42 input: "StRiNg",
47 input: "Under_score",
52 input: "UNDER_SCORE",
57 input: "X86",
62 input: "X86_64",
68 if got := PropertyNameForField(tt.input); got != tt.want {
[all …]
Dunpack_test.go27 input string
33 input: `
53 input: `
68 input: `
83 input: `
103 input: `
126 input: `
147 input: `
166 input: `
193 input: `
[all …]
/build/blueprint/parser/
Dprinter_test.go23 input string
27 input: `
35 input: `
46 input: `
65 input: `
78 input: `
95 input: `
108 input: `
128 input: `
144 input: `
[all …]
/build/blueprint/
Dninja_strings_test.go25 input string
32 input: "abc def $ghi jkl",
37 input: "abc def $ghi$jkl",
42 input: "foo $012_-345xyz_! bar",
47 input: "foo ${012_-345xyz_} bar",
52 input: "foo ${012_-345xyz_} bar",
57 input: "foo $$ bar",
63 input: "$foo${bar}",
68 input: "$foo$$",
73 input: "foo bar",
[all …]
Dninja_writer_test.go29 input func(w *ninjaWriter)
33 input: func(w *ninjaWriter) {
39 input: func(w *ninjaWriter) {
45 input: func(w *ninjaWriter) {
51 input: func(w *ninjaWriter) {
58 input: func(w *ninjaWriter) {
64 input: func(w *ninjaWriter) {
70 input: func(w *ninjaWriter) {
76 input: func(w *ninjaWriter) {
82 input: func(w *ninjaWriter) {
[all …]
/build/soong/android/
Dutil_test.go137 input []string
142 input: []string{},
147 input: []string{"a"},
152 input: []string{"a", "b"},
161 out := JoinWithPrefix(testCase.input, prefix)
164 t.Errorf(" input: %#v", testCase.input)
174 input := []string{"a", "b", "c"}
200 out := IndexList(testCase.key, input)
204 t.Errorf(" input: %#v", input)
213 input := []string{"a"}
[all …]
/build/soong/ui/terminal/
Dutil.go58 func stripAnsiEscapes(input []byte) []byte {
60 read := input
64 write := input
104 input = input[:len(input)-i]
107 return input
Dutil_test.go23 input string
56 got := string(stripAnsiEscapes([]byte(tc.input)))
61 " got: %#v", tc.input, tc.output, got)
/build/soong/xml/
Dxml_test.go99 rule, input, schemaType, schema string
101 {rule: "xmllint-dtd", input: "foo.xml", schemaType: "dtd", schema: "foo.dtd"},
102 {rule: "xmllint-xsd", input: "bar.xml", schemaType: "xsd", schema: "bar.xsd"},
103 {rule: "xmllint-minimal", input: "baz.xml"},
106 rule := ctx.ModuleForTests(tc.input, "android_arm64_armv8-a").Rule(tc.rule)
107 assertEqual(t, "input", tc.input, rule.Input.String())
/build/soong/cmd/multiproduct_kati/
Dmain_test.go80 input := []string{}
82 input = append(input, fmt.Sprintf("%d", i))
85 got := splitList(input, tc.shardCount)
/build/soong/cc/config/
Dtidy_test.go23 input string
34 t.Run(testCase.input, func(t *testing.T) {
35 output := TidyChecksForDir(testCase.input)
/build/make/tools/
Dcompare_fileslist.py35 for input in inputs:
36 f = file(input, "r")
84 for input in inputs:
85 combo = input.split(os.path.sep)[1]
Dextract_kernel.py112 o, _ = sp.communicate(input=input_bytes[idx:])
125 o, _ = sp.communicate(input=input_bytes)
224 input_bytes = args.input.read()
228 "configs in {}".format(args.input.name)):
231 "version in {}".format(args.input.name)):
234 "kernel release in {}".format(args.input.name)):
/build/soong/third_party/zip/
Dandroid.go88 func stripExtras(input []byte) []byte {
91 for len(input) >= 4 {
92 r := readBuf(input)
99 ret = append(ret, input[:4+size]...)
101 input = input[4+size:]
105 ret = append(ret, input...)
/build/soong/cmd/zipsync/
Dzipsync.go85 for _, input := range inputs {
86 reader, err := zip.OpenReader(input)
108 log.Fatalf("%q in %q is an absolute path", name, input)
112 log.Fatalf("%q found in both %q and %q", name, prev, input)
114 seen[name] = input
/build/soong/makedeps/
Ddeps.go70 for _, input := range x.Prerequisites.Words() {
71 ret.Inputs = append(ret.Inputs, input.Value(nil))
92 for _, input := range d.Inputs {
93 fmt.Fprintf(b, " %s", replacer.Replace(input))
Ddeps_test.go28 input string
35 input: "build/ninja.o: ninja.cc ninja.h eval_env.h manifest_parser.h",
48 input: ` \
57 input: `foo.o: \
67 input: "foo.o: \\\r\n bar.h baz.h\r\n",
75 input: `Project\Dir\Build\Release8\Foo\Foo.res : \
93 input: `a\ bc\ def: a\ b c d`,
101 input: `\!\@\#$$\%\^\&\\:`,
118 input: `C\:/Program\ Files\ (x86)/Microsoft\ crtdefs.h: \
138 input: `a b: c
[all …]
/build/make/tools/signtos/
DSignTos.java126 DataInputStream input = new DataInputStream(new FileInputStream(file)); in readPrivateKey() local
129 input.read(bytes); in readPrivateKey()
147 input.close(); in readPrivateKey()
223 private static void signWholeFile(InputStream input, OutputStream output, PrivateKey signingKey) in signWholeFile() argument
233 int bytesRead = input.read(buffer, 0, HEADER_SIZE - skippedBytes); in signWholeFile()
240 int bytesRead = input.read(buffer); in signWholeFile()
303 InputStream input = new BufferedInputStream(new FileInputStream(inputFilename)); in main() local
306 SignTos.signWholeFile(input, output, privateKey); in main()
308 input.close(); in main()
/build/soong/cmd/dep_fixer/
Dmain.go48 input, err := ioutil.ReadFile(arg)
53 deps, err := makedeps.Parse(arg, bytes.NewBuffer(append([]byte(nil), input...)))
60 firstInput = input
/build/soong/cmd/zip2zip/
Dzip2zip.go35 input = flag.String("i", "", "zip file to read from") var
73 if *input == "" || *output == "" {
80 reader, err := zip.OpenReader(*input)
137 input, output := includeSplit(arg)
143 if match, err := pathtools.Match(input, file.Name); err != nil {
149 if pathtools.IsGlob(input) {
151 rel, err := filepath.Rel(constantPartOfPattern(input), file.Name)
155 return fmt.Errorf("globbed path %q was not in %q", file.Name, constantPartOfPattern(input))
/build/soong/ui/status/
Dcritical_path.go57 input *node member
74 for _, input := range result.Action.Inputs {
75 if x := cp.nodes[input]; x != nil {
94 input: criticalPathInput,
150 node = node.input
/build/soong/symbol_inject/cmd/
Dsymbol_inject.go26 input = flag.String("i", "", "input file") var
44 if *input == "" {
62 r, err := os.Open(*input)
/build/make/tools/droiddoc/templates-pdk/assets/
Dyui-3.3.0-reset-min.css8input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacin… selector
/build/soong/scripts/
Dmergenotice.py41 for input in args.inputs:
42 with open(input, 'r') as f:
/build/soong/cc/
Dobject.go137 input := android.PathForModuleOut(ctx, "unprefixed", ctx.ModuleName()+objectExtension)
138 TransformBinaryPrefixSymbols(ctx, String(object.Properties.Prefix_symbols), input,
140 output = input

123