Searched defs:Cursor (Results 1 - 25 of 45) sorted by relevance

12

/external/clang/bindings/python/tests/cindex/
H A Dutil.py3 from clang.cindex import Cursor namespace
39 TranslationUnit or Cursor instance.
44 if isinstance(source, Cursor):
H A Dtest_location.py1 from clang.cindex import Cursor namespace
51 cursor = Cursor.from_location(tu, location)
/external/webkit/Source/WebCore/platform/qt/
H A DCursorQt.cpp33 #include "Cursor.h"
47 Cursor::Cursor(const Cursor& other) function in class:WebCore::Cursor
57 Cursor::~Cursor()
64 Cursor& Cursor::operator=(const Cursor& other)
83 void Cursor
[all...]
/external/webkit/Source/WebCore/storage/
H A DIDBBackingStore.h86 class Cursor : public RefCounted<Cursor> { class in class:WebCore::IDBBackingStore
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/gtk/
H A DCursorGtk.cpp69 void Cursor::ensurePlatformCursor() const
71 if (m_platformCursor || m_type == Cursor::Pointer)
75 case Cursor::Pointer:
79 case Cursor::Cross:
82 case Cursor::Hand:
85 case Cursor::IBeam:
88 case Cursor::Wait:
91 case Cursor::Help:
94 case Cursor::Move:
95 case Cursor
189 Cursor::Cursor(const Cursor& other) function in class:WebCore::Cursor
[all...]
/external/webkit/Source/WebCore/platform/win/
H A DCursorWin.cpp28 #include "Cursor.h"
133 void Cursor::ensurePlatformCursor() const
139 case Cursor::Pointer:
140 case Cursor::Cell:
141 case Cursor::ContextMenu:
142 case Cursor::Alias:
143 case Cursor::Copy:
144 case Cursor::None:
145 case Cursor::Grab:
146 case Cursor
266 Cursor::Cursor(const Cursor& other) function in class:WebCore::Cursor
[all...]
/external/llvm/lib/CodeGen/
H A DInterferenceCache.h47 /// RefCount - The total number of Cursor instances referring to this Entry.
142 /// Cursor - The primary query interface for the block interference cache.
143 class Cursor { class in class:llvm::InterferenceCache
160 /// Cursor - Create a dangling cursor.
161 Cursor() : CacheEntry(0), Current(0) {} function in class:llvm::InterferenceCache::Cursor
162 ~Cursor() { setEntry(0); }
164 Cursor(const Cursor &O) : CacheEntry(0), Current(0) { function in class:llvm::InterferenceCache::Cursor
168 Cursor &operator=(const Cursor
[all...]
/external/webkit/Source/WebCore/platform/android/
H A DCursorAndroid.cpp30 #include "Cursor.h"
36 Cursor::Cursor(Image*, const IntPoint&) function in class:WebCore::Cursor
41 Cursor::Cursor(const Cursor&) argument
46 Cursor::~Cursor()
51 Cursor& Cursor argument
[all...]
/external/webkit/Source/WebCore/platform/brew/
H A DCursorBrew.cpp30 #include "Cursor.h"
38 Cursor::Cursor(Image*, const IntPoint&) function in class:WebCore::Cursor
43 Cursor::Cursor(const Cursor&) argument
48 Cursor::~Cursor()
53 Cursor& Cursor argument
[all...]
/external/webkit/Source/WebCore/platform/chromium/
H A DCursorChromium.cpp32 #include "Cursor.h"
38 Cursor::Cursor(const Cursor& other) function in class:WebCore::Cursor
43 Cursor::Cursor(Image* image, const IntPoint& hotSpot) function in class:WebCore::Cursor
48 Cursor::~Cursor()
52 Cursor& Cursor
58 Cursor::Cursor(PlatformCursor c) function in class:WebCore::Cursor
[all...]
/external/webkit/Source/WebCore/platform/wince/
H A DCursorWinCE.cpp21 #include "Cursor.h"
31 Cursor m_cursors[NumCursorTypes];
34 static const Cursor& getCursor(CursorType type)
40 Cursor::Cursor(const Cursor& other) function in class:WebCore::Cursor
45 Cursor::Cursor(Image* img, const IntPoint& hotspot) function in class:WebCore::Cursor
50 Cursor::~Cursor()
60 Cursor::Cursor(PlatformCursor c) function in class:WebCore::Cursor
[all...]
/external/webkit/Source/WebCore/platform/wx/
H A DCursorWx.cpp27 #include "Cursor.h"
36 Cursor::Cursor(const Cursor& other) function in class:WebCore::Cursor
41 Cursor::Cursor(Image* image, const IntPoint&) function in class:WebCore::Cursor
48 Cursor::~Cursor()
52 Cursor& Cursor
58 Cursor::Cursor(wxCursor* c) function in class:WebCore::Cursor
[all...]
/external/qemu/distrib/sdl-1.2.12/include/
H A DSDL_syswm.h52 #define Cursor X11Cursor macro
60 #undef Cursor macro
/external/webkit/Source/WebCore/platform/haiku/
H A DCursorHaiku.cpp30 #include "Cursor.h"
36 Cursor::Cursor(PlatformCursor cursor) function in class:WebCore::Cursor
41 Cursor::Cursor(const Cursor& other) function in class:WebCore::Cursor
47 Cursor::~Cursor()
52 Cursor::Cursor(Imag function in class:WebCore::Cursor
[all...]
/external/webkit/Source/WebCore/platform/efl/
H A DCursorEfl.cpp35 #include "Cursor.h"
46 Cursor::Cursor(PlatformCursor p) function in class:WebCore::Cursor
51 Cursor::Cursor(const Cursor& other) function in class:WebCore::Cursor
56 Cursor::~Cursor()
64 Cursor::Cursor(Imag function in class:WebCore::Cursor
[all...]
/external/clang/tools/libclang/
H A DCIndexHigh.cpp306 static void findMacroRefsInFile(CXTranslationUnit TU, CXCursor Cursor, argument
309 if (Cursor.kind != CXCursor_MacroDefinition &&
310 Cursor.kind != CXCursor_MacroExpansion)
318 if (Cursor.kind == CXCursor_MacroDefinition)
319 Macro = getCursorMacroDefinition(Cursor)->getName();
321 Macro = getCursorMacroExpansion(Cursor)->getName();
/external/llvm/include/llvm/Support/
H A DGCOV.h42 GCOVBuffer(MemoryBuffer *B) : Buffer(B), Cursor(0) {}
47 Cursor = 12;
57 Cursor = 0;
64 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
70 Cursor += 4;
77 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
83 Cursor += 4;
90 StringRef Tag = Buffer->getBuffer().slice(Cursor, Curso
152 uint64_t Cursor; member in class:llvm::GCOVBuffer
[all...]
/external/webkit/Source/WebCore/platform/
H A DCursor.cpp27 #include "Cursor.h"
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:
62 case Cursor
242 Cursor::Cursor(Image* image, const IntPoint& hotSpot) function in class:WebCore::Cursor
250 Cursor::Cursor(Type type) function in class:WebCore::Cursor
[all...]
H A DCursor.h47 #include <app/Cursor.h>
105 class Cursor { class in namespace:WebCore
154 static const Cursor& fromType(Cursor::Type);
156 Cursor() function in class:WebCore::Cursor
163 Cursor(Image*, const IntPoint& hotSpot);
164 Cursor(const Cursor&);
165 ~Cursor();
166 Cursor
[all...]
/external/chromium/testing/gtest/scripts/
H A Dpump.py87 class Cursor: class in inherits:
120 return Cursor(self.line, self.column + offset)
123 return Cursor(self.line, self.column - offset)
128 return Cursor(self.line, self.column)
134 return Cursor(-1, -1)
200 found_start = Cursor(cur_line_number, start_column)
212 end = Cursor(len(lines) - 1, len(lines[-1]))
339 pos = Cursor(exp_token.end.line + 1, 0)
359 new_pos = Cursor(pos.line + 1, 0)
386 for token in TokenizeLines(lines, Cursor(
[all...]
/external/gtest/scripts/
H A Dpump.py87 class Cursor: class in inherits:
120 return Cursor(self.line, self.column + offset)
123 return Cursor(self.line, self.column - offset)
128 return Cursor(self.line, self.column)
134 return Cursor(-1, -1)
200 found_start = Cursor(cur_line_number, start_column)
212 end = Cursor(len(lines) - 1, len(lines[-1]))
339 pos = Cursor(exp_token.end.line + 1, 0)
359 new_pos = Cursor(pos.line + 1, 0)
386 for token in TokenizeLines(lines, Cursor(
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DSignatureAttribute.java158 static private class Cursor { class in class:SignatureAttribute
648 return parseObjectType(sig, new Cursor(), false);
658 Cursor cur = new Cursor();
674 Cursor cur = new Cursor();
703 private static TypeParameter[] parseTypeParams(String sig, Cursor cur)
731 private static ObjectType parseObjectType(String sig, Cursor c, boolean dontThrow)
752 private static ClassType parseClassType(String sig, Cursor c)
761 private static ClassType parseClassType2(String sig, Cursor
[all...]
/external/tinyxml/
H A Dtinyxmlparser.cpp168 const TiXmlCursor& Cursor() { return cursor; } function in class:TiXmlParsingData
709 location = data.Cursor();
790 errorLocation = data->Cursor();
1028 location = data->Cursor();
1239 location = data->Cursor();
1302 location = data->Cursor();
1330 location = data->Cursor();
1440 location = data->Cursor();
1520 location = data->Cursor();
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
H A DChromeClientHaiku.cpp379 void ChromeClientHaiku::setCursor(const Cursor&) argument
/external/webkit/Source/WebKit/wince/WebCoreSupport/
H A DChromeClientWinCE.cpp358 void ChromeClientWinCE::setCursor(const Cursor&) argument

Completed in 1982 milliseconds

12