HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1826 - 1850 of 3019) sorted by null

<<71727374757677787980>>

  /frameworks/base/services/core/java/com/android/server/am/
BatteryStatsService.java 177 Parcel out = Parcel.obtain(); local
178 mStats.writeToParcel(out, 0);
179 byte[] data = out.marshall();
180 out.recycle();
189 Parcel out = Parcel.obtain(); local
190 mStats.writeToParcel(out, 0);
191 byte[] data = out.marshall();
192 out.recycle();
  /frameworks/base/services/core/java/com/android/server/connectivity/
Vpn.java 1212 OutputStream out = mSockets[i].getOutputStream(); local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
ServerSocketChannelTest.java 471 OutputStream out = socket.getOutputStream(); local
472 out.write(writeContent);
473 out.flush();
492 OutputStream out = clientSocket.getOutputStream(); local
493 out.write(writeContent);
603 OutputStream out = socket.getOutputStream(); local
604 out.write(buffer);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
PropertiesTest.java 621 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
622 myProps.save(out, "A Header");
623 out.close();
624 ByteArrayInputStream in = new ByteArrayInputStream(out
674 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
675 myProps.store(out, "A Header");
676 out.close();
677 ByteArrayInputStream in = new ByteArrayInputStream(out
708 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
709 myProps.store(new OutputStreamWriter(out), "A Header")
828 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
853 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
879 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
    [all...]
ScannerTest.java 381 // Write out a int before the scanner is closed, should be OK.
387 // Write out a int after the scanner is closed, IOException should be
388 // thrown out.
953 // If the number is out of range
973 // If exception is thrown out, input will not be advanced.
988 // If exception is thrown out, input will not be advanced.
1016 // If exception is thrown out, input will not be advanced.
1127 // If the number is out of range
5582 BufferedWriter out = new BufferedWriter(new OutputStreamWriter(baos)); local
    [all...]
  /libcore/luni/src/main/java/java/util/
Formatter.java 547 private Appendable out; field in class:Formatter
601 * {@link #out()} and whose content can be obtained by calling {@code toString}.
629 * {@link #out()} and whose content can be obtained by calling {@code toString}.
653 out = new StringBuilder();
655 out = a;
809 out = new BufferedWriter(new OutputStreamWriter(fout, csn));
920 public Appendable out() { method in class:Formatter
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketTest.java 2094 OutputStream out = null; local
    [all...]
OldURLTest.java 237 URL gamelanFalse = new URL("file:///pages/out/index.html");
539 BufferedWriter out = new BufferedWriter(fstream, 32); local
540 out.write(helloWorldString);
542 out.close();
574 System.out.println("connection failed");
757 // test for relative file and out of bound "/../" processing
  /libcore/luni/src/test/java/libcore/java/security/cert/
X509CertificateTest.java 242 PrintStream out = new PrintStream(errBuffer); local
298 out.append("Error encountered checking " + p.getName() + "\n");
299 e.printStackTrace(out);
303 out.flush();
    [all...]
  /libcore/luni/src/test/java/libcore/javax/crypto/
CipherTest.java 983 PrintStream out = new PrintStream(errBuffer); local
2546 PrintStream out = new PrintStream(errBuffer); local
2783 PrintStream out = new PrintStream(errBuffer); local
    [all...]
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java 18 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
    [all...]
  /packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java 301 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
302 SmilXmlSerializer.serialize(document, out);
307 smilPart.setData(out.toByteArray());
668 // Figure out if we have any media items that need to be resized and total up the
719 // This will write out all the new parts to:
  /prebuilts/tools/common/m2/repository/com/squareup/javawriter/2.1.1/
javawriter-2.1.1.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/javawriter/2.2.1/
javawriter-2.2.1.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/javawriter/2.5.0/
javawriter-2.5.0.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java 481 * Figure out actual row and column numbers for views that do not specify explicit row
502 // an earlier number... find out what the layout does in that case!
1579 PrintWriter out = new PrintWriter(stringWriter); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RelativeLayoutConversionHelper.java 191 // Attempt to lay the views out in a grid with constraints (though not that widgets
1257 PrintWriter out = new PrintWriter(stringWriter); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandler.java 463 StringWriter out = new StringWriter(); local
464 inputsTemplate.process(paramMap, out);
465 out.flush();
466 xml = out.toString();
586 StringWriter out = new StringWriter(); local
587 freemarkerTemplate.process(paramMap, out);
588 out.flush();
589 String xml = out.toString();
739 Writer out = new StringWriter(); local
740 template.process(paramMap, out);
971 Writer out = new StringWriter(1024); local
    [all...]
  /external/emma/lib/
emma.jar 
  /external/owasp/sanitizer/tools/emma/lib/
emma.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 
  /frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DevicePolicyManagerService.java 454 void writeToXml(XmlSerializer out)
456 out.startTag(null, TAG_POLICIES);
457 info.writePoliciesToXml(out);
458 out.endTag(null, TAG_POLICIES);
460 out.startTag(null, TAG_PASSWORD_QUALITY);
461 out.attribute(null, ATTR_VALUE, Integer.toString(passwordQuality));
462 out.endTag(null, TAG_PASSWORD_QUALITY);
464 out.startTag(null, TAG_MIN_PASSWORD_LENGTH);
465 out.attribute(null, ATTR_VALUE, Integer.toString(minimumPasswordLength));
466 out.endTag(null, TAG_MIN_PASSWORD_LENGTH)
1307 XmlSerializer out = new FastXmlSerializer(); local
    [all...]
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.2.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.2/
lombok-ast-0.2.2.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.sat4j.pb_2.3.5.v201308161310.jar 

Completed in 937 milliseconds

<<71727374757677787980>>