HomeSort by relevance Sort by last modified time
    Searched refs:unread (Results 1 - 25 of 63) sorted by null

1 2 3

  /libcore/luni/src/test/java/libcore/java/io/
OldPushbackInputStreamTest.java 38 pis.unread("He".getBytes());
45 fail("Failed to throw exception on unread when buffer full");
65 pis.unread("Hello world".getBytes());
66 fail("Test 3: IOException expected when the unread buffer is full.");
190 pis.unread(buf);
208 tobj.unread(buf2);
211 tobj.unread(buf2);
226 // Test for method void java.io.PushbackInputStream.unread(byte [])
232 pis.unread(buf);
234 assertTrue("Failed to unread bytes", new String(buf, 0, 50
    [all...]
OldPushbackReaderTest.java 42 pbr.unread(buf);
243 * java.io.PushbackReader#unread(char[])
252 tobj.unread(buf2);
254 tobj.unread(buf2);
269 // Test for method void java.io.PushbackReader.unread(char [])
273 pbr.unread(c);
275 assertTrue("Failed to unread chars", new String(c).equals(pbString
303 * java.io.PushbackReader#unread(char[], int, int)
312 tobj.unread(buf2, 15, 10);
314 tobj.unread(buf2, 15, 10)
    [all...]
OldAndroidPushbackReaderTest.java 36 a.unread("PUSH".toCharArray());
44 b.unread('X');
OldAndroidPushbackInputStreamTest.java 36 a.unread("push".getBytes());
44 b.unread('X');
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
MimeBoundaryInputStream.java 68 this.s.unread(b);
103 * Consumes all unread bytes of this stream. After a call to this method
138 s.unread(b2);
153 s.unread(b);
156 s.unread(boundary[j]);
EOLConvertingInputStream.java 106 in.unread(c);
  /libcore/luni/src/main/java/java/io/
PushbackReader.java 259 public void unread(char[] buffer) throws IOException { method in class:PushbackReader
260 unread(buffer, 0, buffer.length); method
293 public void unread(char[] buffer, int offset, int length) throws IOException { method in class:PushbackReader
301 unread(buffer[i]);
320 public void unread(int oneChar) throws IOException { method in class:PushbackReader
PushbackInputStream.java 242 public void unread(byte[] buffer) throws IOException { method in class:PushbackInputStream
243 unread(buffer, 0, buffer.length); method
272 public void unread(byte[] buffer, int offset, int length) throws IOException { method in class:PushbackInputStream
300 public void unread(int oneByte) throws IOException { method in class:PushbackInputStream
DataInputStream.java 125 ((PushbackInputStream) in).unread(nextByte); method
138 ((PushbackInputStream) in).unread(nextByte); method
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
PushbackInputStreamTest.java 67 pis.unread("He".getBytes());
68 fail("Failed to throw exception on unread when buffer full");
83 pis.unread("Hellos".getBytes());
90 fail("Failed to throw exception on unread when buffer full");
166 pis.unread(buf);
175 * @tests java.io.PushbackInputStream#unread(byte[])
178 // Test for method void java.io.PushbackInputStream.unread(byte [])
184 pis.unread(buf);
186 assertTrue("Failed to unread bytes", new String(buf, 0, 50, "UTF-8")
189 fail("IOException during unread test : " + e.getMessage())
    [all...]
PushbackReaderTest.java 43 pbr.unread(buf);
201 * @tests java.io.PushbackReader#unread(char[])
204 // Test for method void java.io.PushbackReader.unread(char [])
208 pbr.unread(c);
210 assertTrue("Failed to unread chars", new String(c).equals(pbString
245 pReader2.unread('a');
246 pReader2.unread('b');
257 pReader.unread('i');
283 * @tests java.io.PushbackReader#unread(char[], int, int)
286 // Test for method void java.io.PushbackReader.unread(char [], int, int
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
FixASCIIControlsReader.java 84 unread(readAheadBuffer, 0, readAhead + 1); method
95 unread(readAheadBuffer, 0, readAhead); method
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AccountItemView.java 56 mUnreadCountTextView = (TextView)findViewById(R.id.unread);
61 * Sets the account name and draws the unread count. Depending on the account state (current or
67 * @param count unread count
78 * Sets the unread count, taking care to hide/show the textview if the count
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
HTMLScanner.java 273 private void unread(PushbackReader r, int c) throws IOException { method in class:HTMLScanner
274 if (c != -1) r.unread(c);
327 if (firstChar != '\uFEFF') unread(r, firstChar); method
338 unread(r, ch); // nope method
482 unread(r, ch); method
487 unread(r, ch); method
576 unread(r, ch); method
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 631 m_in.unread (c);
654 m_in.unread (c);
690 m_in.unread (c);
  /packages/apps/UnifiedEmail/src/com/android/mail/analytics/
AnalyticsUtils.java 92 } else if (id == R.id.unread) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
CertificateFactory.java 207 pis.unread(tag);
288 pis.unread(tag);
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLX509CertificateFactory.java 82 pbis.unread(buffer, 0, len);
145 pbis.unread(buffer, 0, len);
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
Socks5TransferNegotiator.java 111 stream.unread(firstByte);
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
SelectedConversationsActionMenu.java 153 } else if (itemId == R.id.unread) {
298 * marked unread.
388 final MenuItem unread = menu.findItem(R.id.unread); local
389 unread.setVisible(showMarkUnread);
ConversationItemViewModel.java 66 // Unread
67 public boolean unread; field in class:ConversationItemViewModel
162 header.unread = !conv.read;
313 // If any are unread, get the first unread sender.
314 // If all are unread, get the first sender.
  /external/smack/src/org/xbill/DNS/
Tokenizer.java 186 is.unread(next);
198 is.unread(c);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationUtils.java 83 /** Contains a list of <(account, label), unread conversations> */
126 * Class representing the existing notifications, and the number of unread and
136 * Retuns the unread count for the given NotificationKey.
144 * Retuns the unread unseen count for the given NotificationKey.
152 * Store the unread and unseen value for the given NotificationKey
154 public void put(NotificationKey key, int unread, int unseen) {
156 new Pair<Integer, Integer>(Integer.valueOf(unread), Integer.valueOf(unseen));
234 * @return the title of this notification with each account and the number of unread and unseen
235 * conversations for it. Also remove any account in the map that has 0 unread.
242 Integer unread = notifications.getUnread(key) local
463 final Integer unread = notificationMap.getUnread(key); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
httplib.py 26 Unread-response [Response-headers-read]
31 Idle Req-started-unread-response
36 Request-started Req-sent-unread-response
45 -- there is no differentiation between an unread response body and a
64 Unread-response _CS_IDLE <response_class>
65 Req-started-unread-response _CS_REQ_STARTED <response_class>
66 Req-sent-unread-response _CS_REQ_SENT <response_class>
268 startofline = unread = tell = None
269 if hasattr(self.fp, 'unread'):
270 unread = self.fp.unrea
    [all...]
rfc822.py 29 input object lacks seek but has an `unread' method that can push back a line
143 startofline = unread = tell = None
144 if hasattr(self.fp, 'unread'):
145 unread = self.fp.unread
189 if unread:
190 unread(line)
    [all...]

Completed in 462 milliseconds

1 2 3