/external/dexmaker/src/main/java/com/google/dexmaker/ |
DexMaker.java | 190 * System.out.println(fibMethod.invoke(null, 8)); 428 ClassDefItem out = new ClassDefItem(thisType, flags, supertype.constant, local 434 out.addDirectMethod(encoded); 436 out.addVirtualMethod(encoded); 442 out.addStaticField(encoded, Constants.getConstant(field.staticValue)); 444 out.addInstanceField(encoded); 448 return out;
|
/external/emma/core/java12/com/vladium/logging/ |
Logger.java | 68 public static Logger create (final int level, final PrintWriter out, final String prefix, final Set classMask) 73 if ((out == null) || out.checkError ()) 74 throw new IllegalArgumentException ("null or corrupt input: out"); 76 return new Logger (level, out, prefix, classMask); 83 * @param out 89 public static Logger create (final int level, final PrintWriter out, final String prefix, final Set classMask, 94 return create (level, out, prefix, classMask); 102 final PrintWriter _out = (out != null) && ! out.checkError ( 478 final PrintWriter out = m_out; local 526 final PrintWriter out = m_out; local [all...] |
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/ |
JsonMessageBuilder.java | 368 JSONObject out = new JSONObject(); local 373 out.put(OUTER_FIELD_PROTOCOL_VERSION, PROTOCOL_VERSION); 374 out.put(OUTER_FIELD_STATUS, STATUS_OK); 375 out.put(OUTER_FIELD_TYPE, msgType); 376 out.put(OUTER_FIELD_PAYLOAD, innerJson); 380 return out; 396 JSONObject out = new JSONObject(); local 407 out.put(OUTER_FIELD_PROTOCOL_VERSION, PROTOCOL_VERSION); 408 out.put(OUTER_FIELD_STATUS, errorStatus); 412 return out; [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/ |
HpackDraft05Test.java | 69 OkBuffer out = new OkBuffer(); local 71 out.writeByte(0x00); // Literal indexed 72 out.writeByte(0x0a); // Literal name (len = 10) 73 out.writeUtf8("custom-key"); 75 out.writeByte(0x0d); // Literal value (len = 13) 76 out.writeUtf8("custom-header"); 78 bytesIn.write(out, out.size()); 90 OkBuffer out = new OkBuffer(); local 92 out.writeByte(0x00); // Literal indexe 141 OkBuffer out = new OkBuffer(); local 163 OkBuffer out = new OkBuffer(); local 191 OkBuffer out = new OkBuffer(); local 372 OkBuffer out = firstRequestWithoutHuffman(); local 392 OkBuffer out = new OkBuffer(); local 443 OkBuffer out = new OkBuffer(); local 494 OkBuffer out = new OkBuffer(); local 574 OkBuffer out = firstRequestWithHuffman(); local 594 OkBuffer out = new OkBuffer(); local 650 OkBuffer out = new OkBuffer(); local 705 OkBuffer out = new OkBuffer(); local [all...] |
MockSpdyPeer.java | 119 OutputStream out = socket.getOutputStream(); local 145 out.write(outBytes, (int) start, length);
|
/external/smack/src/org/jivesoftware/smack/packet/ |
Packet.java | 373 * this method. In addition to writing out packet-specific data, every sub-class 374 * should also write out the error and the extensions data if they are defined. 396 // Loop through all properties and write them out. 427 ObjectOutputStream out = null; local 430 out = new ObjectOutputStream(byteStream); 431 out.writeObject(value); 440 if (out != null) { 442 out.close();
|
/external/smack/src/org/xbill/DNS/ |
TSIG.java | 36 * Note that SHA224 is not supported by Java out-of-the-box, this requires use 227 DNSOutput out = new DNSOutput(); local 228 out.writeU16(old.getSignature().length); 230 hmac.update(out.toByteArray()); 239 DNSOutput out = new DNSOutput(); local 240 name.toWireCanonical(out); 241 out.writeU16(DClass.ANY); /* class */ 242 out.writeU32(0); /* ttl */ 243 alg.toWireCanonical(out); 247 out.writeU16(timeHigh) 321 DNSOutput out = new DNSOutput(); local 388 DNSOutput out = new DNSOutput(); local 401 DNSOutput out = new DNSOutput(); local 518 DNSOutput out = new DNSOutput(); local 565 DNSOutput out = new DNSOutput(); local [all...] |
/frameworks/base/core/java/android/provider/ |
DocumentsProvider.java | 637 final Bundle out = new Bundle(); local 651 out.putParcelable(DocumentsContract.EXTRA_URI, newDocumentUri); 671 out.putParcelable(DocumentsContract.EXTRA_URI, newDocumentUri); 690 return out; [all...] |
/frameworks/base/obex/javax/obex/ |
ServerOperation.java | 29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 97 * @param out the output stream to write to 286 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 341 out.write(headerArray); 370 out.write(0x49); 372 out.write((byte)(bodyLength >> 8)); 373 out.write((byte)bodyLength); 374 out.write(body); 378 out.write(0x48); 380 out.write((byte)(bodyLength >> 8)) [all...] |
/frameworks/base/sax/tests/saxtests/src/android/sax/ |
SafeSaxTest.java | 150 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 154 out.write(buffer, 0, length); 156 xmlBytes = out.toByteArray();
|
/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/ |
ProcessErrorsTest.java | 331 List<ProcessError> out = new ArrayList<ProcessError>(in.size()); local 333 out.add(new ProcessError(info)); 335 return out;
|
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/ |
BluetoothMasRequest.java | 135 DataOutputStream out = op.openDataOutputStream(); local 136 out.write(body); 137 out.close();
|
/frameworks/rs/java/tests/GenImages/src/com/android/rs/genimage/ |
GenImage.java | 262 FileOutputStream out = new FileOutputStream(s); local 263 bmp.compress(Bitmap.CompressFormat.PNG, 95, out); 264 out.close();
|
/libcore/luni/src/test/java/com/android/org/bouncycastle/jce/provider/ |
CertBlacklistTest.java | 202 FileOutputStream out = new FileOutputStream(tmpFile); local 203 out.write(blacklist.toString().getBytes()); 204 out.close(); 449 System.out.println("CERTIFICATE PUBLIC KEY HASH: " + getHash(createPublicKey(cert))); 453 System.out.println("CERTIFICATE SERIAL NUMBER: " + createSerialNumber(cert).toString(16));
|
/libcore/support/src/test/java/tests/http/ |
MockWebServer.java | 237 serverSocket.close(); // should cause acceptConnections() to break out 270 OutputStream out = new BufferedOutputStream(socket.getOutputStream()); 272 while (!responseQueue.isEmpty() && processOneRequest(in, out, socket)) {} 279 out.close(); 307 private boolean processOneRequest(InputStream in, OutputStream out, Socket socket) 314 writeResponse(out, response); 317 out.close(); 407 System.out.println("served " + request.getRequestLine()); 421 private void writeResponse(OutputStream out, MockResponse response) throws IOException { 422 out.write((response.getStatus() + "\r\n").getBytes(ASCII)) [all...] |
/ndk/build/core/ |
definitions-utils.mk | 105 # Function : filter-out-by 112 filter-out-by = $(strip \ 116 -test-filter-out-by = \ 118 $(call test-expect,,$(call filter-out-by,,-local-func))\ 119 $(call test-expect,,$(call filter-out-by,foo,-local-func))\ 120 $(call test-expect,bar,$(call filter-out-by,foo bar,-local-func))\ 121 $(call test-expect,aaa bar,$(call filter-out-by,aaa foo bar foo,-local-func))\ 123 $(call test-expect,,$(call filter-out-by,,-local-func))\ 124 $(call test-expect,foo,$(call filter-out-by,foo,-local-func))\ 125 $(call test-expect,foo,$(call filter-out-by,foo bar,-local-func)) [all...] |
/packages/apps/Camera2/src/com/android/camera/ |
Storage.java | 290 FileOutputStream out = null; local 292 out = new FileOutputStream(path); 293 out.write(data); 299 out.close();
|
/packages/apps/Email/provider_src/com/android/email/mail/transport/ |
MailTransport.java | 299 OutputStream out = getOutputStream(); local 300 out.write(s.getBytes()); 301 out.write('\r'); 302 out.write('\n'); 303 out.flush();
|
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/ |
WidgetDatabaseHelper.java | 199 ByteArrayOutputStream out = new ByteArrayOutputStream(size); local 200 bitmap.compress(Bitmap.CompressFormat.PNG, 100, out); 201 out.close(); 207 values.put(FIELD_PHOTO_BLOB, out.toByteArray());
|
/pdk/apps/TestingCamera/src/com/android/testingcamera/ |
SnapshotDialogFragment.java | 139 FileOutputStream out = new FileOutputStream(targetFile); local 140 out.write(mJpegImage); 141 out.close();
|
/system/extras/verity/ |
Utils.java | 265 FileOutputStream out = new FileOutputStream(fname); local 266 out.write(data); 267 out.close();
|
/frameworks/base/services/core/java/com/android/server/pm/ |
PackageInstallerService.java | 400 XmlSerializer out = new FastXmlSerializer(); local 401 out.setOutput(fos, "utf-8"); 402 out.startDocument(null, true); 403 out.startTag(null, TAG_SESSIONS); 407 writeSessionLocked(out, session); 409 out.endTag(null, TAG_SESSIONS); 410 out.endDocument(); 420 private void writeSessionLocked(XmlSerializer out, PackageInstallerSession session) 424 out.startTag(null, TAG_SESSION); 426 writeIntAttribute(out, ATTR_SESSION_ID, session.sessionId) [all...] |
/prebuilts/devtools/tools/lib/ |
httpmime-4.1.jar | |
/prebuilts/tools/common/http-client/ |
httpmime-4.1.1.jar | |
/prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpmime/4.1/ |
httpmime-4.1.jar | |