Searched defs:cursor (Results 1 - 25 of 202) sorted by relevance

123456789

/external/webkit/Source/WebKit/chromium/src/
H A DWebCursorInfo.cpp40 WebCursorInfo::WebCursorInfo(const Cursor& cursor) argument
42 type = static_cast<Type>(cursor.impl().type());
43 hotSpot = cursor.impl().hotSpot();
44 customImage = cursor.impl().customImage();
H A DWebIDBCallbacksImpl.cpp62 void WebIDBCallbacksImpl::onSuccess(WebIDBCursor* cursor) argument
64 m_callbacks->onSuccess(IDBCursorBackendProxy::create(cursor));
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRRewriteRuleElementStream.h32 NSInteger cursor; variable
42 @property (assign) NSInteger cursor; variable
/external/harfbuzz/src/
H A Dharfbuzz-stream.h40 HB_Byte* cursor; member in struct:HB_StreamRec_
/external/harfbuzz_ng/src/hb-old/
H A Dharfbuzz-stream.h40 HB_Byte* cursor; member in struct:HB_StreamRec_
/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/jmonkeyengine/engine/src/test/jme3test/gui/
H A DTestSoftwareMouse.java46 private Picture cursor; field in class:TestSoftwareMouse
70 cursor.setPosition(x, y - 64);
97 cursor = new Picture("cursor");
98 cursor.setTexture(assetManager, (Texture2D) tex, true);
99 cursor.setWidth(64);
100 cursor.setHeight(64);
101 guiNode.attachChild(cursor);
/external/apache-http/src/org/apache/http/impl/cookie/
H A DNetscapeDraftHeaderParser.java60 final ParserCursor cursor) throws ParseException {
64 if (cursor == null) {
65 throw new IllegalArgumentException("Parser cursor may not be null");
67 NameValuePair nvp = this.nvpParser.parseNameValuePair(buffer, cursor, DELIMITERS);
69 while (!cursor.atEnd()) {
70 NameValuePair param = this.nvpParser.parseNameValuePair(buffer, cursor, DELIMITERS);
58 parseHeader( final CharArrayBuffer buffer, final ParserCursor cursor) argument
/external/apache-http/src/org/apache/http/message/
H A DHeaderValueParser.java84 * @param cursor the parser cursor containing the current position and
93 ParserCursor cursor) throws ParseException;
101 * @param cursor the parser cursor containing the current position and
110 ParserCursor cursor) throws ParseException;
187 * @param cursor the parser cursor containing the current position and
196 ParserCursor cursor) throws ParseException;
203 * @param cursor th
91 parseElements( CharArrayBuffer buffer, ParserCursor cursor) argument
108 parseHeaderElement( CharArrayBuffer buffer, ParserCursor cursor) argument
194 parseParameters( CharArrayBuffer buffer, ParserCursor cursor) argument
209 parseNameValuePair( CharArrayBuffer buffer, ParserCursor cursor) argument
[all...]
H A DLineParser.java68 * @param cursor the parser cursor containing the current position and
77 ParserCursor cursor) throws ParseException;
90 * @param cursor the cursor at which to check for a protocol version, or
101 ParserCursor cursor);
108 * @param cursor the parser cursor containing the current position and
117 ParserCursor cursor) throws ParseException;
124 * @param cursor th
75 parseProtocolVersion( CharArrayBuffer buffer, ParserCursor cursor) argument
99 hasProtocolVersion( CharArrayBuffer buffer, ParserCursor cursor) argument
115 parseRequestLine( CharArrayBuffer buffer, ParserCursor cursor) argument
131 parseStatusLine( CharArrayBuffer buffer, ParserCursor cursor) argument
[all...]
H A DBasicHeaderElementIterator.java58 private ParserCursor cursor = null; field in class:BasicHeaderElementIterator
83 this.cursor = null;
89 this.cursor = new ParserCursor(0, this.buffer.length());
90 this.cursor.updatePos(((FormattedHeader) h).getValuePos());
97 this.cursor = new ParserCursor(0, this.buffer.length());
106 while (this.headerIt.hasNext() || this.cursor != null) {
107 if (this.cursor == null || this.cursor.atEnd()) {
112 if (this.cursor != null) {
114 while (!this.cursor
[all...]
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DBaseCodeCursor.java29 private int cursor; field in class:BaseCodeCursor
36 this.cursor = 0;
40 public final int cursor() { method in class:BaseCodeCursor
41 return cursor;
46 int mapped = baseAddressMap.get(cursor);
47 return (mapped >= 0) ? mapped : cursor;
56 * Advance the cursor by the indicated amount.
59 cursor += amount;
H A DCodeCursor.java24 * Gets the cursor. The cursor is the offset in code units from
29 public int cursor(); method in interface:CodeCursor
32 * Gets the base address associated with the current cursor. This
33 * differs from the cursor value when explicitly set (by {@link
/external/qemu/distrib/sdl-1.2.15/src/video/nanox/
H A DSDL_nxmouse.c32 // The implementation dependent data for the window manager cursor
40 WMcursor * cursor ; local
44 cursor = (WMcursor *) SDL_malloc (sizeof (WMcursor)) ;
45 if (cursor == NULL) {
51 return cursor ;
54 void NX_FreeWMCursor (_THIS, WMcursor * cursor) argument
57 SDL_free (cursor) ;
75 int NX_ShowWMCursor (_THIS, WMcursor * cursor) argument
/external/qemu/distrib/sdl-1.2.15/src/video/qtopia/
H A DSDL_sysmouse.cc30 /* The implementation dependent data for the window manager cursor */
42 int QT_ShowWMCursor(_THIS, WMcursor *cursor) argument
47 void QT_FreeWMCursor(_THIS, WMcursor *cursor) argument
/external/qemu/distrib/sdl-1.2.15/src/video/vgl/
H A DSDL_vglmouse.c30 /* The implementation dependent data for the window manager cursor */
36 void VGL_FreeWMCursor(_THIS, WMcursor *cursor) argument
47 int VGL_ShowWMCursor(_THIS, WMcursor *cursor) argument
/external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/android/database/
H A DSimpleTestCursorTest.java21 private SimpleTestCursor cursor; field in class:SimpleTestCursorTest
29 cursor = new SimpleTestCursor();
30 shadowContentResolver.setCursor(uri, cursor);
34 cursor.setColumnNames(columnNames);
40 assertThat(cursor.uri, equalTo(uri));
41 assertThat(cursor.projection[0], equalTo("projection"));
42 assertThat(cursor.selection, equalTo("selection"));
43 assertThat(cursor.selectionArgs[0], equalTo("selection"));
44 assertThat(cursor.sortOrder, equalTo("sortOrder"));
49 cursor
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
H A Dregress-192465.js112 var cursor = head;
116 cursor.next = {};
117 cursor = cursor.next;
120 cursor.toSource = function()
/external/webkit/Source/WebCore/platform/qt/
H A DQWebPageClient.h69 if (!cursor().bitmap() && cursor().shape() == m_lastCursor.shape())
74 inline void setCursor(const QCursor& cursor) argument
76 m_lastCursor = cursor;
77 if (!cursor.bitmap() && cursor.shape() == this->cursor().shape())
79 updateCursor(cursor);
100 virtual QCursor cursor() const = 0;
101 virtual void updateCursor(const QCursor& cursor)
[all...]
/external/webkit/Source/WebCore/storage/
H A DIDBCursorBackendImpl.h51 static PassRefPtr<IDBCursorBackendImpl> create(PassRefPtr<IDBBackingStore::Cursor> cursor, IDBCursor::Direction direction, CursorType cursorType, IDBTransactionBackendInterface* transaction, IDBObjectStoreBackendInterface* objectStore) argument
53 return adoptRef(new IDBCursorBackendImpl(cursor, direction, cursorType, transaction, objectStore));
/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/clang/tools/libclang/
H A DCXCursor.h66 /// \brief Unpack an ObjCSuperClassRef cursor into the interface it references
76 /// \brief Unpack an ObjCProtocolRef cursor into the protocol it references
86 /// \brief Unpack an ObjCClassRef cursor into the class it references
95 /// \brief Unpack a TypeRef cursor into the class it references
103 /// \brief Unpack a TemplateRef cursor into the template it references and
113 /// \brief Unpack a NamespaceRef cursor into the namespace or namespace alias
121 /// \brief Unpack a VariableRef cursor into the variable it references and the
129 /// \brief Unpack a MemberRef cursor into the field it references and the
133 /// \brief Create a CXX base specifier cursor.
137 /// \brief Unpack a CXXBaseSpecifier cursor int
267 getSelectorIdentifierIndex(CXCursor cursor) argument
270 getSelectorIdentifierLoc(CXCursor cursor) argument
276 getTypeRefedCallExprCursor(CXCursor cursor) argument
[all...]
/external/freetype/src/base/
H A Dftstream.c42 stream->cursor = 0;
203 *pbytes = (FT_Byte*)stream->cursor;
206 stream->cursor = 0;
242 FT_ASSERT( stream && stream->cursor == 0 );
282 stream->cursor = stream->base;
283 stream->limit = stream->cursor + count;
300 /* set cursor */
301 stream->cursor = stream->base + stream->pos;
302 stream->limit = stream->cursor + count;
314 /* IMPORTANT: The assertion stream->cursor !
728 FT_Byte* cursor; local
[all...]

Completed in 751 milliseconds

123456789