HomeSort by relevance Sort by last modified time
    Searched defs:Cursor (Results 1 - 25 of 75) 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/clang/bindings/python/tests/cindex/
util.py 3 from clang.cindex import Cursor
34 """Obtain a cursor from a source object.
36 This provides a convenient search mechanism to find a cursor with specific
38 TranslationUnit or Cursor instance.
40 If the cursor is not found, None is returned.
43 if isinstance(source, Cursor):
47 children = source.cursor.get_children()
49 for cursor in children:
50 if cursor.spelling == spelling:
51 return cursor
    [all...]
test_location.py 1 from clang.cindex import Cursor
51 cursor = Cursor.from_location(tu, location)
55 assert one == cursor
64 cursor = Cursor.from_location(tu, offset_location)
66 for n in [n for n in tu.cursor.get_children() if n.spelling == 'one']:
67 assert n == cursor
test_translation_unit.py 5 from clang.cindex import Cursor
25 c = tu.cursor
26 assert isinstance(c, Cursor)
32 spellings = [c.spelling for c in tu.cursor.get_children()]
40 spellings = [c.spelling for c in tu.cursor.get_children()]
55 spellings = [c.spelling for c in tu.cursor.get_children()]
63 spellings = [c.spelling for c in tu.cursor.get_children()]
  /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 48 /// RefCount - The total number of Cursor instances referring to this Entry.
160 /// Cursor - The primary query interface for the block interference cache.
161 class Cursor {
178 /// Cursor - Create a dangling cursor.
179 Cursor() : CacheEntry(0), Current(0) {}
180 ~Cursor() { setEntry(0); }
182 Cursor(const Cursor &O) : CacheEntry(0), Current(0) {
186 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.15/include/
SDL_syswm.h 55 #define Cursor X11Cursor
63 #undef Cursor
  /prebuilts/gcc/linux-x86/host/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
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
xteststr.h 33 #define Cursor CARD32
35 #define XTestCurrentCursor ((Cursor)1)
67 Cursor cursor B32;
118 #undef Cursor
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
xteststr.h 33 #define Cursor CARD32
35 #define XTestCurrentCursor ((Cursor)1)
67 Cursor cursor B32;
118 #undef Cursor
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_syswm.h 55 #define Cursor X11Cursor
63 #undef Cursor
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_syswm.h 55 #define Cursor X11Cursor
63 #undef Cursor
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_syswm.h 55 #define Cursor X11Cursor
63 #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/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 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...]

Completed in 1894 milliseconds

1 2 3