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

1 2 3 4 5 6 7 8 91011>>

  /development/samples/browseable/MessagingService/
_index.jd 10 Each unread conversation from a user is sent as a distinct notification.
  /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...]
  /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...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/gmail/_locales/en/
messages.json 1 {"gmailcheck_name":{"message":"Google Mail Checker"},"gmailcheck_description":{"message":"Displays the number of unread messages in your Google Mail inbox. You can also click the button to open your inbox."},"gmailcheck_node_error":{"message":"Error: feed retrieved, but no <fullcount> node found"},"gmailcheck_exception":{"message":"exception: $1","placeholders":{"1":{"content":"$1"}}}}
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/gmail/_locales/en_GB/
messages.json 1 {"gmailcheck_name":{"message":"Google Mail Checker"},"gmailcheck_description":{"message":"Displays the number of unread messages in your Google Mail inbox. You can also click the button to open your inbox."},"gmailcheck_node_error":{"message":"Error: Feed retrieved, but no <fullcount> node found"},"gmailcheck_exception":{"message":"exception: $1","placeholders":{"1":{"content":"$1"}}}}
  /external/chromium_org/ui/message_center/cocoa/
status_item_view.h 22 // when it is clicked. It draws a small icon and the unread count, if greater
35 // The unread count number to be drawn next to the icon.
55 // Sets the unread count and quiet mode status of the icon.
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastReceiverApp.java 41 /** List of unread non-emergency alerts to show when user selects the notification. */
48 /** Adds a new unread non-emergency message and returns the current list. */
54 /** Clears the list of unread non-emergency messages. */
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
file_input_stream.h 43 virtual void Unread(ByteVector* b);
44 virtual void Unread(ByteVector* b, int32_t offset, int32_t length);
input_stream.h 43 virtual void Unread(ByteVector* b) = 0;
44 virtual void Unread(ByteVector* b, int32_t offset, int32_t length) = 0;
memory_input_stream.h 43 virtual void Unread(ByteVector* b);
44 virtual void Unread(ByteVector* b, int32_t offset, int32_t length);
file_input_stream.cc 130 void FileInputStream::Unread(ByteVector* b) {
131 Unread(b, 0, b->size());
134 void FileInputStream::Unread(ByteVector* b, int32_t offset, int32_t length) {
memory_input_stream.cc 122 void MemoryInputStream::Unread(ByteVector* b) {
123 Unread(b, 0, b->size());
126 void MemoryInputStream::Unread(ByteVector* b, int32_t offset, int32_t length) {
  /external/sfntly/cpp/src/sfntly/port/
file_input_stream.h 43 virtual void Unread(ByteVector* b);
44 virtual void Unread(ByteVector* b, int32_t offset, int32_t length);
input_stream.h 43 virtual void Unread(ByteVector* b) = 0;
44 virtual void Unread(ByteVector* b, int32_t offset, int32_t length) = 0;
memory_input_stream.h 43 virtual void Unread(ByteVector* b);
44 virtual void Unread(ByteVector* b, int32_t offset, int32_t length);
file_input_stream.cc 128 void FileInputStream::Unread(ByteVector* b) {
129 Unread(b, 0, b->size());
132 void FileInputStream::Unread(ByteVector* b, int32_t offset, int32_t length) {
memory_input_stream.cc 120 void MemoryInputStream::Unread(ByteVector* b) {
121 Unread(b, 0, b->size());
124 void MemoryInputStream::Unread(ByteVector* b, int32_t offset, int32_t length) {
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
FolderWatcher.java 50 /** Handles folder callbacks and reads unread counts. */
68 * @param listener A listener to be notified when the unread count changes
108 * @param uri the URI for an inbox whose unread count is to be watched
180 * Returns the unread count for the default inbox for the account given. The account must be
183 * @param account an account whose unread count we wisht to track
184 * @return the unread count if the account was in array passed previously to {@link
207 * Class to perform {@link LoaderManager.LoaderCallbacks} for populating unread counts.
210 // TODO(viki): Fix http://b/8494129 and read only the URI and unread count.
211 /** Only interested in the folder unread count, but asking for everything due to
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationUpdater.java 92 * Mark a number of conversations as read or unread.
94 * @param read true if the conversations are marked read, false if they are marked unread.
101 * Mark a single conversation unread, either entirely or for just a subset of the messages in a
104 * @param conv conversation to mark unread
105 * @param unreadMessageUris URIs for the subset of the conversation's messages to mark unread,
106 * or null/empty set to mark the entire conversation unread.
107 * @param originalConversationInfo the original unread state of the {@link ConversationInfo}
131 * identifiers, for example R.id.unread, or R.id.delete.
139 * identifiers, for example R.id.unread, or R.id.delete.
  /packages/apps/CellBroadcastReceiver/res/values/
colors.xml 20 <!-- the background color used for unread broadcasts -->
  /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]);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapMessageListing.java 42 /* update info regarding whether the list contains unread messages */
62 * does the list contain any unread messages
63 * @return true if unread messages have been added to the list, else false
  /external/chromium_org/media/filters/
h264_bit_reader.h 54 // Pointer to the next unread (not in curr_byte_) byte in the stream.
60 // Contents of the current byte; first unread bit starting at position

Completed in 725 milliseconds

1 2 3 4 5 6 7 8 91011>>