HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1576 - 1600 of 5424) sorted by null

<<61626364656667686970>>

  /cts/tests/tests/provider/src/android/provider/cts/
FontsContractTest.java 69 ArrayList<byte[]> out = new ArrayList<>(); external variable declarations
71 out.add(sig.toByteArray());
74 SIGNATURE.add(out); external variable declarations
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Float16ArithmeticTest.java 89 short out = output[x + y * numInputs]; local
96 return lb == out;
99 return Float16Utils.isFloat16NaN(out);
105 return lb == out;
111 float floatOut = Float16Utils.convertFloat16ToFloat(out);
120 message.append("\nActual output: " + Short.toString(out));
  /cts/tests/tests/util/src/android/util/cts/
EventLogTest.java 160 String out = (String) events.get(0).getData(); local
162 assertEquals("output is not a prefix of the input", 0, longString.indexOf(out), 0);
  /cts/tests/tests/view/src/android/view/cts/
WindowManager_LayoutParamsTest.java 233 WindowManager.LayoutParams out = local
235 assertEquals(0, out.copyFrom(mLayoutParams));
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApkNdkApiReport.java 51 System.out.println("Usage: ApkNdkApiReport [OPTION]... [APK]...");
52 System.out.println();
53 System.out.println("Generates a report about what Android NDK methods.");
54 System.out.println();
55 System.out.println("Options:");
56 System.out.println(" -o FILE output file or standard out if not given");
57 System.out.println(" -t PATH path to the CTS testcases Folder");
58 System.out.println(" -b BITS 64 or 32");
59 System.out.println()
    [all...]
GTestApiReport.java 49 System.out.println("Usage: GTestApiXmlReport [OPTION]... [APK]...");
50 System.out.println();
51 System.out.println("Generates a report about what Android NDK methods.");
52 System.out.println();
53 System.out.println("Options:");
54 System.out.println(" -o FILE output file or standard out if not given");
55 System.out.println(" -t PATH path to the CTS testcases Folder");
56 System.out.println(" -b BITS 64 or 32");
57 System.out.println()
    [all...]
  /cts/tools/dasm/src/java_cup/
