HomeSort by relevance Sort by last modified time
    Searched refs:Mark (Results 1 - 25 of 71) sorted by null

1 2 3

  /cts/libs/vogar-expect/src/vogar/util/
MarkResetConsole.java 52 public Mark mark() { method in class:MarkResetConsole
53 return new Mark();
56 public class Mark {
60 private Mark() {}
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
IIntStream.cs 57 /// Executing Rewind(Mark()) on a stream should not affect the input position.
65 int Mark();
95 /// of the decision. Do not "pop" the marker off the state. Mark(i)
111 /// argument. So if you're nested 5 levels of Mark(), and then Release(2)
130 /// <see cref="IIntStream.Mark"/>/<see cref="IIntStream.Rewind(int)"/>
ANTLRStringStream.cs 62 /** <summary>tracks how deep mark() calls are nested</summary> */
69 * A null is kept @ index 0. Create upon first call to mark().
74 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
199 public virtual int Mark() {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
IIntStream.cs 58 * rewind(mark()) should not affect the input cursor. The Lexer
63 int Mark();
93 * Do not "pop" the marker off the state. mark(i)
107 * argument. So if you're nested 5 levels of mark(), and then release(2)
126 * backtracking using the mark/rewind mechanism that restores state and
UnbufferedTokenStream.cs 113 public override int Mark()
116 return base.Mark();
ANTLRStringStream.cs 64 /** <summary>tracks how deep mark() calls are nested</summary> */
71 * A null is kept @ index 0. Create upon first call to mark().
76 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
226 public virtual int Mark()
  /external/javassist/src/main/javassist/bytecode/stackmap/
BasicBlock.java 95 static class Mark implements Comparable {
100 int size; // 0 unless the mark indicates RETURN etc.
103 Mark(int p) {
113 if (obj instanceof Mark) {
114 int pos = ((Mark)obj).position;
174 private Mark makeMark(HashMap table, int pos) {
181 private Mark makeMark(HashMap table, int pos, BasicBlock[] jump,
183 Mark m = makeMark0(table, pos, false, false);
188 private Mark makeMark0(HashMap table, int pos,
191 Mark m = (Mark)table.get(p)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTokenStream.cs 40 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
122 public virtual int Mark() {
123 lastMarker = input.Mark();
124 dbg.Mark(lastMarker);
DebugTreeNodeStream.cs 50 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
138 public virtual int Mark() {
139 lastMarker = input.Mark();
140 dbg.Mark(lastMarker);
IDebugEventListener.cs 121 * The parser is going to look arbitrarily ahead; mark this location,
125 void Mark(int marker);
140 * Do not "pop" the marker off the state. mark(i)
173 * also must be rewound. Even the rewind for each mark must be unwount.
DebugEventRepeater.cs 89 public virtual void Mark(int i) {
90 _listener.Mark(i);
BlankDebugEventListener.cs 77 public virtual void Mark(int i) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTokenStream.cs 42 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
143 public virtual int Mark()
145 lastMarker = input.Mark();
146 dbg.Mark( lastMarker );
DebugTreeNodeStream.cs 52 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
160 public virtual int Mark()
162 lastMarker = input.Mark();
163 dbg.Mark( lastMarker );
DebugEventRepeater.cs 104 public virtual void Mark( int i )
106 _listener.Mark( i );
BlankDebugEventListener.cs 92 public virtual void Mark( int i )
  /external/webkit/Source/JavaScriptGlue/
JSObject.h 51 void Mark();
JSObject.cpp 137 void JSUserObject::Mark()
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Debug/
IDebugEventListener.cs 123 * The parser is going to look arbitrarily ahead; mark this location,
127 void Mark( int marker );
142 * Do not "pop" the marker off the state. mark(i)
175 * also must be rewound. Even the rewind for each mark must be unwount.
  /external/v8/src/
store-buffer-inl.h 41 void StoreBuffer::Mark(Address addr) {
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
mergeChangeLogs.pl 75 2010-01-29 Mark Rowe <mrowe@apple.com>
144 2010-01-29 Mark Rowe <mrowe@apple.com>
227 2010-01-29 Mark Rowe <mrowe@apple.com>
271 2010-01-29 Mark Rowe <mrowe@apple.com>
286 2010-01-29 Mark Rowe <mrowe@apple.com>
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
LookaheadStream.cs 37 * A lookahead queue that knows how to mark/release locations
58 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
61 /** <summary>tracks how deep mark() calls are nested</summary> */
159 public virtual int Mark() {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
LookaheadStream.cs 39 * A lookahead queue that knows how to mark/release locations
61 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
64 /** <summary>tracks how deep mark() calls are nested</summary> */
187 public virtual int Mark()
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimStringStream.cs 66 /** <summary>tracks how deep mark() calls are nested</summary> */
73 * A null is kept @ index 0. Create upon first call to mark().
78 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
249 public int Mark()
  /external/regex-re2/re2/
dfa.cc 88 // difficult to mark them as such.
377 #define Mark (-1)
386 // Constructor: n is number of normal slots, maxmark number of mark slots.
404 void mark() { function in class:re2::DFA::Workq
429 int nextmark_; // id of next mark
430 bool last_was_mark_; // last inserted was mark
534 if (state->inst_[i] == Mark) {
599 // This is implemented by separating different sets with Mark pointers.
616 bool sawmark = false; // whether queue contains a Mark
624 if (n > 0 && inst[n-1] != Mark) {
    [all...]

Completed in 357 milliseconds

1 2 3