/prebuilts/tools/common/m2/repository/org/sonatype/gshell/gshell-io/2.4/ |
gshell-io-2.4.jar | |
/frameworks/base/services/core/java/com/android/server/ |
AppOpsService.java | 1059 XmlSerializer out = new FastXmlSerializer(); local [all...] |
/frameworks/base/services/core/java/com/android/server/wallpaper/ |
WallpaperManagerService.java | 508 // Comment this out for now. 1099 XmlSerializer out = new FastXmlSerializer(); local [all...] |
/cts/hostsidetests/appsecurity/test-apps/AppWithData/src/com/android/cts/appwithdata/ |
CreatePrivateDataTest.java | 213 OutputStream out = socket.getOutputStream(); local 218 out.write(buf); 219 out.flush(); 221 out.close();
|
/cts/tests/tests/net/src/android/net/cts/ |
TrafficStatsTest.java | 131 OutputStream out = socket.getOutputStream(); local 137 out.write(buf); 138 out.flush(); 146 out.close();
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
DebugEventSocketProxy.java | 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 51 protected PrintWriter out; field in class:DebugEventSocketProxy 80 out = new PrintWriter(new BufferedWriter(osw)); 84 out.println("ANTLR "+ DebugEventListener.PROTOCOL_VERSION); 85 out.println("grammar \""+ grammarFileName); 86 out.flush(); 97 out.close(); 116 out.println(event); 117 out.flush();
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/utils/ |
Util.java | 167 OutputStream out = new FileOutputStream(dest); local 171 out.write(buf, 0, len); 174 out.close(); 196 OutputStream out = new FileOutputStream(dest); local 200 out.write(buf, 0, len); 203 out.close();
|
/external/emma/core/java12/com/vladium/emma/data/ |
DataFactory.java | 133 public static void writeMetaData (final IMetaData data, final OutputStream out) 136 ObjectOutputStream oout = new ObjectOutputStream (out); 146 OutputStream out = null; local 149 out = connection.getOutputStream (); 151 writeMetaData (data, out); 152 out.flush (); 156 if (out != null) try { out.close (); } catch (Exception ignore) {} 177 public static void writeCoverageData (final ICoverageData data, final OutputStream out) 182 ObjectOutputStream oout = new ObjectOutputStream (out); [all...] |
/external/smack/src/org/xbill/DNS/ |
Message.java | 387 toWire(DNSOutput out) { 388 header.toWire(out); 395 rec.toWire(out, i, c); 402 sectionToWire(DNSOutput out, int section, Compression c, 406 int pos = out.current(); 413 pos = out.current(); 417 rec.toWire(out, section, c); 418 if (out.current() > maxLength) { 419 out.jump(pos); 428 toWire(DNSOutput out, int maxLength) 487 DNSOutput out = new DNSOutput(); local 508 DNSOutput out = new DNSOutput(); local [all...] |
Record.java | 213 toWire(DNSOutput out, int section, Compression c) { 214 name.toWire(out, c); 215 out.writeU16(type); 216 out.writeU16(dclass); 219 out.writeU32(ttl); 220 int lengthPosition = out.current(); 221 out.writeU16(0); /* until we know better */ 222 rrToWire(out, c, false); 223 int rrlength = out.current() - lengthPosition - 2; 224 out.writeU16At(rrlength, lengthPosition) 232 DNSOutput out = new DNSOutput(); local 260 DNSOutput out = new DNSOutput(); local 280 DNSOutput out = new DNSOutput(); local [all...] |
/frameworks/base/services/core/java/com/android/server/notification/ |
RankingHelper.java | 168 public void writeXml(XmlSerializer out) throws IOException { 169 out.startTag(null, TAG_RANKING); 170 out.attribute(null, ATT_VERSION, Integer.toString(XML_VERSION)); 194 out.startTag(null, TAG_PACKAGE); 195 out.attribute(null, ATT_NAME, packageName); 199 out.attribute(null, ATT_PRIORITY, Integer.toString(priority)); 205 out.attribute(null, ATT_VISIBILITY, Integer.toString(visibility)); 208 out.attribute(null, ATT_UID, Integer.toString(uid)); 209 out.endTag(null, TAG_PACKAGE); 212 out.endTag(null, TAG_RANKING) [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/ |
ZipFileTest.java | 98 OutputStream out = new FileOutputStream(file); local 102 out.write(buf, 0, result); 105 out.close();
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
VoicemailProviderTest.java | 93 OutputStream out = mResolver.openOutputStream(uri); local 95 out.write(outBuffer); 96 out.flush(); 97 out.close();
|
/art/test/005-annotations/src/android/test/anno/ |
TestAnnotations.java | 23 System.out.println(prefix + " " + a); 24 System.out.println(prefix + " " + a.annotationType()); 33 System.out.println("annotations on TYPE " + clazz + 36 System.out.println(); 40 System.out.println(" annotations on CTOR " + c + ":"); 43 System.out.println(" constructor parameter annotations:"); 51 System.out.println(" annotations on METH " + m + ":"); 54 System.out.println(" method parameter annotations:"); 62 System.out.println(" annotations on FIELD " + f + ":"); 68 System.out.println(" aff: " + aff + " / " + aff.getClass()) [all...] |
/art/test/070-nio-buffer/src/ |
Main.java | 30 System.out.println("Direct byte buffer has array: " + buf.hasArray()); 61 System.err.println("ERROR: out-of-bounds put succeeded\n"); 63 System.out.println("Got expected buffer overflow exception"); 69 System.err.println("ERROR: out-of-bounds put succeeded\n"); 71 System.out.println("Got expected out-of-bounds exception"); 77 System.err.println("ERROR: out-of-bounds put succeeded\n"); 79 System.out.println("Got expected buffer overflow exception"); 167 System.out.println(new String(outBuf));
|
/cts/suite/cts/deviceTests/opengl/test/ |
MatrixTest.cpp | 232 float out[4]; local 240 Matrix::multiplyVector(out, m, in); 241 checkValues(out, expected, 4);
|
/cts/tests/tests/os/src/android/os/cts/ |
MemoryFileTest.java | 68 OutputStream out = mMemoryFile.getOutputStream(); local 69 assertNotNull(out); 70 out.write(bs);
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
TestCross.java | 40 public Target.Floaty[] out; field in class:TestCross.ArgumentsFloatNFloatNFloatN 47 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 49 script.forEach_testCrossFloat3Float3Float3(inLhs, out); 50 verifyResultsCrossFloat3Float3Float3(inLhs, inRhs, out, false); 55 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 57 scriptRelaxed.forEach_testCrossFloat3Float3Float3(inLhs, out); 58 verifyResultsCrossFloat3Float3Float3(inLhs, inRhs, out, true); 64 private void verifyResultsCrossFloat3Float3Float3(Allocation inLhs, Allocation inRhs, Allocation out, boolean relaxed) { 70 out.copyTo(arrayOut); 76 args.out = new Target.Floaty[3] 130 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 138 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local [all...] |
/cts/tools/cfassembler/src/dxconvext/ |
ClassFileParser.java | 46 * /home/fjost/android/workspace/out/classes_javac this is the place where 74 // e.g. <out-path>/test/p1/MyTest.class 90 // Writer w = new OutputStreamWriter(System.out); 108 out("//@class:" + className, 0); 135 out("// ========== start-ParseMember:" + name + ", offset " 138 // out("// "+dumpReadableString(ba)); 139 // out(" "+dumpBytes(ba)); 155 out("// ========== end-ParseMember:" + name + ", desc: " 157 // out("// "+dumpReadableString(ba)); 158 // out(" "+dumpBytes(ba)) 250 private void out(String msg, int cur_indent) { method in class:ClassFileParser [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
AnnotationItem.java | 155 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local 156 ValueEncoder encoder = new ValueEncoder(addedTo.getFile(), out); 159 encodedForm = out.toByteArray(); 170 * @param out {@code non-null;} where to output to 173 public void annotateTo(AnnotatedOutput out, String prefix) { 174 out.annotate(0, prefix + "visibility: " + 176 out.annotate(0, prefix + "type: " + annotation.getType().toHuman()); 182 out.annotate(0, prefix + name.toHuman() + ": " + 189 protected void writeTo0(DexFile file, AnnotatedOutput out) { 190 boolean annotates = out.annotates() [all...] |
TypeListItem.java | 92 protected void writeTo0(DexFile file, AnnotatedOutput out) { 96 if (out.annotates()) { 97 out.annotate(0, offsetString() + " type_list"); 98 out.annotate(HEADER_SIZE, " size: " + Hex.u4(sz)); 102 out.annotate(ELEMENT_SIZE, 107 out.writeInt(sz); 110 out.writeShort(typeIds.indexOf(list.getType(i)));
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
TwoColumnOutput.java | 32 private final Writer out; field in class:TwoColumnOutput 83 * @param out {@code non-null;} writer to send final output to 88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, 90 if (out == null) { 91 throw new NullPointerException("out == null"); 109 this.out = out; 121 * @param out {@code non-null;} stream to send final output to 126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, 128 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer) [all...] |
/dalvik/dx/src/com/android/dx/command/findusages/ |
FindUsages.java | 39 private final PrintWriter out; field in class:FindUsages 44 public FindUsages(final Dex dex, String declaredBy, String memberName, final PrintWriter out) { 46 this.out = out; 83 out.println(location() + ": field reference " + dex.fieldIds().get(fieldId) 93 out.println(location() + ": method reference " + dex.methodIds().get(methodId) 111 * Prints usages to out. 130 out.println(location() + " field declared " + dex.fieldIds().get(fieldIndex)); 138 out.println(location() + " method declared " + dex.methodIds().get(methodIndex));
|
/dalvik/dx/src/com/android/dx/dex/file/ |
AnnotationItem.java | 155 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local 156 ValueEncoder encoder = new ValueEncoder(addedTo.getFile(), out); 159 encodedForm = out.toByteArray(); 170 * @param out {@code non-null;} where to output to 173 public void annotateTo(AnnotatedOutput out, String prefix) { 174 out.annotate(0, prefix + "visibility: " + 176 out.annotate(0, prefix + "type: " + annotation.getType().toHuman()); 182 out.annotate(0, prefix + name.toHuman() + ": " + 189 protected void writeTo0(DexFile file, AnnotatedOutput out) { 190 boolean annotates = out.annotates() [all...] |
TypeListItem.java | 91 protected void writeTo0(DexFile file, AnnotatedOutput out) { 95 if (out.annotates()) { 96 out.annotate(0, offsetString() + " type_list"); 97 out.annotate(HEADER_SIZE, " size: " + Hex.u4(sz)); 101 out.annotate(ELEMENT_SIZE, 106 out.writeInt(sz); 109 out.writeShort(typeIds.indexOf(list.getType(i)));
|