emit.java 38 * production. This reveals a prior state, which we transition out
225 * @param out stream to produce output on.
227 protected static void emit_package(PrintStream out)
231 out.println("package " + package_name + ";\n");
239 * @param out stream to produce output on.
242 public static void symbols(PrintStream out, boolean emit_non_terms)
250 out.println();
251 out.println("//----------------------------------------------------");
252 out.println("// The following code was generated by " +
254 out.println("// " + new Date())
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvInsnList.java 122 * @param out {@code non-null;} where to write to
124 public void writeTo(AnnotatedOutput out) {
125 int startCursor = out.getCursor();
128 if (out.annotates()) {
129 boolean verbose = out.isVerbose();
137 s = insn.listingString(" ", out.getAnnotationWidth(),
144 out.annotate(codeBytes, s);
146 out.annotate(codeBytes, "");
154 insn.writeTo(out);
162 int written = (out.getCursor() - startCursor) / 2
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstUtf8.java 86 char out; local
96 out = (char) v0;
118 out = (char) value;
145 out = (char) value;
154 chars[outAt] = out;
  /dalvik/dx/src/com/android/dex/
TableOfContents.java 29 * TODO: factor out ID constants.
174 public void writeHeader(Dex.Section out, int api) throws IOException {
175 out.write(DexFormat.apiToMagic(api).getBytes("UTF-8"));
176 out.writeInt(checksum);
177 out.write(signature);
178 out.writeInt(fileSize);
179 out.writeInt(SizeOf.HEADER_ITEM);
180 out.writeInt(DexFormat.ENDIAN_TAG);
181 out.writeInt(linkSize);
182 out.writeInt(linkOff)
    [all...]
  /dalvik/dx/src/com/android/dx/command/dump/
BaseDumper.java 43 private final PrintStream out; field in class:BaseDumper
80 * @param out {@code non-null;} where to dump to
84 public BaseDumper(byte[] bytes, PrintStream out,
88 this.out = out;
214 out.print(s);
224 out.println(s);
  /dalvik/dx/src/com/android/dx/dex/code/
DalvInsnList.java 126 * @param out {@code non-null;} where to write to
128 public void writeTo(AnnotatedOutput out) {
129 int startCursor = out.getCursor();
132 if (out.annotates()) {
133 boolean verbose = out.isVerbose();
141 s = insn.listingString(" ", out.getAnnotationWidth(),
148 out.annotate(codeBytes, s);
150 out.annotate(codeBytes, "");
158 insn.writeTo(out);
166 int written = (out.getCursor() - startCursor) / 2
    [all...]
  /dalvik/dx/src/com/android/dx/io/
DexIndexPrinter.java 43 System.out.println("section " + Integer.toHexString(section.type)
54 System.out.println("string " + index + ": " + string);
62 System.out.println("type " + index + ": " + dex.strings().get(type));
70 System.out.println("proto " + index + ": " + protoId);
78 System.out.println("field " + index + ": " + fieldId);
86 System.out.println("methodId " + index + ": " + methodId);
93 System.out.println("No type lists");
99 System.out.print("Type list i=" + i + ", size=" + size + ", elements=");
101 System.out.print(" " + dex.typeNames().get((int) in.readShort()));
106 System.out.println()
    [all...]
  /dalvik/dx/src/com/android/dx/merge/
InstructionTransformer.java 54 ShortArrayCodeOutput out = new ShortArrayCodeOutput(size); local
57 instruction.encode(out);
62 return out.getArray();
  /dalvik/dx/src/com/android/dx/rop/cst/
CstString.java 86 char out; local
96 out = (char) v0;
118 out = (char) value;
145 out = (char) value;
154 chars[outAt] = out;
  /dalvik/dx/tests/115-merge/com/android/dx/merge/
DexMergeTest.java 190 private void copy(InputStream in, OutputStream out) throws IOException {
194 out.write(buffer, 0, count);
  /dalvik/dx/tests/135-invoke-custom/src/invokecustom/
InvokeCustom.java 31 System.out.println("targetMethodTest4 from Super");
41 System.out.println("InvokeCustom.<init>(" + i + ")");
45 System.out.println("Hello World!");
50 System.out.println(z);
51 System.out.println(b);
52 System.out.println(c);
53 System.out.println(s);
54 System.out.println(i);
55 System.out.println(f);
56 System.out.println(l)
    [all...]
  /developers/build/prebuilts/gradle/AutoBackupForApps/Application/src/main/java/com/example/android/autobackupsample/
AddFileActivity.java 226 FileOutputStream out = null; local
232 out = openFileOutput(file.getName(), Context.MODE_PRIVATE);
239 out = new FileOutputStream(file);
243 out = new FileOutputStream(file);
247 if (file == null || out == null) {
255 bufOut = new BufferedOutputStream(out);
  /developers/samples/android/content/AutoBackupForApps/Application/src/main/java/com/example/android/autobackupsample/
AddFileActivity.java 226 FileOutputStream out = null; local
232 out = openFileOutput(file.getName(), Context.MODE_PRIVATE);
239 out = new FileOutputStream(file);
243 out = new FileOutputStream(file);
247 if (file == null || out == null) {
255 bufOut = new BufferedOutputStream(out);
  /development/samples/ToyVpn/src/com/example/android/toyvpn/
ToyVpnConnection.java 166 FileOutputStream out = new FileOutputStream(iface.getFileDescriptor()); local
201 out.write(packet.array(), 0, length);
228 throw new IllegalStateException("Timed out");
279 throw new IOException("Timed out");
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
VoicemailProviderHelpers.java 322 private void copyStreamData(InputStream in, OutputStream out) throws IOException {
326 out.write(data, 0, numBytes);
  /development/samples/browseable/AutoBackupForApps/src/com.example.android.autobackupsample/
AddFileActivity.java 226 FileOutputStream out = null; local
232 out = openFileOutput(file.getName(), Context.MODE_PRIVATE);
239 out = new FileOutputStream(file);
243 out = new FileOutputStream(file);
247 if (file == null || out == null) {
255 bufOut = new BufferedOutputStream(out);
  /development/tools/bugreport/src/com/android/bugreport/stacks/
ThreadSnapshotParser.java 290 System.out.println(" other ==> [" + frame.text + "]");
296 System.out.println();
297 System.out.println("THREAD");
298 System.out.println("name=" + result.name);
299 System.out.println("daemon=" + result.daemon);
300 System.out.println("priority=" + result.priority);
301 System.out.println("tid=" + result.tid);
302 System.out.println("vmState=" + result.vmState);
304 System.out.println(" attr --> " + s);
306 System.out.println("heldMutexes=" + result.heldMutexes)
    [all...]
  /development/tools/idegen/src/com/android/idegen/
IntellijProject.java 127 File out = new File(ideaDir, "modules.xml"); local
128 logger.info("Creating " + out.getCanonicalPath());
129 Files.write(modulesContent, out, CHARSET);
160 File out = new File(ideaDir, ".name"); local
161 Files.write(name, out, CHARSET);
  /device/asus/fugu/libaudio/
AudioHardwareOutput.cpp 116 AudioStreamOut* out; local
121 out = new AudioStreamOut(*this, false, isIec958NonAudio);
124 out = new AudioStreamOut(*this, true, isIec958NonAudio);
127 if (out == NULL) {
132 *status = out->set(format, channels, sampleRate);
135 *pp_out = out;
138 delete out;
144 void AudioHardwareOutput::closeOutputStream(AudioStreamOut* out) {
145 if (out == NULL)
150 out->standby()
310 sp<AudioOutput> out; local
    [all...]

Completed in 759 milliseconds

<<61626364656667686970>>