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

1 2

  /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...]
cursor.h 90 // Ref-counted cursor that supports both default and custom cursors.
91 class UI_BASE_EXPORT Cursor {
93 Cursor();
96 Cursor(int type);
99 Cursor(const Cursor& cursor);
101 ~Cursor();
118 bool operator==(const Cursor& cursor) const
    [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/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/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...]
  /external/llvm/lib/CodeGen/AsmPrinter/
WinCodeViewLineTables.cpp 51 size_t Cursor = 0;
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 + 3 - PrevSlash)
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxmlparser.cpp 177 const TiXmlCursor& Cursor() const { return cursor; }
186 cursor.row = row;
187 cursor.col = col;
190 TiXmlCursor cursor; member in class:TiXmlParsingData
207 int row = cursor.row;
208 int col = cursor.col;
305 cursor.row = row;
306 cursor.col = col;
307 assert( cursor.row >= -1 )
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_backing_store.h 233 class Cursor {
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> OpenIndexKeyCursor
    [all...]
indexed_db_backing_store.cc 751 IndexedDBBackingStore::Cursor::CursorOptions::CursorOptions() {}
752 IndexedDBBackingStore::Cursor::CursorOptions::~CursorOptions() {}
    [all...]
  /external/chromium_org/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...]
  /external/llvm/include/llvm/Support/
GCOV.h 58 GCOVBuffer(MemoryBuffer *B) : Buffer(B), Cursor(0) {}
67 Cursor = 4;
78 Cursor = 4;
84 StringRef VersionStr = Buffer->getBuffer().slice(Cursor, Cursor+4);
86 Cursor += 4;
91 Cursor += 4;
99 /// readFunctionTag - If cursor points to a function tag then increment the
100 /// cursor and return true otherwise return false.
102 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4)
    [all...]
  /external/javassist/src/main/javassist/bytecode/
SignatureAttribute.java 158 static private class Cursor {
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 c, ClassType parent
    [all...]
  /external/clang/bindings/python/clang/
cindex.py 36 Cursor
498 ### Cursor Kinds ###
502 A CursorKind describes the kind of entity that a cursor points to.
523 """Get the enumeration name of this cursor kind."""
534 raise ValueError,'Unknown cursor kind %d' % id
728 # while the type of the variable "size" is referenced. The cursor
1061 # Cursor that represents the translation unit itself.
1063 # The translation unit cursor exists primarily to act as the root cursor for
2294 def cursor(self): member in class:TranslationUnit
2728 def cursor(self): member in class:Token
    [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h 480 llvm::BitstreamCursor &Cursor,
    [all...]

Completed in 395 milliseconds

1 2