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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/
Cursor.cpp 27 #include "Cursor.h"
35 // Hot spot must be inside cursor rectangle.
49 const Cursor& Cursor::fromType(Cursor::Type type)
52 case Cursor::Pointer:
54 case Cursor::Cross:
56 case Cursor::Hand:
58 case Cursor::IBeam:
60 case Cursor::Wait
    [all...]
Cursor.h 47 #include <app/Cursor.h>
105 class Cursor {
154 static const Cursor& fromType(Cursor::Type);
156 Cursor()
163 Cursor(Image*, const IntPoint& hotSpot);
164 Cursor(const Cursor&);
165 ~Cursor();
166 Cursor& operator=(const Cursor&)
    [all...]
  /external/webkit/Source/WebCore/platform/wince/
CursorWinCE.cpp 21 #include "Cursor.h"
31 Cursor m_cursors[NumCursorTypes];
34 static const Cursor& getCursor(CursorType type)
40 Cursor::Cursor(const Cursor& other)
45 Cursor::Cursor(Image* img, const IntPoint& hotspot)
50 Cursor::~Cursor()
    [all...]
  /external/webkit/Source/WebCore/platform/brew/
CursorBrew.cpp 30 #include "Cursor.h"
38 Cursor::Cursor(Image*, const IntPoint&)
43 Cursor::Cursor(const Cursor&)
48 Cursor::~Cursor()
53 Cursor& Cursor::operator=(const Cursor&
    [all...]
  /external/webkit/Source/WebCore/platform/haiku/
CursorHaiku.cpp 30 #include "Cursor.h"
36 Cursor::Cursor(PlatformCursor cursor)
37 : m_platformCursor(cursor)
41 Cursor::Cursor(const Cursor& other)
47 Cursor::~Cursor()
    [all...]
  /external/webkit/Source/WebCore/platform/wx/
CursorWx.cpp 27 #include "Cursor.h"
31 #include <wx/cursor.h>
36 Cursor::Cursor(const Cursor& other)
41 Cursor::Cursor(Image* image, const IntPoint&)
48 Cursor::~Cursor()
52 Cursor& Cursor::operator=(const Cursor& other
    [all...]
  /external/webkit/Source/WebCore/platform/android/
CursorAndroid.cpp 30 #include "Cursor.h"
36 Cursor::Cursor(Image*, const IntPoint&)
41 Cursor::Cursor(const Cursor&)
46 Cursor::~Cursor()
51 Cursor& Cursor::operator=(const Cursor&
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
CursorChromium.cpp 32 #include "Cursor.h"
38 Cursor::Cursor(const Cursor& other)
43 Cursor::Cursor(Image* image, const IntPoint& hotSpot)
48 Cursor::~Cursor()
52 Cursor& Cursor::operator=(const Cursor& other
    [all...]
  /external/webkit/Source/WebCore/platform/efl/
CursorEfl.cpp 35 #include "Cursor.h"
46 Cursor::Cursor(PlatformCursor p)
51 Cursor::Cursor(const Cursor& other)
56 Cursor::~Cursor()
64 Cursor::Cursor(Image* image, const IntPoint& hotspot
    [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...]
  /external/webkit/Source/WebCore/platform/mac/
CursorMac.mm 27 #import "Cursor.h"
41 // but creating a cursor with a bad image might throw.
45 // FIXME: The cursor won't animate. Not sure if that's a big deal.
65 NSCursor* cursor = 0;
68 cursor = [[NSCursor alloc] initWithImage:cursorImage hotSpot:hotSpotPoint];
71 return cursor;
76 void Cursor::ensurePlatformCursor() const
82 case Cursor::Pointer:
85 case Cursor::Cross:
88 case Cursor::Hand
    [all...]
  /external/webkit/Source/WebCore/platform/gtk/
CursorGtk.cpp 44 CustomCursor cursor = CustomCursors[cursorType]; local
45 GRefPtr<GdkCursor> c = adoptGRef(gdk_cursor_new_from_name(gdk_display_get_default(), cursor.name));
50 RefPtr<cairo_surface_t> source = adoptRef(cairo_image_surface_create_for_data(const_cast<unsigned char*>(cursor.bits), CAIRO_FORMAT_A1, 32, 32, 4));
51 RefPtr<cairo_surface_t> mask = adoptRef(cairo_image_surface_create_for_data(const_cast<unsigned char*>(cursor.mask_bits), CAIRO_FORMAT_A1, 32, 32, 4));
55 cairo_set_source_surface(cr.get(), source.get(), cursor.hot_x, cursor.hot_y);
56 cairo_mask_surface(cr.get(), mask.get(), cursor.hot_x, cursor.hot_y);
69 void Cursor::ensurePlatformCursor() const
71 if (m_platformCursor || m_type == Cursor::Pointer
    [all...]
  /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);
  /packages/apps/Email/src/com/android/email/data/
ClosingMatrixCursor.java 19 import android.database.Cursor;
24 * {@link MatrixCursor} which takes an extra {@link Cursor} to the constructor, and close
28 private final Cursor mInnerCursor;
30 public ClosingMatrixCursor(String[] columnNames, Cursor innerCursor) {
  /external/llvm/include/llvm/Support/
GCOV.h 42 GCOVBuffer(MemoryBuffer *B) : Buffer(B), Cursor(0) {}
47 Cursor = 12;
57 Cursor = 0;
61 /// readFunctionTag - If cursor points to a function tag then increment the
62 /// cursor and return true otherwise return false.
64 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
70 Cursor += 4;
74 /// readBlockTag - If cursor points to a block tag then increment the
75 /// cursor and return true otherwise return false
    [all...]
  /external/webkit/Source/WebCore/platform/win/
CursorWin.cpp 28 #include "Cursor.h"
82 BITMAP cursor; local
83 GetObject(hCursor.get(), sizeof(BITMAP), &cursor);
84 OwnPtr<HBITMAP> andMask(CreateBitmap(cursor.bmWidth, cursor.bmHeight, 1, 1, NULL));
85 OwnPtr<HBITMAP> xorMask(CreateCompatibleBitmap(dc, cursor.bmWidth, cursor.bmHeight));
91 BitBlt(andMaskDC, 0, 0, cursor.bmWidth, cursor.bmHeight, workingDC, 0, 0, SRCCOPY);
95 BitBlt(xorMaskDC, 0, 0, cursor.bmWidth, cursor.bmHeight, andMaskDC, 0, 0, SRCCOPY)
    [all...]
  /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/Contacts/src/com/android/contacts/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);
  /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 376 milliseconds

1 2 3 4 5 6 7 8 91011>>