HomeSort by relevance Sort by last modified time
    Searched refs:mark (Results 76 - 100 of 863) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/io/
BufferedReader.java 49 * mark pos end</pre>
54 * <p>Mark is the value pos will be set to on calls to {@link #reset}. Its
55 * value is in the range {@code [0...pos]}. If the mark is {@code -1}, the
58 * <p>MarkLimit limits the distance between the mark and the pos. When this
69 private int mark = -1; field in class:BufferedReader
83 * We also need to keep the 'lastWasCR' state for the mark position, in case
143 if (mark == -1 || (pos - mark >= markLimit)) {
144 /* mark isn't set or has exceeded its limit. use the whole buffer */
147 mark = -1
206 public void mark(int markLimit) throws IOException { method in class:BufferedReader
    [all...]
FilterInputStream.java 68 * Sets a mark position in this stream. The parameter {@code readlimit}
69 * indicates how many bytes can be read before the mark is invalidated.
73 * This implementation sets a mark in the filtered stream.
77 * the mark is invalidated.
82 public synchronized void mark(int readlimit) { method in class:FilterInputStream
83 in.mark(readlimit);
87 * Indicates whether this stream supports {@code mark()} and {@code reset()}.
91 * @return {@code true} if {@code mark()} and {@code reset()} are supported,
93 * @see #mark(int)
126 * if this stream is already closed, no mark has been set or th
    [all...]
FilterReader.java 62 * Sets a mark position in this reader. The parameter {@code readlimit}
63 * indicates how many bytes can be read before the mark is invalidated.
67 * This implementation sets a mark in the filtered reader.
71 * the mark is invalidated.
78 public synchronized void mark(int readlimit) throws IOException { method in class:FilterReader
80 in.mark(readlimit);
85 * Indicates whether this reader supports {@code mark()} and {@code reset()}.
88 * @return {@code true} if {@code mark()} and {@code reset()} are supported
90 * @see #mark(int)
161 * {@code mark()} and {@code reset()}
    [all...]
  /system/core/sh/
memalloc.c 165 setstackmark(struct stackmark *mark)
167 mark->stackp = stackp;
168 mark->stacknxt = stacknxt;
169 mark->stacknleft = stacknleft;
170 mark->marknext = markp;
171 markp = mark;
176 popstackmark(struct stackmark *mark)
181 markp = mark->marknext;
182 while (stackp != mark->stackp) {
187 stacknxt = mark->stacknxt
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserBackupAgent.java 111 Bookmark mark = new Bookmark(); local
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); local
133 new String[] { mark.url }, null);
136 if (DEBUG) Log.v(TAG, "Did not see url: " + mark.url)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableParser.h 25 #pragma mark Tokens
41 #pragma mark Dynamic Global Scopes
65 #pragma mark Dynamic Rule Scopes
66 #pragma mark Rule Return Scopes start
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.h 25 #pragma mark Tokens
53 #pragma mark Dynamic Global Scopes
77 #pragma mark Dynamic Rule Scopes
78 #pragma mark Rule Return Scopes start
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
TreeRewriteParser.h 25 #pragma mark Tokens
32 #pragma mark Dynamic Global Scopes
33 #pragma mark Dynamic Rule Scopes
34 #pragma mark Rule Return Scopes start
  /external/chromium_org/chrome/browser/resources/omnibox/
omnibox.css 22 .check-mark {
27 .x-mark {
  /external/clang/test/CodeGen/
init-with-member-expr.c 13 unsigned char mark[7]; member in struct:mark_header_tag
  /external/clang/test/Lexer/
unicode.c 13 #pragma mark ¡Unicode!
  /external/iptables/include/linux/netfilter/
xt_connmark.h 27 __u32 mark, mask; member in struct:xt_connmark_mtinfo1
  /frameworks/base/core/java/android/net/http/
Timer.java 34 public void mark(String message) { method in class:Timer
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
ByteArrayInputStreamTest.java 54 assertEquals(444, SubByteArrayInputStream.mark);
61 public static int mark, pos, count; field in class:ByteArrayInputStreamTest.SubByteArrayInputStream
67 mark = super.mark;
91 * @tests ByteArrayInputStream#mark(int)
97 is.mark(1000);
102 assertTrue("Failed to mark correct position", new String(buf1, 0,
129 is.mark(100);
141 is.mark(200);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
CombinedParser.m 57 #pragma mark Bitsets
64 #pragma mark Dynamic Global Scopes
66 #pragma mark Dynamic Rule Scopes
68 #pragma mark Rule return scopes start
79 #pragma mark Bitsets
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBitSet.h 43 #pragma mark Class Methods
59 #pragma mark Initializer
68 #pragma mark Operations
79 #pragma mark Informational
86 #pragma mark NSCopying support
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBitSet.h 43 #pragma mark Class Methods
59 #pragma mark Initializer
68 #pragma mark Operations
79 #pragma mark Informational
86 #pragma mark NSCopying support
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBitSet.h 43 #pragma mark Class Methods
59 #pragma mark Initializer
68 #pragma mark Operations
79 #pragma mark Informational
86 #pragma mark NSCopying support
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBitSet.h 44 #pragma mark Class Methods
60 #pragma mark Initializer
69 #pragma mark Operations
80 #pragma mark Informational
87 #pragma mark NSCopying support
  /external/chromium_org/net/third_party/nss/ssl/bodge/
secitem_array.c 31 void *mark = NULL; local
34 mark = PORT_ArenaMark(arena);
65 if (mark) {
66 PORT_ArenaUnmark(arena, mark);
72 if (mark) {
73 PORT_ArenaRelease(arena, mark);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
IntStream.as 45 * rewind(mark()) should not affect the input cursor. The Lexer
49 function mark():int;
71 * Do not "pop" the marker off the state. mark(i)
83 * argument. So if you're nested 5 levels of mark(), and then release(2)
98 * backtracking using the mark/rewind mechanism that restores state and
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3intstream.h 130 * rewind(mark()) should not affect the input cursor.
132 ANTLR3_MARKER (*mark) (struct ANTLR3_INT_STREAM_struct * intStream); member in struct:ANTLR3_INT_STREAM_struct
159 void (*release) (struct ANTLR3_INT_STREAM_struct * intStream, ANTLR3_MARKER mark);
171 * backtracking using the mark/rewind mechanism that restores state and
  /libcore/luni/src/main/java/libcore/net/url/
FtpURLInputStream.java 56 public synchronized void mark(int limit) { method in class:FtpURLInputStream
57 is.mark(limit);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
ProxyInputStream.java 106 * 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
ProxyReader.java 106 * 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

Completed in 893 milliseconds

1 2 34 5 6 7 8 91011>>