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

<<11121314151617181920>>

  /frameworks/rs/tests/lldb/cpp/WaitAttach/
WaitAttach.cpp 40 uint32_t * output = new uint32_t[size*size]; local
41 b->copy2DRangeTo(0, 0, size, size, output);
42 delete [] output;
  /frameworks/rs/tests/lldb/jni/DebugWaitAttach/jnidebugwaitattach/
jnidebugwaitattach.cpp 49 uint32_t * output = new uint32_t[size*size]; local
50 b->copy2DRangeTo(0, 0, size, size, output);
51 delete [] output;
  /frameworks/rs/tests/lldb/jni/NoDebugWaitAttach/jninodebugwaitattach/
jninodebugwaitattach.cpp 49 uint32_t * output = new uint32_t[size*size]; local
50 b->copy2DRangeTo(0, 0, size, size, output);
51 delete [] output;
  /frameworks/support/work/workmanager/src/main/java/androidx/work/
OverwritingInputMerger.java 26 * An {@link InputMerger} that attempts to add all keys from all inputs to the output. In case of a
36 Data.Builder output = new Data.Builder(); local
43 output.putAll(mergedValues);
44 return output.build();
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/jpegstream/
StreamUtils.java 27 * Copies the input byte array into the output int array with the given
31 public static boolean byteToIntArray(int[] output, byte[] input, ByteOrder endianness) {
33 if (output.length * 4 < length) {
34 throw new ArrayIndexOutOfBoundsException("Output array is too short to hold input");
37 for (int i = 0, j = 0; i < output.length; i++, j += 4) {
38 output[i] = ((input[j] & 0xFF) << 24) | ((input[j + 1] & 0xFF) << 16)
42 for (int i = 0, j = 0; i < output.length; i++, j += 4) {
43 output[i] = ((input[j + 3] & 0xFF) << 24) | ((input[j + 2] & 0xFF) << 16)
51 int[] output = new int[input.length / 4]; local
52 byteToIntArray(output, input, endianness)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ClosedOutputStream.java 17 package org.apache.commons.io.output;
23 * Closed output stream. This stream throws an exception on all attempts to
27 * that accept an output stream and acting as a sentinel value instead of
28 * a <code>null</code> output stream.
NullOutputStream.java 17 package org.apache.commons.io.output;
25 * This output stream has no destination (file/socket etc.) and all
39 * Does nothing - output to <code>/dev/null</code>.
49 * Does nothing - output to <code>/dev/null</code>.
57 * Does nothing - output to <code>/dev/null</code>.
NullWriter.java 17 package org.apache.commons.io.output;
43 * Does nothing - output to <code>/dev/null</code>.
51 * Does nothing - output to <code>/dev/null</code>.
59 * Does nothing - output to <code>/dev/null</code>.
69 * Does nothing - output to <code>/dev/null</code>.
77 * Does nothing - output to <code>/dev/null</code>.
  /prebuilts/go/darwin-x86/src/encoding/gob/
decgen.go 23 var output = flag.String("output", "dec_helpers.go", "file name to write") var
171 log.Fatal("usage: decgen [--output filename]")
174 fmt.Fprintf(&b, "// Created by decgen --output %s; DO NOT EDIT\n", *output)
187 fd, err := os.Create(*output)
encgen.go 23 var output = flag.String("output", "enc_helpers.go", "file name to write") var
150 log.Fatal("usage: encgen [--output filename]")
153 fmt.Fprintf(&b, "// Created by encgen --output %s; DO NOT EDIT\n", *output)
166 fd, err := os.Create(*output)
  /prebuilts/go/linux-x86/src/encoding/gob/
decgen.go 23 var output = flag.String("output", "dec_helpers.go", "file name to write") var
171 log.Fatal("usage: decgen [--output filename]")
174 fmt.Fprintf(&b, "// Created by decgen --output %s; DO NOT EDIT\n", *output)
187 fd, err := os.Create(*output)
encgen.go 23 var output = flag.String("output", "enc_helpers.go", "file name to write") var
150 log.Fatal("usage: encgen [--output filename]")
153 fmt.Fprintf(&b, "// Created by encgen --output %s; DO NOT EDIT\n", *output)
166 fd, err := os.Create(*output)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.sorting/alg.sort/partial.sort.copy/
partial_sort_copy.pass.cpp 33 int* output = new int[M]; local
37 int* r = std::partial_sort_copy(Iter(input), Iter(input+N), output, output+M);
38 int* e = output + std::min(N, M);
41 for (int* x = output; x < e; ++x, ++i)
43 delete [] output;
partial_sort_copy_comp.pass.cpp 36 int* output = new int[M]; local
40 int* r = std::partial_sort_copy(Iter(input), Iter(input+N), output, output+M,
42 int* e = output + std::min(N, M);
45 for (int* x = output; x < e; ++x, ++i)
47 delete [] output;
  /tools/tradefederation/core/prod-tests/src/com/android/graphics/tests/
FlatlandTestFuncTest.java 29 private final String output = " cmdline: /data/local/tmp/flatland\n" + field in class:FlatlandTestFuncTest
49 ft.parseResult(output);
  /external/apache-harmony/support/src/test/java/tests/support/
Support_AvailTest.java 39 String output = "true"; local
62 output = "Failed avail test1 - " + real + "!=" + expected;
78 // if(real != expected) output = "Failed avail test2 - " + real +
97 output = "Failed avail test3 - " + real + "!=" + expected;
101 output = "IOException during available() testing";
106 myout.write(output.getBytes());
  /external/javassist/src/main/javassist/bytecode/
AnnotationDefaultAttribute.java 139 ByteArrayOutputStream output = new ByteArrayOutputStream(); local
140 AnnotationsWriter writer = new AnnotationsWriter(output, constPool);
149 set(output.toByteArray());
  /external/protobuf/examples/
AddPerson.java 88 FileOutputStream output = new FileOutputStream(args[0]); local
90 addressBook.build().writeTo(output);
92 output.close();
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
PasswordTransformationMethodTest.java 24 CharSequence output = transformationMethod.getTransformation("foobar", null); local
25 assertThat(output.toString(), is("\u2022\u2022\u2022\u2022\u2022\u2022")); //using the escaped characters for cross platform compatibility.
30 CharSequence output = transformationMethod.getTransformation(" baz ", null); local
31 assertThat(output.toString(), is("\u2022\u2022\u2022\u2022\u2022"));
36 CharSequence output = transformationMethod.getTransformation(" ", null); local
37 assertThat(output.toString(), is("\u2022\u2022\u2022\u2022"));
42 CharSequence output = transformationMethod.getTransformation("", null); local
43 assertThat(output.toString(), is(""));
48 CharSequence output = transformationMethod.getTransformation(null, null); local
49 assertThat(output.toString(), is(""))
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
InputStreamSource.java 83 Frame output = context.getFrameManager().newFrame(mOutputFormat); local
84 output.setData(byteBuffer);
86 // Push output
87 pushOutput("data", output);
90 output.release();
92 // Close output port as we are done here
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
CrossProcessFilter.java 112 // Create output frame
113 Frame output = context.getFrameManager().newFrame(inputFormat); local
116 mProgram.process(input, output);
118 // Push output
119 pushOutput("image", output);
122 output.release();
DrawOverlayFilter.java 73 // Create output frame with copy of input
74 Frame output = env.getFrameManager().newFrame(sourceFrame.getFormat()); local
75 output.setDataFromFrame(sourceFrame);
77 // Draw onto output
78 mProgram.process(overlayFrame, output);
80 // Push output
81 pushOutput("image", output);
84 output.release();
NegativeFilter.java 82 // Create output frame
83 Frame output = context.getFrameManager().newFrame(inputFormat); local
91 mProgram.process(input, output);
93 // Push output
94 pushOutput("image", output);
97 output.release();
PosterizeFilter.java 85 // Create output frame
86 Frame output = context.getFrameManager().newFrame(inputFormat); local
94 mProgram.process(input, output);
96 // Push output
97 pushOutput("image", output);
100 output.release();
  /developers/build/prebuilts/gradle/PermissionRequest/Application/src/main/java/com/example/android/permissionrequest/
SimpleWebServer.java 121 PrintStream output = null; local
137 // Output stream that we send the response to
138 output = new PrintStream(socket.getOutputStream());
142 writeServerError(output);
147 writeServerError(output);
152 output.println("HTTP/1.0 200 OK");
153 output.println("Content-Type: " + detectMimeType(route));
154 output.println("Content-Length: " + bytes.length);
155 output.println();
156 output.write(bytes)
188 ByteArrayOutputStream output = new ByteArrayOutputStream(); local
    [all...]

Completed in 1441 milliseconds

<<11121314151617181920>>