HomeSort by relevance Sort by last modified time
    Searched defs:getBytes (Results 201 - 225 of 354) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
RandomAccessFileTest.java 93 raf.write("Test".getBytes(), 0, 4);
97 raf.write("Test".getBytes(), 0, 4);
101 raf.write("Test".getBytes(), 0, 4);
156 raf.write("Test".getBytes(), 0, 4);
182 raf.write(fileString.getBytes(), 0, 1000);
194 raf.write(fileString.getBytes());
206 fos.write(fileString.getBytes("UTF-8"), 0, fileString.length());
221 fos.write(fileString.getBytes(), 0, fileString.length());
240 fos.write(fileString.getBytes(), 0, fileString.length());
366 raf.write(s.getBytes("UTF-8"), 0, s.length())
    [all...]
FileTest.java     [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
String2Test.java 58 assertTrue("Failed to create string", new String(hw1.getBytes())
79 assertTrue("Failed to create string", new String(hw1.getBytes(), 0, hw1
80 .getBytes().length).equals(hw1));
348 * java.lang.String#getBytes()
351 // Test for method byte [] java.lang.String.getBytes()
352 byte[] sbytes = hw1.getBytes();
367 result = string.getBytes("8859_1");
381 result = string.getBytes("UTF8");
424 * java.lang.String#getBytes(int, int, byte[], int)
428 // Test for method void java.lang.String.getBytes(int, int, byte []
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
ChannelsTest.java 96 this.fouts.write(writebuf.getBytes());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLSessionTest.java 534 ostream.write(testData.getBytes());
599 ostream.write(testData.getBytes());
635 byte[] bytes = Base64.decode(keys.getBytes());
  /libcore/luni/src/test/java/libcore/java/sql/
OldPreparedStatementTest.java     [all...]
OldResultSetGetterTests.java 247 assertNull(res.getBytes(i));
253 res.getBytes(24);
274 stPrep.setBytes(1, testString.getBytes());
280 byte[] output = res.getBytes(1);
306 stPrep.setBytes(1, testString.getBytes());
312 byte[] output = res.getBytes(1);
330 assertNull(res.getBytes(t));
335 res.getBytes(colNames.get(24));
356 stPrep.setBytes(1, testString.getBytes());
362 byte[] output = res.getBytes("value")
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 727 outputStream.write(vcardString.getBytes());
    [all...]
BluetoothPbapVcardManager.java 713 outputStream.write(vCard.getBytes());
    [all...]
  /packages/services/Telephony/src/com/android/phone/common/mail/store/
ImapFolder.java 462 out.write(warning.getBytes());
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
PduPersister.java 326 charset, getBytes(s));
336 headers.setTextString(getBytes(s), mapColumn);
367 return getBytes(c.getString(columnIndex));
514 new EncodedStringValue(c.getInt(1), getBytes(addr)),
521 new EncodedStringValue(c.getInt(1), getBytes(addr)),
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
TestResultsGenerator.java 772 outputStream.write(contents.getBytes());
    [all...]
  /external/nanohttpd/core/src/main/java/fi/iki/elonen/
NanoHTTPD.java 585 this.data = txt != null ? new ByteArrayInputStream(txt.getBytes("UTF-8")) : null;
675 byte[] CRLF = "\r\n".getBytes();
679 outputStream.write(String.format("%x\r\n", read).getBytes());
683 outputStream.write(String.format("0\r\n\r\n").getBytes());
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
CatService.java 645 buf.write(lang.getBytes(), 0, lang.length());
    [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
PduPersister.java 313 charset, getBytes(s));
323 headers.setTextString(getBytes(s), mapColumn);
354 return getBytes(c.getString(columnIndex));
499 new EncodedStringValue(c.getInt(1), getBytes(addr)),
506 new EncodedStringValue(c.getInt(1), getBytes(addr)),
    [all...]
  /libcore/dex/src/main/java/com/android/dex/
Dex.java 223 public byte[] getBytes() {
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
SocketTest.java     [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java     [all...]
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ImapFolder.java 482 final String octetLength = "{" + filter.getBytes().length + "}";
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherBackupHelper.java 749 checksum.update(key.name.getBytes());
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiConfigStore.java     [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntry.java     [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
ObjectInputStreamTest.java 440 System.arraycopy(testString.getBytes(), 0, buffer, 4, testString.length());
869 byte[] cName = C.class.getName().getBytes("UTF-8");
870 byte[] aName = A.class.getName().getBytes("UTF-8");
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapContentObserver.java     [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]

Completed in 850 milliseconds

1 2 3 4 5 6 7 891011>>