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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ui/base/cursor/
cursor_null.cc 5 #include "ui/base/cursor/cursor.h"
9 void Cursor::RefCustomCursor() {
12 void Cursor::UnrefCustomCursor() {
cursor_win.cc 5 #include "ui/base/cursor/cursor.h"
9 void Cursor::RefCustomCursor() {
13 void Cursor::UnrefCustomCursor() {
cursor.cc 5 #include "ui/base/cursor/cursor.h"
9 Cursor::Cursor()
15 Cursor::Cursor(int type)
21 Cursor::Cursor(const Cursor& cursor)
    [all...]
cursor_x11.cc 5 #include "ui/base/cursor/cursor.h"
11 void Cursor::RefCustomCursor() {
16 void Cursor::UnrefCustomCursor() {
cursor.h 85 // Ref-counted cursor that supports both default and custom cursors.
86 class UI_EXPORT Cursor {
88 Cursor();
91 Cursor(int type);
94 Cursor(const Cursor& cursor);
96 ~Cursor();
113 bool operator==(const Cursor& cursor) const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Cursor.cpp 27 #include "core/platform/Cursor.h"
36 // Hot spot must be inside cursor rectangle.
50 const Cursor& Cursor::fromType(Cursor::Type type)
53 case Cursor::Pointer:
55 case Cursor::Cross:
57 case Cursor::Hand:
59 case Cursor::IBeam:
61 case Cursor::Wait
    [all...]
Cursor.h 36 class Cursor {
86 static const Cursor& fromType(Cursor::Type);
88 Cursor()
89 // This is an invalid Cursor and should never actually get used.
94 Cursor(Image*, const IntPoint& hotSpot);
97 Cursor(Image*, const IntPoint& hotSpot, float imageScaleFactor);
99 Cursor(const Cursor&);
100 ~Cursor();
    [all...]
HostWindow.h 37 class Cursor;
63 // Request that the cursor change.
64 virtual void setCursor(const Cursor&) = 0;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/draw2d/
ICursorConstants.java 14 import org.eclipse.swt.graphics.Cursor;
24 * System resize west-east cursor
26 Cursor SIZEWE = new Cursor(null, SWT.CURSOR_SIZEWE);
28 * System resize north-south cursor
30 Cursor SIZENS = new Cursor(null, SWT.CURSOR_SIZENS);
32 * System resize all directions cursor.
35 // The SWT CURSOR_SIZEALL cursor looks wrong; it's cross hairs. Use a hand for resizing
38 //Cursor SIZEALL = new Cursor(null, SWT.CURSOR_SIZEALL)
    [all...]
  /frameworks/base/core/java/android/widget/
FilterQueryProvider.java 19 import android.database.Cursor;
39 * @return a Cursor representing the results of the new query
41 Cursor runQuery(CharSequence constraint);
CursorFilter.java 19 import android.database.Cursor;
32 CharSequence convertToString(Cursor cursor);
33 Cursor runQueryOnBackgroundThread(CharSequence constraint);
34 Cursor getCursor();
35 void changeCursor(Cursor cursor);
44 return mClient.convertToString((Cursor) resultValue);
49 Cursor cursor = mClient.runQueryOnBackgroundThread(constraint) local
    [all...]
CursorTreeAdapter.java 22 import android.database.Cursor;
31 * An adapter that exposes data from a series of {@link Cursor}s to an
32 * {@link ExpandableListView} widget. The top-level {@link Cursor} (that is
33 * given in the constructor) exposes the groups, while subsequent {@link Cursor}s
34 * returned from {@link #getChildrenCursor(Cursor)} expose children within a
44 /** The cursor helper that is used to get the groups */
48 * The map of a group position to the group's children cursor helper (the
49 * cursor helper that is used to get the children for that group)
58 * Constructor. The adapter will call {@link Cursor#requery()} on the cursor wheneve
196 Cursor cursor = mGroupCursorHelper.moveTo(groupPosition); local
240 Cursor cursor = cursorHelper.moveTo(childPosition); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/content/
CursorCreator.java 19 import android.database.Cursor;
22 * An object that knows how to create its implementing class using a single row of a cursor alone.
28 * Creates an object using the current row of the cursor given here. The implementation should
29 * not advance/rewind the cursor, and is only allowed to read the existing row.
33 T createFromCursor(Cursor c);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
CloseUtils.java 18 import android.database.Cursor;
27 /** If the argument is non-null, close the cursor. */
28 public static void closeQuietly(Cursor cursor) {
29 if (cursor != null) {
30 cursor.close();
  /frameworks/base/core/java/android/database/sqlite/
SQLiteCursorDriver.java 19 import android.database.Cursor;
28 * Executes the query returning a Cursor over the result set.
32 * @return a Cursor over the result set
34 Cursor query(CursorFactory factory, String[] bindArgs);
44 void cursorRequeried(Cursor cursor);
  /external/llvm/include/llvm/Support/
GCOV.h 44 GCOVBuffer(MemoryBuffer *B) : Buffer(B), Cursor(0) {}
49 Cursor = 12;
59 Cursor = 0;
63 /// readFunctionTag - If cursor points to a function tag then increment the
64 /// cursor and return true otherwise return false.
66 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
72 Cursor += 4;
76 /// readBlockTag - If cursor points to a block tag then increment the
77 /// cursor and return true otherwise return false
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
JoinContactLoader.java 20 import android.database.Cursor;
28 * This loader also loads the "suggestion" cursor, which can be accessed with:
38 * class. This class is needed to tie the lifecycle of the second cursor to that of the
42 * extends AsyncTaskLoader<Cursor>, not AsyncTaskLoader<? extends Cursor>
45 public final Cursor suggestionCursor;
47 public JoinContactLoaderResult(Cursor baseCursor, Cursor suggestionCursor) {
77 public Cursor loadInBackground() {
80 final Cursor suggestionsCursor = getContext().getContentResolver(
    [all...]
  /packages/apps/Email/src/com/android/email/data/
ClosingMatrixCursor.java 19 import android.database.Cursor;
25 * {@link MatrixCursor} which takes an extra {@link Cursor} to the constructor, and close
29 private final Cursor mInnerCursor;
31 public ClosingMatrixCursor(String[] columnNames, Cursor innerCursor) {
  /frameworks/base/core/java/android/content/
CursorEntityIterator.java 19 import android.database.Cursor;
23 * Abstract implementation of EntityIterator that makes it easy to wrap a cursor
28 private final Cursor mCursor;
32 * Constructor that makes initializes the cursor such that the iterator points to the
34 * @param cursor the cursor that contains the rows that make up the entities
36 public CursorEntityIterator(Cursor cursor) {
38 mCursor = cursor;
43 * Returns the entity that the cursor is currently pointing to. This must take care to advanc
    [all...]
  /frameworks/base/core/java/android/database/
CrossProcessCursor.java 20 * A cross process cursor is an extension of a {@link Cursor} that also supports
23 * The contents of a cross process cursor are marshalled to the remote process by
25 * the cursor can provide a pre-filled window to use via {@link #getWindow} thereby
26 * obviating the need to copy the data to yet another cursor window.
28 public interface CrossProcessCursor extends Cursor {
30 * Returns a pre-filled window that contains the data within this cursor.
32 * In particular, the window contains the row indicated by {@link Cursor#getPosition}.
42 * Copies cursor data into the window.
45 * row position until all of the data in the cursor is exhauste
    [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
CursorFilter.java 19 import android.database.Cursor;
33 CharSequence convertToString(Cursor cursor);
34 Cursor runQueryOnBackgroundThread(CharSequence constraint);
35 Cursor getCursor();
36 void changeCursor(Cursor cursor);
45 return mClient.convertToString((Cursor) resultValue);
50 Cursor cursor = mClient.runQueryOnBackgroundThread(constraint) local
    [all...]
  /frameworks/ex/common/java/com/android/common/io/
MoreCloseables.java 20 import android.database.Cursor;
26 * Closes the supplied cursor iff it is not null.
28 public static void closeQuietly(Cursor cursor) {
29 if (cursor != null) {
30 cursor.close();
  /packages/apps/Dialer/src/com/android/dialer/voicemail/
VoicemailStatusHelper.java 19 import android.database.Cursor;
75 * @param cursor The cursor pointing to the query on {@link Status#CONTENT_URI}. The projection
78 public List<StatusMessage> getStatusMessages(Cursor cursor);
85 public int getNumberActivityVoicemailSources(Cursor cursor);
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationCursorOperationListener.java 19 import android.database.Cursor;
24 * Marks all contents of this cursor as seen.
35 * Invokes {@link ConversationCursorOperationListener#markContentsSeen(Cursor)} on the
36 * specified {@link Cursor}, recursively calls {@link #markContentsSeen(Cursor)} on a
37 * wrapped cursor, or returns.
39 public static void markContentsSeen(final Cursor cursor) {
40 if (cursor == null) {
44 if (cursor instanceof ConversationCursorOperationListener)
    [all...]
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/utils/
CloseUtils.java 19 import android.database.Cursor;
44 /** If the argument is non-null, close the cursor. */
45 public static void closeQuietly(Cursor cursor) {
46 if (cursor != null) {
47 cursor.close();

Completed in 454 milliseconds

1 2 3 4 5 6 7 8 91011>>