HomeSort by relevance Sort by last modified time
    Searched defs:output (Results 876 - 900 of 4809) sorted by null

<<31323334353637383940>>

  /platform_testing/libraries/longevity/tests/src/android/longevity/core/scheduler/
IterateTest.java 59 List<Runner> output = mIterate.apply(args, input); local
61 Map<String, Long> countMap = output.stream()
ShuffleTest.java 60 List<Runner> output = mShuffle.apply(args, new ArrayList(input)); local
63 assertThat(input).isEqualTo(output);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
addressed.go 9 var output string var
12 fmt.Printf(output)
24 output += fmt.Sprintln("*x is", *x)
25 output += fmt.Sprintln("Gratuitously use some stack")
26 output += fmt.Sprintln("*x is", *x)
30 output += fmt.Sprintln("*w is", *w)
31 output += fmt.Sprintln("Gratuitously use some stack")
32 output += fmt.Sprintln("*w is", *w)
36 output += fmt.Sprintln("*y.(*int) is", *y.(*int))
37 output += fmt.Sprintln("Gratuitously use some stack"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
addressed.go 9 var output string var
12 fmt.Printf(output)
24 output += fmt.Sprintln("*x is", *x)
25 output += fmt.Sprintln("Gratuitously use some stack")
26 output += fmt.Sprintln("*x is", *x)
30 output += fmt.Sprintln("*w is", *w)
31 output += fmt.Sprintln("Gratuitously use some stack")
32 output += fmt.Sprintln("*w is", *w)
36 output += fmt.Sprintln("*y.(*int) is", *y.(*int))
37 output += fmt.Sprintln("Gratuitously use some stack"
    [all...]
  /prebuilts/sdk/tools/windows/bin/
mainDexClasses.bat 70 set output= variable
76 if %1 NEQ --output goto notOut
77 set "output=%2"
115 if DEFINED output goto redirect
119 call "%java_exe%" -Djava.ext.dirs="%frameworkdir%" com.android.multidex.MainDexListBuilder %disableKeepAnnotated% "%tmpJar%" "%params%" 1>"%output%"
126 echo "Usage : %0 [--output <output file>] <application path>"
  /system/core/libsparse/
append2simg.c 46 fprintf(stderr, "Usage: append2simg <output> <input>\n");
51 int output; local
79 output = open(output_path, O_RDWR | O_BINARY);
80 if (output < 0) {
81 fprintf(stderr, "Couldn't open output file (%s)\n", strerror(errno));
85 sparse_output = sparse_file_import_auto(output, false, true);
87 fprintf(stderr, "Couldn't import output file\n");
102 fprintf(stderr, "Input file is not a multiple of the output file's block size");
120 lseek64(output, 0, SEEK_SET);
128 close(output);
    [all...]
  /system/keymaster/android_keymaster/
operation.cpp 142 Buffer output; local
145 Update(input_params, input, &output_params, &output, &input_consumed);
150 assert(output.available_read() == 0);
  /system/sepolicy/tools/
version_policy.c 21 printf(" -o, --output=<file> write cil policy to <file>\n");
91 char *output = NULL; local
100 {"output", required_argument, 0, 'o'},
121 output = strdup(optarg);
179 rc = cil_write_ast(out_db, output);
188 free(output);
  /system/tools/aidl/tests/
aidl_test_client_primitives.cpp 183 vector<sp<IBinder>> output; local
186 status = s->ReverseNamedCallbackList(input, &output, &reversed);
191 if (output.size() != 3) {
204 android::interface_cast<INamedCallback>(output[i]);
208 cerr << "Could not query INamedCallback from output" << endl;
213 cerr << "Output had wrong INamedCallback" << endl;
225 cerr << "Could not query INamedCallback from reversed output" << endl;
230 cerr << "Reversed output had wrong INamedCallback" << endl;
  /test/vts/drivers/shell/
ShellDriverTest.cpp 99 // read driver output
107 // TODO(yuexima) use vector for output messages
111 cout << "[Shell driver] output for command " << i << ": " << out_str
117 cout << "[Client] receiving output: " << ss.str() << endl;
163 * This test tests whether the output of "uname" is "Linux\n"
167 string output = local
169 ASSERT_EQ(output.compare(expected), 0);
173 * This test tests whether the output of "which ls" is "/system/bin/ls\n"
177 string output = local
179 ASSERT_EQ(output.compare(expected), 0)
    [all...]
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/compress/
DeflateExecutionCompressor.java 67 ByteArrayOutputStream output = new ByteArrayOutputStream(); local
70 try (DeflaterOutputStream dos = new DeflaterOutputStream(output, deflater)) {
74 CloseableByteSource result = tracker.fromStream(output);
  /tools/tradefederation/core/src/com/android/tradefed/suite/checker/
SystemServerFileDescriptorChecker.java 75 String output = device.executeShellCommand(command); local
76 if (output == null) {
77 CLog.w("no shell output for command: " + command);
80 output = output.trim();
82 return Integer.parseInt(output);
84 CLog.w("unable to parse result of '" + command + "' : " + output);
  /development/samples/browseable/PdfRendererBasic/src/com.example.android.pdfrendererbasic/
PdfRendererBasicFragment.java 152 FileOutputStream output = new FileOutputStream(file); local
156 output.write(buffer, 0, size);
159 output.close();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
SocketTransportWrapper.java 51 private OutputStream output; field in class:SocketTransportWrapper
205 if (output != null) {
206 output.close();
209 if (transportSocket != null && input == null && output == null && !transportSocket.isClosed()) {
294 output.write(packet);
295 output.flush();
307 output.write(HANDSHAKE_STRING.getBytes());
308 output.flush();
329 * Creates input/output streams for connection socket.
333 output = transportSocket.getOutputStream()
    [all...]
  /external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
Agent.java 20 import org.jacoco.agent.rt.internal.output.FileOutput;
21 import org.jacoco.agent.rt.internal.output.IAgentOutput;
22 import org.jacoco.agent.rt.internal.output.NoneOutput;
23 import org.jacoco.agent.rt.internal.output.TcpClientOutput;
24 import org.jacoco.agent.rt.internal.output.TcpServerOutput;
109 private IAgentOutput output; field in class:Agent
165 output = createAgentOutput();
166 output.startup(options, data);
183 output.writeExecutionData(false);
185 output.shutdown()
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/
BarColumnTest.java 43 private MemoryMultiReportOutput output; field in class:BarColumnTest
59 output = new MemoryMultiReportOutput();
60 root = new ReportOutputFolder(output);
71 output.close();
72 output.assertAllClosed();
86 final Document doc = support.parse(output.getFile("Test.html"));
98 final Document doc = support.parse(output.getFile("Test.html"));
126 final Document doc = support.parse(output.getFile("Test.html"));
146 final Document doc = support.parse(output.getFile("Test.html"));
166 final Document doc = support.parse(output.getFile("Test.html"))
    [all...]
CounterColumnTest.java 45 private MemoryMultiReportOutput output; field in class:CounterColumnTest
61 output = new MemoryMultiReportOutput();
62 root = new ReportOutputFolder(output);
73 output.close();
74 output.assertAllClosed();
103 final Document doc = support.parse(output.getFile("Test.html"));
116 final Document doc = support.parse(output.getFile("Test.html"));
129 final Document doc = support.parse(output.getFile("Test.html"));
142 final Document doc = support.parse(output.getFile("Test.html"));
155 final Document doc = support.parse(output.getFile("Test.html"))
    [all...]
LabelColumnTest.java 38 private MemoryMultiReportOutput output; field in class:LabelColumnTest
54 output = new MemoryMultiReportOutput();
55 root = new ReportOutputFolder(output);
66 output.close();
67 output.assertAllClosed();
81 final Document doc = support.parse(output.getFile("Test.html"));
90 final Document doc = support.parse(output.getFile("Test.html"));
101 final Document doc = support.parse(output.getFile("Test.html"));
PercentageColumnTest.java 42 private MemoryMultiReportOutput output; field in class:PercentageColumnTest
58 output = new MemoryMultiReportOutput();
59 root = new ReportOutputFolder(output);
70 output.close();
71 output.assertAllClosed();
85 final Document doc = support.parse(output.getFile("Test.html"));
95 final Document doc = support.parse(output.getFile("Test.html"));
105 final Document doc = support.parse(output.getFile("Test.html"));
117 final Document doc = support.parse(output.getFile("Test.html"));
130 final Document doc = support.parse(output.getFile("Test.html"))
    [all...]
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typesolvers/
JarTypeSolver.java 68 OutputStream output = new FileOutputStream(tempFile); local
72 output.write(buffer, 0, bytesRead);
75 output.close();
  /external/javassist/sample/preproc/
Compiler.java 54 protected BufferedWriter output; field in class:Compiler
76 output = new BufferedWriter(new FileWriter(outputname));
90 CommentSkipper reader = new CommentSkipper(input, output);
92 output.write(c);
104 output.write(c);
107 output.close();
113 output.write(c);
118 output.write(c);
133 output.write(word[i]);
151 output.write(importclass)
303 private BufferedWriter output; field in class:CommentSkipper
    [all...]
  /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/
OperationTest.java 106 Output<Integer> output = TestUtil.constant(g, "c", 1); local
107 Output<Integer> output1 = output.op().<Integer>output(0);
108 Output<Integer> output2 = g.operation("c").<Integer>output(0);
109 assertEquals(output, output1);
110 assertEquals(output.hashCode(), output1.hashCode());
111 assertEquals(output, output2)
119 Output<Integer> output = TestUtil.constant(g, "c", 1); local
134 Output<Integer> output = TestUtil.constant(g, "c", new int[] {1}); local
    [all...]
  /external/turbine/java/com/google/turbine/bytecode/
AnnotationWriter.java 43 final ByteArrayDataOutput output; field in class:AnnotationWriter
45 public AnnotationWriter(ConstantPool pool, ByteArrayDataOutput output) {
47 this.output = output;
51 output.writeShort(pool.utf8(annotation.typeName()));
52 output.writeShort(annotation.elementValuePairs().size());
54 output.writeShort(pool.utf8(entry.getKey()));
116 output.writeByte(tag);
117 output.writeShort(index);
121 output.writeByte('e')
    [all...]
  /external/webrtc/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
ViESurfaceRenderer.java 151 FileOutputStream output = new FileOutputStream(String.format( local
153 output.write(byteOutStream.toByteArray());
154 output.flush();
155 output.close();
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
IOUtils.java 38 import org.apache.commons.io.output.ByteArrayOutputStream;
43 * This class provides static utility methods for input/output operations.
155 * @param output the Writer to close, may be null or already closed
157 public static void closeQuietly(Writer output) {
159 if (output != null) {
160 output.close();
191 * @param output the OutputStream to close, may be null or already closed
193 public static void closeQuietly(OutputStream output) {
195 if (output != null) {
196 output.close()
217 ByteArrayOutputStream output = new ByteArrayOutputStream(); local
235 ByteArrayOutputStream output = new ByteArrayOutputStream(); local
259 ByteArrayOutputStream output = new ByteArrayOutputStream(); local
297 CharArrayWriter output = new CharArrayWriter(); local
321 CharArrayWriter output = new CharArrayWriter(); local
    [all...]

Completed in 1637 milliseconds

<<31323334353637383940>>