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

1 2 3

  /external/webkit/Source/WebCore/platform/qt/
CursorQt.cpp 33 #include "Cursor.h"
47 Cursor::Cursor(const Cursor& other)
57 Cursor::~Cursor()
64 Cursor& Cursor::operator=(const Cursor& other)
83 void Cursor::ensurePlatformCursor() cons
    [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...]
  /external/webkit/Source/WebCore/storage/
IDBBackingStore.h 86 class Cursor : public RefCounted<Cursor> {
94 virtual ~Cursor() {};
97 virtual PassRefPtr<Cursor> openObjectStoreCursor(int64_t databaseId, int64_t objectStoreId, const IDBKeyRange*, IDBCursor::Direction) = 0;
98 virtual PassRefPtr<Cursor> openIndexKeyCursor(int64_t databaseId, int64_t objectStoreId, int64_t indexId, const IDBKeyRange*, IDBCursor::Direction) = 0;
99 virtual PassRefPtr<Cursor> openIndexCursor(int64_t databaseId, int64_t objectStoreId, int64_t indexId, const IDBKeyRange*, IDBCursor::Direction) = 0;
  /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...]
  /external/proguard/src/proguard/gui/
ProGuardRunnable.java 65 consoleTextArea.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
126 consoleTextArea.setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
ReTraceRunnable.java 68 consoleTextArea.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
131 consoleTextArea.setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
  /external/llvm/lib/CodeGen/
InterferenceCache.h 46 /// RefCount - The total number of Cursor instances referring to this Entry.
137 /// Cursor - The primary query interface for the block interference cache.
138 class Cursor {
155 /// Cursor - Create a dangling cursor.
156 Cursor() : CacheEntry(0), Current(0) {}
157 ~Cursor() { setEntry(0); }
159 Cursor(const Cursor &O) : CacheEntry(0), Current(0) {
163 Cursor &operator=(const Cursor &O)
    [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/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/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/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/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/qemu/distrib/sdl-1.2.12/include/
SDL_syswm.h 52 #define Cursor X11Cursor
60 #undef Cursor
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_syswm.h 52 #define Cursor X11Cursor
60 #undef Cursor
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_syswm.h 52 #define Cursor X11Cursor
60 #undef Cursor
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
xteststr.h 33 #define Cursor CARD32
35 #define XTestCurrentCursor ((Cursor)1)
67 Cursor cursor B32;
118 #undef Cursor
  /prebuilt/windows/sdl/include/SDL/
SDL_syswm.h 52 #define Cursor X11Cursor
60 #undef Cursor
  /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/junit/src/junit/swingui/
TestSelector.java 4 import java.awt.Cursor;
124 parent.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
127 parent.setCursor(Cursor.getDefaultCursor());
  /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...]
  /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/
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...]
  /frameworks/base/core/java/android/database/
Cursor.java 27 * Cursor implementations are not required to be synchronized so code using a Cursor from multiple
28 * threads should perform its own synchronization when using the Cursor.
30 public interface Cursor {
51 * Returns the numbers of rows in the cursor.
53 * @return the number of rows in the cursor.
58 * Returns the current position of the cursor in the row set.
59 * The value is zero-based. When the row set is first returned the cursor
61 * last row is returned another call to next() will leave the cursor past
64 * @return the current cursor position
    [all...]
  /external/chromium/testing/gtest/scripts/
pump.py 87 class Cursor:
120 return Cursor(self.line, self.column + offset)
123 return Cursor(self.line, self.column - offset)
128 return Cursor(self.line, self.column)
131 # Special cursor to indicate the end-of-file.
133 """Returns the special cursor to denote the end-of-file."""
134 return Cursor(-1, -1)
186 def FindFirst(lines, token_table, cursor):
189 start = cursor.Clone()
190 cur_line_number = cursor.lin
    [all...]

Completed in 649 milliseconds

1 2 3