Searched refs:cursor (Results 1 - 25 of 1010) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DRewriteRuleElementStream.as36 * break the cursor tracking I believe.
44 /** Cursor 0..n-1. If singleElement!=null, cursor is 0 until you next(),
47 protected var cursor:int = 0;
93 cursor = 0;
125 if ( dirty || (cursor>=n && n==1) ) {
146 if ( cursor>= n) { // out of elements?
155 cursor++; // move cursor even for single element list
159 var o:Object = toTree(elements[cursor]);
160 cursor
[all...]
H A DRewriteRuleSubtreeStream.as52 if ( dirty || (cursor>=n && n==1) ) {
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3rewritestreams.h53 /// break the cursor tracking I believe.
65 /// Cursor 0..n-1. If singleElement!=NULL, cursor is 0 until you next(),
68 ANTLR3_UINT32 cursor; member in struct:ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3rewritestreams.c242 stream->cursor = 0;
513 stream->cursor = 0;
575 if ( stream->dirty || (stream->cursor >=n && n==1) )
606 if (stream->cursor >= s && s == 1)
641 if (stream->cursor >= n)
661 stream->cursor++; // Cursor advances even for single element as this tells us to dup()
668 t = stream->toTree(stream, stream->elements->get(stream->elements, stream->cursor));
669 stream->cursor++;
752 if ( (stream->singleElement != NULL && stream->cursor < 1)
753 || (stream->elements != NULL && stream->cursor < strea
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DRewriteRuleElementStream.cs46 * break the cursor tracking I believe.
57 * Cursor 0..n-1. If singleElement!=null, cursor is 0 until you next(),
61 protected int cursor = 0; field in class:Antlr.Runtime.Tree.RewriteRuleElementStream
112 cursor = 0;
145 if (dirty || (cursor >= n && n == 1)) {
168 if (cursor >= n) { // out of elements?
177 cursor++; // move cursor even for single element list
181 object o = ToTree(elements[cursor]);
182 cursor
[all...]
H A DRewriteRuleSubtreeStream.cs72 if (dirty || (cursor >= n && n == 1)) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DRewriteRuleElementStream.cs47 * break the cursor tracking I believe.
59 * Cursor 0..n-1. If singleElement!=null, cursor is 0 until you next(),
63 protected int cursor = 0; field in class:Antlr.Runtime.Tree.RewriteRuleElementStream
118 cursor = 0;
156 if ( dirty || ( cursor >= n && n == 1 ) )
182 if ( cursor >= n )
194 cursor++; // move cursor even for single element list
198 object o = ToTree( elements[cursor] );
199 cursor
[all...]
H A DRewriteRuleSubtreeStream.cs78 if ( dirty || ( cursor >= n && n == 1 ) )
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas797 /// break the cursor tracking I believe.
1488 /// Cursor 0..n-1. If singleElement!=null, cursor is 0 until you next(),
3630 Inc(FCursor); // move cursor even for single element list
H A DAntlr.Runtime.pas142 /// Set the input cursor to the position indicated by index. This is
150 /// and in that its argument is strictly an input cursor (index).
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DRewriteRuleElementStream.java39 * break the cursor tracking I believe.
47 /** Cursor 0..n-1. If singleElement!=null, cursor is 0 until you next(),
50 protected int cursor = 0; field in class:RewriteRuleElementStream
107 cursor = 0;
138 if ( dirty || (cursor>=n && n==1) ) {
159 if ( cursor>= n) { // out of elements?
168 cursor++; // move cursor even for single element list
172 Object o = toTree(elements.get(cursor));
173 cursor
[all...]
H A DRewriteRuleSubtreeStream.java70 if ( dirty || (cursor>=n && n==1) ) {
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DRewriteRuleElementStream.js7 * break the cursor tracking I believe.
15 /** Cursor 0..n-1. If singleElement!=null, cursor is 0 until you next(),
18 this.cursor = 0;
49 this.cursor = 0;
80 if ( this.dirty || (this.cursor>=n && n==1) ) {
101 if ( this.cursor>= n) { // out of elements?
110 this.cursor++; // move cursor even for single element list
114 var o = this.toTree(this.elements[this.cursor]);
115 this.cursor
[all...]
H A DRewriteRuleSubtreeStream.js24 if ( this.dirty || (this.cursor>=n && n===1) ) {
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRRewriteRuleElementStream.h37 NSInteger cursor; variable
46 @property (assign, getter=GetCursor, setter=SetCursor:) NSInteger cursor; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRRewriteRuleElementStream.h37 NSInteger cursor; variable
46 @property (assign, getter=GetCursor, setter=SetCursor:) NSInteger cursor; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRRewriteRuleElementStream.h37 NSInteger cursor; variable
46 @property (assign, getter=GetCursor, setter=SetCursor:) NSInteger cursor; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRRewriteRuleElementStream.h32 NSInteger cursor; variable
42 @property (assign) NSInteger cursor; variable
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dtree.py2571 break the cursor tracking I believe.
2581 # Cursor 0..n-1. If singleElement!=null, cursor is 0 until you next(),
2583 self.cursor = 0
2622 self.cursor = 0
2655 or (self.cursor >= len(self) and len(self) == 1)
2678 if self.cursor >= len(self): # out of elements?
2687 self.cursor += 1 # move cursor even for single element list
2691 o = self.toTree(self.elements[self.cursor])
2692 self.cursor
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dstreams.rb98 <tt>k</tt> characters ahead of the stream cursor. For <b>TokenStreams</b>, this
100 stream cursor.
107 character</i> <tt>k</tt> characters ahead of the stream cursor. For
109 ahead of the stream cursor.
136 <tt>stream.seek(position)</tt> moves the stream cursor to an absolute position
247 line 2, character 0, the stream cursor is sitting between the characters "\\n"
321 # expected to return the integer index of the stream cursor
506 # return a substring around the stream cursor at a distance +k+
635 # * +before_chars+ characters before the cursor (6 characters by default)
636 # * +after_chars+ characters after the cursor (1
[all...]
H A Dtree.rb241 cursor = self
242 until cursor.root?
243 yield( parent_node = cursor.parent )
244 cursor = parent_node
246 return( cursor )
269 cursor = self
270 until cursor.root?
271 yield( parent_node = cursor.parent )
272 cursor = parent_node
284 cursor
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Drewrite.rb286 cursor = range.first
287 while range.include?( cursor )
288 if operation = operations.delete( cursor )
289 cursor = operation.execute( output )
291 token = tokens[ cursor ]
293 cursor += 1
296 if operation = operations.delete( cursor ) and
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
H A DActionScript.stg1002 <if(semPredState)> <! return input cursor to state before we rewound !>
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
H A DC.stg2599 <if(semPredState)> <! return input cursor to state before we rewound !>

Completed in 2470 milliseconds

1234567891011>>