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

123

/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dcursor.js9 goog.provide('cvox.Cursor');
27 cvox.Cursor = function(node, index, text) {
34 * @return {!cvox.Cursor} A new cursor pointing to the same location.
36 cvox.Cursor.prototype.clone = function() {
37 return new cvox.Cursor(this.node, this.index, this.text);
42 * @param {!cvox.Cursor} otherCursor The cursor to copy from.
44 cvox.Cursor.prototype.copyFrom = function(otherCursor) {
52 * @param {!cvox.Cursor} rhs The cursor to compare against.
55 cvox.Cursor.prototype.equals = function(rhs) {
/external/chromium_org/ui/base/cursor/
H A Dcursor.cc9 Cursor::Cursor() function in class:ui::Cursor
15 Cursor::Cursor(int type) function in class:ui::Cursor
21 Cursor::Cursor(const Cursor& cursor) function in class:ui::Cursor
29 Cursor::~Cursor() {
34 void Cursor
[all...]
H A Dcursor.h91 class UI_BASE_EXPORT Cursor { class in namespace:ui
93 Cursor();
96 Cursor(int type);
99 Cursor(const Cursor& cursor);
101 ~Cursor();
118 bool operator==(const Cursor& cursor) const {
124 bool operator!=(const Cursor& cursor) const {
130 void operator=(const Cursor& cursor) {
135 void Assign(const Cursor
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_access_specifiers.py3 from clang.cindex import Cursor namespace
H A Dutil.py3 from clang.cindex import Cursor namespace
38 TranslationUnit or Cursor instance.
43 root_cursor = source if isinstance(source, Cursor) else source.cursor
56 TranslationUnit or Cursor instance.
61 root_cursor = source if isinstance(source, Cursor) else source.cursor
H A Dtest_location.py1 from clang.cindex import Cursor namespace
51 cursor = Cursor.from_location(tu, location)
64 cursor = Cursor.from_location(tu, offset_location)
H A Dtest_translation_unit.py6 from clang.cindex import Cursor namespace
28 assert isinstance(c, Cursor)
/external/lldb/source/Plugins/Process/Utility/
H A DUnwindMacOSXFrameBackchain.h53 struct Cursor struct in class:UnwindMacOSXFrameBackchain
60 std::vector<Cursor> m_cursors;
H A DUnwindLLDB.h95 struct Cursor struct in class:lldb_private::UnwindLLDB
102 Cursor () : start_pc (LLDB_INVALID_ADDRESS), cfa (LLDB_INVALID_ADDRESS), sctx(), reg_ctx_lldb_sp() { } function in struct:lldb_private::UnwindLLDB::Cursor
104 DISALLOW_COPY_AND_ASSIGN (Cursor);
107 typedef std::shared_ptr<Cursor> CursorSP;
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_scanner.cc27 AutofillField* AutofillScanner::Cursor() const { function in class:autofill::AutofillScanner
/external/chromium_org/ui/events/x/
H A Dtouch_factory_x11.h20 typedef unsigned long Cursor; typedef
/external/chromium_org/ui/accessibility/extensions/caretbrowsing/
H A Dtraverse_util.js27 Cursor = function(node, index, text) {
34 * @return {Cursor} A new cursor pointing to the same location.
36 Cursor.prototype.clone = function() {
37 return new Cursor(this.node, this.index, this.text);
42 * @param {Cursor} otherCursor The cursor to copy from.
44 Cursor.prototype.copyFrom = function(otherCursor) {
105 * @param {Cursor} start The desired start of the selection.
106 * @param {Cursor} end The desired end of the selection.
150 * @param {Cursor} cursor The cursor location where the search should start.
232 * @param {Cursor} curso
0 Cursor = function(node, index, text) { class
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DCursor.cpp27 #include "platform/Cursor.h"
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:
63 case Cursor
145 Cursor::Cursor(Image* image, const IntPoint& hotSpot) function in class:blink::Cursor
153 Cursor::Cursor(Image* image, const IntPoint& hotSpot, float scale) function in class:blink::Cursor
161 Cursor::Cursor(Type type) function in class:blink::Cursor
167 Cursor::Cursor(const Cursor& other) function in class:blink::Cursor
[all...]
H A DCursor.h37 class PLATFORM_EXPORT Cursor { class in namespace:blink
87 static const Cursor& fromType(Cursor::Type);
89 Cursor() function in class:blink::Cursor
90 // This is an invalid Cursor and should never actually get used.
95 Cursor(Image*, const IntPoint& hotSpot);
98 Cursor(Image*, const IntPoint& hotSpot, float imageScaleFactor);
100 Cursor(const Cursor&);
101 ~Cursor();
[all...]
/external/llvm/lib/CodeGen/
H A DInterferenceCache.h48 /// RefCount - The total number of Cursor instances referring to this Entry.
170 /// Cursor - The primary query interface for the block interference cache.
171 class Cursor { class in class:llvm::InterferenceCache
188 /// Cursor - Create a dangling cursor.
189 Cursor() : CacheEntry(nullptr), Current(nullptr) {} function in class:llvm::InterferenceCache::Cursor
190 ~Cursor() { setEntry(nullptr); }
192 Cursor(const Cursor &O) : CacheEntry(nullptr), Current(nullptr) { function in class:llvm::InterferenceCache::Cursor
196 Cursor &operator=(const Cursor
[all...]
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_syswm.h55 #define Cursor X11Cursor macro
63 #undef Cursor macro
/external/chromium_org/ui/base/x/
H A Dx11_util.h27 typedef unsigned long Cursor; typedef
63 // Returns an X11 Cursor, sharable across the process.
65 UI_BASE_EXPORT ::Cursor GetXCursor(int cursor_shape);
70 UI_BASE_EXPORT ::Cursor CreateReffedCustomXCursor(XcursorImage* image);
73 UI_BASE_EXPORT void RefCustomXCursor(::Cursor cursor);
76 UI_BASE_EXPORT void UnrefCustomXCursor(::Cursor cursor);
93 UI_BASE_EXPORT ::Cursor CreateInvisibleCursor();
348 XScopedCursor(::Cursor cursor, XDisplay* display);
351 ::Cursor get() const;
352 void reset(::Cursor curso
[all...]
/external/clang/tools/libclang/
H A DCIndexHigh.cpp309 static bool findMacroRefsInFile(CXTranslationUnit TU, CXCursor Cursor, argument
312 if (Cursor.kind != CXCursor_MacroDefinition &&
313 Cursor.kind != CXCursor_MacroExpansion)
321 if (Cursor.kind == CXCursor_MacroDefinition)
322 Macro = getCursorMacroDefinition(Cursor)->getName();
324 Macro = getCursorMacroExpansion(Cursor).getName();
/external/llvm/lib/CodeGen/AsmPrinter/
H A DWinCodeViewLineTables.cpp51 size_t Cursor = 0; local
52 while ((Cursor = Filepath.find("\\.\\", Cursor)) != std::string::npos)
53 Filepath.erase(Cursor, 2);
57 Cursor = 0;
58 while ((Cursor = Filepath.find("\\..\\", Cursor)) != std::string::npos) {
60 if (Cursor == 0)
63 size_t PrevSlash = Filepath.rfind('\\', Cursor - 1);
68 Filepath.erase(PrevSlash, Cursor
[all...]
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_backing_store.h233 class Cursor { class in class:content::IndexedDBBackingStore
237 virtual ~Cursor();
267 virtual Cursor* Clone() = 0;
274 Cursor(scoped_refptr<IndexedDBBackingStore> backing_store,
278 explicit Cursor(const IndexedDBBackingStore::Cursor* other);
296 DISALLOW_COPY_AND_ASSIGN(Cursor);
472 virtual scoped_ptr<Cursor> OpenObjectStoreKeyCursor(
479 virtual scoped_ptr<Cursor> OpenObjectStoreCursor(
486 virtual scoped_ptr<Cursor> OpenIndexKeyCurso
[all...]
/external/chromium_org/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/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
H A Dtinyxmlparser.cpp177 const TiXmlCursor& Cursor() const { return cursor; } function in class:TiXmlParsingData
732 location = data.Cursor();
813 errorLocation = data->Cursor();
1057 location = data->Cursor();
1283 location = data->Cursor();
1347 location = data->Cursor();
1400 location = data->Cursor();
1505 location = data->Cursor();
1586 location = data->Cursor();
/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/sfntly/cpp/src/test/tinyxml/
H A Dtinyxmlparser.cpp177 const TiXmlCursor& Cursor() const { return cursor; } function in class:TiXmlParsingData
732 location = data.Cursor();
813 errorLocation = data->Cursor();
1057 location = data->Cursor();
1283 location = data->Cursor();
1347 location = data->Cursor();
1400 location = data->Cursor();
1505 location = data->Cursor();
1586 location = data->Cursor();
/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();

Completed in 8676 milliseconds

123