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

<<31323334353637383940>>

  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
BinaryDictOffdeviceUtils.java 136 try (final OutputStream output = new BufferedOutputStream(new FileOutputStream(dst))) {
137 copy(input, output);
138 output.flush();
139 output.close();
209 public static void copy(final InputStream input, final OutputStream output) throws IOException {
212 output.write(buffer, 0, readBytes);
  /cts/tests/tests/media/src/android/media/cts/
PresentationSyncTest.java 58 * Tests whether the output frame rate can be limited by the presentation time.
91 InputSurface output = new InputSurface(holder.getSurface()); local
92 mWidth = output.getWidth();
93 mHeight = output.getHeight();
95 output.makeCurrent();
100 long baseTimeNsec = runThroughputTest(output, 0L, -1.0f);
127 // runThroughputTest(output, refreshNsec, 0.75f);
129 runThroughputTest(output, refreshNsec, 1.0f);
130 runThroughputTest(output, refreshNsec, 2.0f);
131 runThroughputTest(output, refreshNsec, 4.0f)
225 InputSurface output = new InputSurface(holder.getSurface()); local
    [all...]
  /external/guice/extensions/persist/lib/
commons-io.jar 
  /build/make/tools/signtos/
SignTos.java 223 private static void signWholeFile(InputStream input, OutputStream output, PrivateKey signingKey)
234 output.write(buffer, 0, bytesRead);
246 output.write(buffer, 0, bytesRead);
253 output.write(sigBlock);
260 "input.img output.img");
286 * Should only be "<privatekey> <input> <output>" left.
304 OutputStream output = new BufferedOutputStream(new FileOutputStream(outputFilename)); local
306 SignTos.signWholeFile(input, output, privateKey);
309 output.close();
  /developers/build/prebuilts/gradle/PdfRendererBasic/Application/src/main/java/com/example/android/pdfrendererbasic/
PdfRendererBasicFragment.java 157 FileOutputStream output = new FileOutputStream(file); local
161 output.write(buffer, 0, size);
164 output.close();
  /developers/samples/android/ui/graphics/PdfRendererBasic/Application/src/main/java/com/example/android/pdfrendererbasic/
PdfRendererBasicFragment.java 157 FileOutputStream output = new FileOutputStream(file); local
161 output.write(buffer, 0, size);
164 output.close();
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
ExperimentingCaliperRun.java 157 ConsoleOutput output = new ConsoleOutput(stdout, totalTrials, stopwatch); local
163 output.processTrial(result);
169 output.processFailedTrial((TrialFailureException) e.getCause());
187 output.close();
  /art/tools/dexfuzz/src/dexfuzz/
ExecutionResult.java 22 * Stores the output of an executed command.
25 public List<String> output; field in class:ExecutionResult
40 * Get only the output, with all lines concatenated together, excluding newline characters.
45 for (String line : output) {
54 * Get only the output, with all lines concatenated together, including newline characters.
59 for (String line : output) {
96 * Get both the output and error, concatenated together, excluding newline characters.
106 * Get both the output and error, concatenated together, including newline characters.
  /art/tools/dexfuzz/src/dexfuzz/listeners/
UpdatingConsoleListener.java 68 String output = String.format("| %-9d| %-9d| %-9d| %-9d| %-9d| %-9d|", local
71 System.out.print("\r" + output);
  /bionic/libc/kernel/uapi/linux/
matroxfb.h 26 __u32 output; member in struct:matroxioc_output_mode
  /cts/apps/VpnApp/src/com/android/cts/vpnfirewall/
IcmpMessage.java 53 ByteArrayOutputStream output = new ByteArrayOutputStream(); local
54 DataOutputStream stream = new DataOutputStream(output);
63 byte[] result = output.toByteArray();
  /cts/hostsidetests/deviceidle/src/com/android/cts/deviceidle/
DeviceIdleWhitelistTest.java 90 final String output = getDevice().executeShellCommand(SHOW_SYS_WHITELIST_COMMAND).trim(); local
92 for (String line : output.split("\n")) {
  /cts/hostsidetests/multiuser/src/android/host/multiuser/
BaseMultiUserTest.java 81 final String output = getDevice().executeShellCommand(command); local
82 CLog.d("Output for command " + command + ": " + output);
84 if (output.startsWith("Success")) {
86 return Integer.parseInt(output.substring(output.lastIndexOf(" ")).trim());
88 CLog.e("Failed to parse result: %s", output);
91 CLog.e("Failed to create restricted profile: %s", output);
104 final String output = getDevice().executeShellCommand(command); local
105 CLog.d("Output for command " + command + ": " + output)
    [all...]
  /cts/libs/vogar-expect/src/vogar/
Outcome.java 35 private final String output; field in class:Outcome
41 this.output = sanitizeOutputLines(outputLines);
48 this.output = sanitizeOutputLine(outputLine);
55 this.output = sanitizeOutputLine(outputLine);
62 this.output = sanitizeOutputLines(throwableToLines(throwable));
91 return output;
95 return Arrays.asList(output.split("\n"));
156 && output.equals(outcome.output);
165 hashCode = 37 * hashCode + output.hashCode()
    [all...]
  /cts/tests/aslr/src/
AslrMallocTest.cpp 85 /* exec self to print malloc output */
94 std::string output; local
95 ASSERT_TRUE(android::base::ReadFdToString(fds[0], &output));
102 ASSERT_TRUE(android::base::ParseUint(output.c_str(), &address));
  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
BitmapUtils.java 55 int[] output = new int[COLOR_BIT_DEPTH * NUM_CHANNELS]; local
56 sums.copyTo(output);
57 return output;
  /cts/tests/framework/base/activitymanager/src/android/server/am/
DisplaySizeTest.java 139 final String output = executeShellCommand("wm density"); local
140 final boolean success = output.contains("Override density: " + targetDensity);
  /cts/tests/tests/provider/src/android/provider/cts/
ProviderTestUtils.java 68 String output = executeShellCommand("bmgr transport " + transport, uiAutomation); local
70 Matcher matcher = pattern.matcher(output);
74 throw new Exception("non-parsable output setting bmgr transport: " + output);
81 String output = executeShellCommand("bmgr enabled", uiAutomation); local
82 Matcher matcher = BMGR_ENABLED_PATTERN.matcher(output.trim());
86 throw new RuntimeException("Backup output format changed. No longer matches"
87 + " expected regex: " + BMGR_ENABLED_PATTERN + "\nactual: '" + output + "'");
96 String output = executeShellCommand("bmgr list transports", uiAutomation); local
97 for (String t : output.split(" "))
    [all...]
  /dalvik/dx/junit-tests/com/android/dx/merge/
DexMergerTest.java 76 Path output = temporaryFolder.newFolder().toPath(); local
77 Main.main(new String[]{"--dex", "--output=" + output.toString(), classesJar.toString()});
79 return new Dex(Files.readAllBytes(output.resolve("classes.dex")));
  /developers/build/prebuilts/gradle/ActiveNotifications/Application/src/main/java/com/example/android/activenotifications/
MainActivity.java 79 ViewAnimator output = (ViewAnimator) findViewById(R.id.sample_output); local
81 output.setDisplayedChild(1);
83 output.setDisplayedChild(0);
  /developers/build/prebuilts/gradle/AdvancedImmersiveMode/Application/src/main/java/com/example/android/advancedimmersivemode/
MainActivity.java 79 ViewAnimator output = (ViewAnimator) findViewById(R.id.sample_output); local
81 output.setDisplayedChild(1);
83 output.setDisplayedChild(0);
  /developers/build/prebuilts/gradle/AppRestrictionSchema/Application/src/main/java/com/example/android/apprestrictionschema/
MainActivity.java 79 ViewAnimator output = (ViewAnimator) findViewById(R.id.sample_output); local
81 output.setDisplayedChild(1);
83 output.setDisplayedChild(0);
  /developers/build/prebuilts/gradle/BasicTransition/Application/src/main/java/com/example/android/basictransition/
MainActivity.java 79 ViewAnimator output = (ViewAnimator) findViewById(R.id.sample_output); local
81 output.setDisplayedChild(1);
83 output.setDisplayedChild(0);
  /developers/build/prebuilts/gradle/BluetoothChat/Application/src/main/java/com/example/android/bluetoothchat/
MainActivity.java 79 ViewAnimator output = (ViewAnimator) findViewById(R.id.sample_output); local
81 output.setDisplayedChild(1);
83 output.setDisplayedChild(0);
  /developers/build/prebuilts/gradle/CardEmulation/Application/src/main/java/com/example/android/cardemulation/
MainActivity.java 79 ViewAnimator output = (ViewAnimator) findViewById(R.id.sample_output); local
81 output.setDisplayedChild(1);
83 output.setDisplayedChild(0);

Completed in 1716 milliseconds

<<31323334353637383940>>