Searched defs:cursor (Results 1 - 25 of 439) 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/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/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...]
/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...]
/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...]
/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/apache-http/src/org/apache/http/impl/cookie/
H A DNetscapeDraftHeaderParser.java66 final ParserCursor cursor) throws ParseException {
70 if (cursor == null) {
71 throw new IllegalArgumentException("Parser cursor may not be null");
73 NameValuePair nvp = this.nvpParser.parseNameValuePair(buffer, cursor, DELIMITERS);
75 while (!cursor.atEnd()) {
76 NameValuePair param = this.nvpParser.parseNameValuePair(buffer, cursor, DELIMITERS);
64 parseHeader( final CharArrayBuffer buffer, final ParserCursor cursor) argument
/external/apache-http/src/org/apache/http/message/
H A DBasicHeaderElementIterator.java63 private ParserCursor cursor = null; field in class:BasicHeaderElementIterator
88 this.cursor = null;
94 this.cursor = new ParserCursor(0, this.buffer.length());
95 this.cursor.updatePos(((FormattedHeader) h).getValuePos());
102 this.cursor = new ParserCursor(0, this.buffer.length());
111 while (this.headerIt.hasNext() || this.cursor != null) {
112 if (this.cursor == null || this.cursor.atEnd()) {
117 if (this.cursor != null) {
119 while (!this.cursor
[all...]
H A DBasicHeaderValueParser.java112 ParserCursor cursor = new ParserCursor(0, value.length());
113 return parser.parseElements(buffer, cursor);
119 final ParserCursor cursor) {
124 if (cursor == null) {
125 throw new IllegalArgumentException("Parser cursor may not be null");
129 while (!cursor.atEnd()) {
130 HeaderElement element = parseHeaderElement(buffer, cursor);
163 ParserCursor cursor = new ParserCursor(0, value.length());
164 return parser.parseHeaderElement(buffer, cursor);
170 final ParserCursor cursor) {
118 parseElements(final CharArrayBuffer buffer, final ParserCursor cursor) argument
169 parseHeaderElement(final CharArrayBuffer buffer, final ParserCursor cursor) argument
235 parseParameters(final CharArrayBuffer buffer, final ParserCursor cursor) argument
304 parseNameValuePair(final CharArrayBuffer buffer, final ParserCursor cursor) argument
320 parseNameValuePair(final CharArrayBuffer buffer, final ParserCursor cursor, final char[] delimiters) argument
[all...]
H A DBasicLineParser.java127 ParserCursor cursor = new ParserCursor(0, value.length());
128 return parser.parseProtocolVersion(buffer, cursor);
134 final ParserCursor cursor)
140 if (cursor == null) {
141 throw new IllegalArgumentException("Parser cursor may not be null");
147 int indexFrom = cursor.getPos();
148 int indexTo = cursor.getUpperBound();
150 skipWhitespace(buffer, cursor);
152 int i = cursor.getPos();
206 cursor
133 parseProtocolVersion(final CharArrayBuffer buffer, final ParserCursor cursor) argument
229 hasProtocolVersion(final CharArrayBuffer buffer, final ParserCursor cursor) argument
306 parseRequestLine(final CharArrayBuffer buffer, final ParserCursor cursor) argument
398 parseStatusLine(final CharArrayBuffer buffer, final ParserCursor cursor) argument
499 skipWhitespace(final CharArrayBuffer buffer, final ParserCursor cursor) argument
[all...]
H A DHeaderValueParser.java89 * @param cursor the parser cursor containing the current position and
98 ParserCursor cursor) throws ParseException;
106 * @param cursor the parser cursor containing the current position and
115 ParserCursor cursor) throws ParseException;
192 * @param cursor the parser cursor containing the current position and
201 ParserCursor cursor) throws ParseException;
208 * @param cursor th
96 parseElements( CharArrayBuffer buffer, ParserCursor cursor) argument
113 parseHeaderElement( CharArrayBuffer buffer, ParserCursor cursor) argument
199 parseParameters( CharArrayBuffer buffer, ParserCursor cursor) argument
214 parseNameValuePair( CharArrayBuffer buffer, ParserCursor cursor) argument
[all...]
H A DLineParser.java73 * @param cursor the parser cursor containing the current position and
82 ParserCursor cursor) throws ParseException;
95 * @param cursor the cursor at which to check for a protocol version, or
106 ParserCursor cursor);
113 * @param cursor the parser cursor containing the current position and
122 ParserCursor cursor) throws ParseException;
129 * @param cursor th
80 parseProtocolVersion( CharArrayBuffer buffer, ParserCursor cursor) argument
104 hasProtocolVersion( CharArrayBuffer buffer, ParserCursor cursor) argument
120 parseRequestLine( CharArrayBuffer buffer, ParserCursor cursor) argument
136 parseStatusLine( CharArrayBuffer buffer, ParserCursor cursor) argument
[all...]
/external/bison/lib/
H A Dhash.c183 struct hash_entry const *cursor = bucket; local
186 while (cursor = cursor->next, cursor)
211 struct hash_entry const *cursor = bucket; local
218 while (cursor = cursor->next, cursor)
264 struct hash_entry const *cursor; local
269 for (cursor
310 struct hash_entry const *cursor; local
341 struct hash_entry const *cursor; local
373 struct hash_entry const *cursor; local
661 struct hash_entry *cursor; local
699 struct hash_entry *cursor; local
794 struct hash_entry *cursor; local
863 struct hash_entry *cursor; local
1189 struct hash_entry *cursor = table->free_entry_list; local
1218 struct hash_entry *cursor; local
[all...]
/external/ceres-solver/internal/ceres/
H A Dcompressed_col_sparse_matrix_utils.cc53 for (int i = 0, cursor = 0; i < num_row_blocks; ++i) {
54 row_block_starts[i] = cursor;
55 cursor += row_blocks[i];
101 for (int i = 0, cursor = 0; i < num_blocks ; ++i) {
102 block_starts[i] = cursor;
103 cursor += blocks[i];
107 int cursor = 0; local
113 (*scalar_ordering)[cursor++] = block_position++;
H A Dcompressed_row_sparse_matrix.cc516 int cursor = 0; local
523 const int saved_cursor = cursor;
526 cursor = saved_cursor;
531 for (int idx2 = row_begin; idx2 <= idx1; ++idx2, ++cursor) {
532 values[program[cursor]] += v1 * m_values[idx2];
540 CHECK_EQ(cursor, program.size());
H A Dcovariance_impl.cc337 int cursor = 0; // index into the covariance matrix. local
361 rows[row_begin + r] = cursor;
367 cols[cursor++] = col_begin++;
375 rows[num_rows] = cursor;
/external/chromium_org/ash/display/
H A Dcursor_window_controller.cc15 #include "ui/base/cursor/cursors_aura.h"
61 // Sets cursor compositing mode on/off.
66 // Sets the cursor image for the |display|'s scale factor.
164 void CursorWindowController::SetCursor(gfx::NativeCursor cursor) { argument
165 if (cursor_type_ == cursor.native_type() &&
168 cursor_type_ = cursor.native_type();
217 // TODO(hshi): support custom cursor set.
/external/chromium_org/ash/drag_drop/
H A Ddrag_drop_controller.cc280 gfx::NativeCursor cursor = ui::kCursorNoDrop; local
282 cursor = ui::kCursorCopy;
284 cursor = ui::kCursorAlias;
286 cursor = ui::kCursorGrabbing;
287 ash::Shell::GetInstance()->cursor_manager()->SetCursor(cursor);
/external/chromium_org/ash/wm/
H A Dash_native_cursor_manager.cc14 #include "ui/base/cursor/cursor.h"
15 #include "ui/base/cursor/image_cursors.h"
21 void SetCursorOnAllRootWindows(gfx::NativeCursor cursor) { argument
26 (*iter)->GetHost()->SetCursor(cursor);
29 cursor_window_controller()->SetCursor(cursor);
98 gfx::NativeCursor cursor,
101 image_cursors_->SetPlatformCursor(&cursor);
105 if (cursor == ui::kCursorCustom) {
106 cursor
97 SetCursor( gfx::NativeCursor cursor, ::wm::NativeCursorManagerDelegate* delegate) argument
[all...]
/external/chromium_org/athena/env/
H A Dathena_env_impl.cc19 #include "ui/base/cursor/cursor.h"
20 #include "ui/base/cursor/image_cursors.h"
111 virtual void SetCursor(gfx::NativeCursor cursor,
113 image_cursors_->SetPlatformCursor(&cursor);
114 cursor.set_device_scale_factor(image_cursors_->GetScale());
115 delegate->CommitCursor(cursor);
118 ApplyCursor(cursor); variable
152 // Sets |cursor| as the active cursor withi
153 ApplyCursor(gfx::NativeCursor cursor) argument
[all...]
/external/chromium_org/base/i18n/
H A Dfile_util_icu.cc102 int cursor = 0; // The ICU macros expect an int. local
103 while (cursor < static_cast<int>(file_name->size())) {
104 int char_begin = cursor;
108 U8_NEXT(file_name->data(), cursor, static_cast<int>(file_name->length()),
112 U16_NEXT(file_name->data(), cursor, static_cast<int>(file_name->length()),
117 unsigned char cur_char = static_cast<unsigned char>((*file_name)[cursor++]);
126 file_name->replace(char_begin, cursor - char_begin, 1, replace_char);
128 // takes one byte/word, so need to adjust the cursor to point to the next
130 cursor = char_begin + 1;
/external/chromium_org/base/
H A Dsha1_portable.cc62 uint32 cursor; member in class:base::SecureHashAlgorithm
106 cursor = 0;
126 M[cursor++] = *d++;
127 if (cursor >= 64)
134 M[cursor++] = 0x80;
136 if (cursor > 64-8) {
138 while (cursor < 64)
139 M[cursor++] = 0;
144 while (cursor < 64-8)
145 M[cursor
[all...]

Completed in 636 milliseconds

1234567891011>>