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

1 2 3

  /external/v8/src/heap/
store-buffer-inl.h 15 void StoreBuffer::Mark(Address addr) {
31 Mark(addr);
  /art/runtime/gc/collector/
concurrent_copying-inl.h 31 inline mirror::Object* ConcurrentCopying::Mark(mirror::Object* from_ref) {
63 // It isn't marked yet. Mark it by copying it to the to-space.
  /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() {
BufferedTokenStream.cs 65 /** Track the last mark() call result value for use in rewind(). */
145 public virtual int Mark() {
LegacyCommonTokenStream.cs 75 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
374 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
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()
UnbufferedTokenStream.cs 113 public override int Mark()
116 return base.Mark();
  /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/sfntly/cpp/src/sfntly/port/
file_input_stream.cc 49 void FileInputStream::Mark(int32_t readlimit) {
memory_input_stream.cc 45 void MemoryInputStream::Mark(int32_t readlimit) {
  /external/vogar/src/vogar/util/
MarkResetConsole.java 52 public Mark mark() { method in class:MarkResetConsole
53 return new Mark();
56 public class Mark {
60 private Mark() {}
  /art/runtime/
read_barrier-inl.h 55 ref = reinterpret_cast<MirrorType*>(Mark(ref));
77 ref = reinterpret_cast<MirrorType*>(Mark(old_ref));
112 ref = reinterpret_cast<MirrorType*>(Mark(ref));
125 ref = reinterpret_cast<MirrorType*>(Mark(old_ref));
153 ref = reinterpret_cast<MirrorType*>(Mark(ref));
166 ref = reinterpret_cast<MirrorType*>(Mark(ref));
222 inline mirror::Object* ReadBarrier::Mark(mirror::Object* obj) {
223 return Runtime::Current()->GetHeap()->ConcurrentCopyingCollector()->Mark(obj);
  /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);
  /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.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 );
  /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()
SlimTokenStream.cs 62 /** <summary>Track the last mark() call result value for use in rewind().</summary> */
328 public int Mark()
  /external/sfntly/cpp/src/sfntly/data/
font_input_stream.cc 48 void FontInputStream::Mark(int32_t readlimit) {
50 stream_->Mark(readlimit);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/error/
Mark.java 24 public final class Mark {
32 public Mark(String name, int index, int line, int column, String buffer, int pointer) {
  /external/v8/src/compiler/
graph.h 22 // Each node has a mark which is a monotonically increasing integer, and a
24 typedef uint32_t Mark;
111 Mark mark_max_;

Completed in 1906 milliseconds

1 2 3