Searched refs:mark (Results 1 - 17 of 17) sorted by relevance

/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
H A DNullInputStream.java67 private long mark = -1; field in class:NullInputStream
89 * the <code>mark()</code> functionality.
143 mark = -1;
151 * @throws UnsupportedOperationException if mark is not supported.
153 public synchronized void mark(int readlimit) { method in class:NullInputStream
157 mark = position;
162 * Indicates whether <i>mark</i> is supported.
164 * @return Whether <i>mark</i> is supported or not.
237 * Reset the stream to the point when mark was last called.
239 * @throws UnsupportedOperationException if mark i
[all...]
H A DNullReader.java67 private long mark = -1; field in class:NullReader
89 * the <code>mark()</code> functionality.
127 mark = -1;
135 * @throws UnsupportedOperationException if mark is not supported.
137 public synchronized void mark(int readlimit) { method in class:NullReader
141 mark = position;
146 * Indicates whether <i>mark</i> is supported.
148 * @return Whether <i>mark</i> is supported or not.
221 * Reset the stream to the point when mark was last called.
223 * @throws UnsupportedOperationException if mark i
[all...]
H A DCharSequenceReader.java26 * <strong>Note:</strong> Supports {@link #mark(int)} and {@link #reset()}.
35 private int mark; field in class:CharSequenceReader
51 mark = 0;
59 public void mark(int readAheadLimit) { method in class:CharSequenceReader
60 mark = idx;
120 * mark has not been called).
123 idx = mark;
H A DProxyInputStream.java106 * Invokes the delegate's <code>mark(int)</code> method.
109 public synchronized void mark(int idx) { method in class:ProxyInputStream
110 in.mark(idx);
123 * @return true if mark is supported, otherwise false
H A DProxyReader.java106 * Invokes the delegate's <code>mark(int)</code> method.
110 public synchronized void mark(int idx) throws IOException { method in class:ProxyReader
111 in.mark(idx);
124 * @return true if mark is supported, otherwise false
/packages/apps/Browser/src/com/android/browser/
H A DBrowserBackupAgent.java111 Bookmark mark = new Bookmark();
112 mark.url = in.readUTF();
113 mark.visits = in.readInt();
114 mark.date = in.readLong();
115 mark.created = in.readLong();
116 mark.title = in.readUTF();
117 bookmarks.add(mark);
127 Bookmark mark = bookmarks.get(i);
133 new String[] { mark.url }, null);
136 if (DEBUG) Log.v(TAG, "Did not see url: " + mark
165 addBookmark(Bookmark mark) argument
[all...]
H A DWallpaperHandler.java46 // that we can mark and reset the input stream to avoid duplicate network i/o
100 inputstream.mark(BUFFER_SIZE);
104 // mess with our mark (currently it sets a mark of 1024)
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
H A DCloseShieldInputStream.java89 * @see java.io.FilterInputStream#mark(int)
91 public synchronized void mark(int readlimit) { method in class:CloseShieldInputStream
93 is.mark(readlimit);
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
H A DPositionInputStream.java64 public void mark(int readlimit) { method in class:PositionInputStream
65 inputStream.mark(readlimit);
/packages/apps/UnifiedEmail/src/com/android/mail/perf/
H A DSimpleTimer.java62 public void mark(String msg) { method in class:SimpleTimer
65 LogUtils.d(getTag(), "[%s] %sms elapsed (%sms since last mark)", msg, now - mStartTime,
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DFilterDrawRepresentation.java328 StrokeData mark = mDrawing.get(i);
329 writer.name(SERIAL_COLOR).value(mark.mColor);
330 writer.name(SERIAL_RADIUS).value(mark.mRadius);
331 writer.name(SERIAL_TYPE).value(mark.mType);
332 writer.name(SERIAL_POINTS_COUNT).value(mark.noPoints);
336 int npoints = mark.noPoints * 2;
338 writer.value(mark.mPoints[j]);
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationPagerController.java127 Utils.sConvLoadTimer.mark("pager init");
140 Utils.sConvLoadTimer.mark("pager setAdapter");
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/jpegstream/
H A DJPEGInputStream.java81 public synchronized void mark(int readlimit) { method in class:JPEGInputStream
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
H A DNfcImportVCardActivity.java93 is.mark(0);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DAbstractConversationViewFragment.java157 // Do not automatically mark this conversation viewed and read.
403 Utils.sConvLoadTimer.mark(msg);
518 // In most circumstances we want to mark the conversation as viewed and read, since the
520 // do not want a later mark-read operation to undo this. So we check this variable which
521 // is set in #markUnread() which suppresses automatic mark-read.
523 // mark viewed/read if not previously marked viewed by this conversation view,
526 // but we do want future re-renders to mark read (e.g. "New message from X" case)
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DPhotoSource.java47 // that we can mark and reset the input stream to avoid duplicate network i/o
166 bis.mark(BUFFER_SIZE);
/packages/apps/Mms/src/com/android/mms/data/
H A DContact.java181 // While invalidating our local Cache doesn't remove the contacts, it will mark them
1070 keyBuffer.mark();
1135 // Don't remove the contacts. Just mark them stale so we'll update their

Completed in 393 milliseconds