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

1 2 3 4

  /external/chromium_org/ui/base/cursor/
cursor.cc 5 #include "ui/base/cursor/cursor.h"
9 Cursor::Cursor()
15 Cursor::Cursor(int type)
21 Cursor::Cursor(const Cursor& cursor)
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
cursor.js 6 * @fileoverview Simple class to represent a cursor location in the document.
9 goog.provide('cvox.Cursor');
12 * A class to represent a cursor location in the document,
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);
41 * Modify this cursor to point to the location that another cursor points to
    [all...]
  /external/clang/bindings/python/tests/cindex/
test_access_specifiers.py 3 from clang.cindex import Cursor
26 public = get_cursor(tu.cursor, "public_member_function")
29 protected = get_cursor(tu.cursor, "protected_member_function")
32 private = get_cursor(tu.cursor, "private_member_function")
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 root_cursor = source if isinstance(source, Cursor) else source.cursor
45 for cursor in root_cursor.walk_preorder():
46 if cursor.spelling == spelling:
47 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 6 from clang.cindex import Cursor
27 c = tu.cursor
28 assert isinstance(c, Cursor)
34 spellings = [c.spelling for c in tu.cursor.get_children()]
42 spellings = [c.spelling for c in tu.cursor.get_children()]
57 spellings = [c.spelling for c in tu.cursor.get_children()]
65 spellings = [c.spelling for c in tu.cursor.get_children()]
  /external/chromium_org/components/autofill/core/browser/
autofill_scanner.cc 27 AutofillField* AutofillScanner::Cursor() const {
  /external/lldb/source/Plugins/Process/Utility/
UnwindMacOSXFrameBackchain.h 53 struct Cursor
60 std::vector<Cursor> m_cursors;
UnwindLLDB.h 95 struct Cursor
102 Cursor () : start_pc (LLDB_INVALID_ADDRESS), cfa (LLDB_INVALID_ADDRESS), sctx(), reg_ctx_lldb_sp() { }
104 DISALLOW_COPY_AND_ASSIGN (Cursor);
107 typedef std::shared_ptr<Cursor> CursorSP;
  /external/chromium_org/ui/events/x/
touch_factory_x11.h 20 typedef unsigned long Cursor;
  /external/chromium_org/ui/accessibility/extensions/caretbrowsing/
traverse_util.js 13 * A class to represent a cursor location in the document,
27 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);
41 * Modify this cursor to point to the location that another cursor points to.
42 * @param {Cursor} otherCursor The cursor to copy from
    [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/chromium_org/third_party/WebKit/Source/platform/
Cursor.cpp 27 #include "platform/Cursor.h"
36 // Hot spot must be inside cursor rectangle.
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
    [all...]
Cursor.h 37 class PLATFORM_EXPORT Cursor {
87 static const Cursor& fromType(Cursor::Type);
89 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/
InterferenceCache.h 48 /// 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 {
188 /// Cursor - Create a dangling cursor.
189 Cursor() : CacheEntry(nullptr), Current(nullptr) {}
190 ~Cursor() { setEntry(nullptr); }
192 Cursor(const Cursor &O) : CacheEntry(nullptr), Current(nullptr) {
196 Cursor &operator=(const Cursor &O)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_syswm.h 55 #define Cursor X11Cursor
63 #undef Cursor
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/extensions/
xtestproto.h 34 #define Cursor CARD32
71 Cursor cursor B32;
122 #undef Cursor
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
xtestproto.h 34 #define Cursor CARD32
71 Cursor cursor B32;
122 #undef Cursor
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
regression.py 37 cur = self.con.cursor()
44 cur = self.con.cursor()
55 cursors = [con.cursor() for x in xrange(5)]
66 cur = self.con.cursor()
82 cur = con.cursor()
162 Verifies that cursor methods check wether base class __init__ was called.
164 class Cursor(sqlite.Cursor):
169 cur = Cursor(con)
188 cur = con.cursor()
201 def cursor(self): member in class:RegressionTests.CheckCursorRegistration.Connection
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
regression.py 37 cur = self.con.cursor()
44 cur = self.con.cursor()
55 cursors = [con.cursor() for x in xrange(5)]
66 cur = self.con.cursor()
82 cur = con.cursor()
162 Verifies that cursor methods check wether base class __init__ was called.
164 class Cursor(sqlite.Cursor):
169 cur = Cursor(con)
188 cur = con.cursor()
201 def cursor(self): member in class:RegressionTests.CheckCursorRegistration.Connection
    [all...]
  /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/chromium_org/ui/base/x/
x11_util.h 27 typedef unsigned long Cursor;
63 // Returns an X11 Cursor, sharable across the process.
64 // |cursor_shape| is an X font cursor shape, see XCreateFontCursor().
65 UI_BASE_EXPORT ::Cursor GetXCursor(int cursor_shape);
67 // Creates a custom X cursor from the image. This takes ownership of image. The
69 // cursor is set to 1.
70 UI_BASE_EXPORT ::Cursor CreateReffedCustomXCursor(XcursorImage* image);
72 // Increases the refcount of the custom cursor.
73 UI_BASE_EXPORT void RefCustomXCursor(::Cursor cursor);
    [all...]

Completed in 1000 milliseconds

1 2 3 4