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

1 2 3 4

  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/reader/
UnicodeReader.java 80 * Read-ahead four bytes and check for BOM marks. Extra bytes are unread
89 int n, unread; local
94 unread = n - 3;
97 unread = n - 2;
100 unread = n - 2;
102 // Unicode BOM mark not found, unread all bytes
104 unread = n;
107 if (unread > 0)
108 internalIn.unread(bom, (n - unread), unread)
    [all...]
  /external/desugar/java/com/google/devtools/common/options/
ShellQuotedParamsFilePreProcessor.java 67 private void unread(char value) throws IOException { method in class:ShellQuotedParamsFilePreProcessor.ShellQuotedReader
68 reader.unread(value);
75 unread(value);
104 unread(c);
121 unread(next);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
FixASCIIControlsReader.java 84 unread(readAheadBuffer, 0, readAhead + 1); method
95 unread(readAheadBuffer, 0, readAhead); method
  /libcore/ojluni/src/main/java/java/io/
PushbackInputStream.java 31 * the ability to "push back" or "unread"
37 * the code fragment can "unread" it, so that
206 public void unread(int b) throws IOException { method in class:PushbackInputStream
229 public void unread(byte[] b, int off, int len) throws IOException { method in class:PushbackInputStream
251 public void unread(byte[] b) throws IOException { method in class:PushbackInputStream
252 unread(b, 0, b.length); method
370 * Once the stream has been closed, further read(), unread(),
PushbackReader.java 151 public void unread(int c) throws IOException { method in class:PushbackReader
174 public void unread(char cbuf[], int off, int len) throws IOException { method in class:PushbackReader
195 public void unread(char cbuf[]) throws IOException { method in class:PushbackReader
196 unread(cbuf, 0, cbuf.length); method
242 * unread(), ready(), or skip() invocations will throw an IOException.
DataInputStream.java 521 ((PushbackInputStream)in).unread(c2); method
ObjectInputStream.java 2408 private int unread = 0; field in class:ObjectInputStream.BlockDataInputStream
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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 * 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 * 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 * java.io.PushbackReader#unread(char[], int, int)
286 // Test for method void java.io.PushbackReader.unread(char [], int, int
    [all...]
  /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...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLX509CertPath.java 211 pbis.unread(buffer, 0, len);
OpenSSLX509CertificateFactory.java 90 pbis.unread(buffer, 0, len);
153 pbis.unread(buffer, 0, len);
  /external/autotest/client/deps/ibusclient/src/
ibusclient.cc 273 GVariant* unread = NULL; local
275 if (!ibus_config_get_unused(ibus_config, &unread, &unwritten)) {
280 if (g_variant_classify(unread) != G_VARIANT_CLASS_ARRAY) {
281 printf("FAIL (unread is not an array)\n");
282 g_variant_unref(unread);
289 g_variant_unref(unread);
294 printf("Unread:\n");
295 if (!PrintArray(unread)) {
296 g_variant_unref(unread);
303 g_variant_unref(unread);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
CertificateFactory.java 249 ((PushbackInputStream) pis).unread(tag); method
  /libcore/ojluni/src/main/java/java/util/zip/
ZipInputStream.java 356 ((PushbackInputStream)in).unread(buf, len - n, n); method
369 ((PushbackInputStream)in).unread( method
383 ((PushbackInputStream)in).unread( method
  /tools/apksig/src/apksigner/java/com/android/apksigner/
PasswordRetriever.java 383 ((PushbackInputStream) in).unread(next); method
  /external/tagsoup/templates/org/ccil/cowan/tagsoup/
HTMLScanner.java 122 private void unread(PushbackReader r, int c) throws IOException { method in class:HTMLScanner
123 if (c != -1) r.unread(c);
173 if (firstChar != '\uFEFF') unread(r, firstChar); method
184 unread(r, ch); // nope method
320 unread(r, ch); method
325 unread(r, ch); method
414 unread(r, ch); method
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemViewModel.java 63 // Unread
64 public boolean unread; field in class:ConversationItemViewModel
156 header.unread = !conv.read;
251 // If any are unread, get the first unread sender.
252 // If all are unread, get the first sender.
SelectedConversationsActionMenu.java 163 } else if (itemId == R.id.unread) {
312 * marked unread.
405 final MenuItem unread = menu.findItem(R.id.unread); local
406 unread.setVisible(showMarkUnread);
  /external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
PerfTest.java 856 pushback.unread(start, bomLength, amountRead - bomLength);
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
Lexer.java 1077 protected void unread(@SuppressWarnings("hiding") Token token) throws IOException method in class:Lexer
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
HTMLScanner.java 343 private void unread(PushbackReader r, int c) throws IOException { method in class:HTMLScanner
344 if (c != -1) r.unread(c);
394 if (firstChar != '\uFEFF') unread(r, firstChar); method
405 unread(r, ch); // nope method
541 unread(r, ch); method
546 unread(r, ch); method
635 unread(r, ch); method
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationUtils.java 91 public static final String EXTRA_UNREAD_COUNT = "unread-count";
95 /** Contains a list of <(account, label), unread conversations> */
143 * Class representing the existing notifications, and the number of unread and
195 * Returns the unread count for the given NotificationKey.
203 * Returns the unread unseen count for the given NotificationKey.
211 * Store the unread and unseen value for the given NotificationKey
213 public void put(NotificationKey key, int unread, int unseen) {
215 new Pair<Integer, Integer>(Integer.valueOf(unread), Integer.valueOf(unseen));
302 * @return the title of this notification with each account and the number of unread and unseen
303 * conversations for it. Also remove any account in the map that has 0 unread
310 Integer unread = notifications.getUnread(key); local
564 final Integer unread = notificationMap.getUnread(key); local
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/james/apache-mime4j-core/0.7.2/
apache-mime4j-core-0.7.2.jar 

Completed in 733 milliseconds

1 2 3 4