Searched defs:mark (Results 1 - 8 of 8) sorted by relevance

/packages/apps/Email/emailcommon/src/org/apache/commons/io/input/
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
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...]
/packages/apps/Email/emailcommon/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/Email/emailcommon/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/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...]

Completed in 759 milliseconds