Searched refs:cursors (Results 1 - 22 of 22) sorted by relevance

/external/clang/bindings/python/tests/cindex/
H A Dutil.py61 """Obtain all cursors from a source object with a specific spelling.
63 This provides a convenient search mechanism to find all cursors with specific
67 If no cursors are found, an empty list is returned.
69 cursors = []
79 cursors.append(cursor)
82 cursors.extend(get_cursors(cursor, spelling))
84 return cursors
H A Dtest_cursor.py79 cursors = list(tu.cursor.get_children())
80 assert len(cursors) > 0
82 cursor = cursors[0]
97 cursors = []
100 cursors.append(cursor)
102 assert len(cursors) == 3
103 assert cursors[1].canonical == cursors[2].canonical
236 """Ensure we can map cursors back to tokens."""
/external/chromium_org/ui/base/cursor/
H A Dcursors_aura.cc30 const CursorData* cursors; member in struct:ui::__anon15069::CursorSet
80 // The 2x hotspots should be double of the 1x, even though the cursors are
144 // TODO(yoshiki): Replace animated cursors with big assets. crbug.com/247254
189 SearchTable(cursor_set->cursors,
198 return SearchTable(cursor_set->cursors,
/external/chromium_org/webkit/common/
H A Dwebkit_common.target.darwin-mips.mk30 webkit/common/cursors/webcursor.cc \
31 webkit/common/cursors/webcursor_android.cc \
H A Dwebkit_common.target.darwin-x86.mk30 webkit/common/cursors/webcursor.cc \
31 webkit/common/cursors/webcursor_android.cc \
H A Dwebkit_common.target.linux-mips.mk30 webkit/common/cursors/webcursor.cc \
31 webkit/common/cursors/webcursor_android.cc \
H A Dwebkit_common.target.linux-x86.mk30 webkit/common/cursors/webcursor.cc \
31 webkit/common/cursors/webcursor_android.cc \
H A Dwebkit_common.target.darwin-arm.mk30 webkit/common/cursors/webcursor.cc \
31 webkit/common/cursors/webcursor_android.cc \
H A Dwebkit_common.target.linux-arm.mk30 webkit/common/cursors/webcursor.cc \
31 webkit/common/cursors/webcursor_android.cc \
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleResourceLoader.cpp155 if (CursorList* cursorList = style->cursors()) {
H A DStyleBuilderCustom.cpp138 state.style()->setCursorList(state.parentStyle()->cursors());
152 if (image->updateIfSVGCursorIsUsed(state.element())) // Elements with SVG cursors are not allowed to share style.
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderObject.cpp2064 ASSERT(a->cursors() != b->cursors());
2065 return a->cursors() && b->cursors() && *a->cursors() == *b->cursors();
2070 return a->cursor() == b->cursor() && (a->cursors() == b->cursors() || areNonIdenticalCursorListsEqual(a, b));
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSComputedStyleDeclaration.cpp1954 CursorList* cursors = style->cursors(); local
1955 if (cursors && cursors->size() > 0) {
1957 for (unsigned i = 0; i < cursors->size(); ++i)
1958 if (StyleImage* image = cursors->at(i).image())
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DEventHandler.cpp1151 if (style && style->cursors()) {
1152 const CursorList* cursors = style->cursors(); local
1153 for (unsigned i = 0; i < cursors->size(); ++i) {
1154 StyleImage* styleImage = (*cursors)[i].image();
1162 IntPoint hotSpot = (*cursors)[i].hotSpot();
1167 // Limit the size of cursors (in UI pixels) so that they cannot be
3326 // FIXME <rdar://7577595>: Custom cursors aren't supported during drag and drop (default to pointer).
/external/clang/tools/c-index-test/
H A Dc-index-test.c3115 CXCursor *cursors = 0; local
3196 cursors = (CXCursor *)malloc(num_tokens * sizeof(CXCursor));
3197 clang_annotateTokens(TU, tokens, num_tokens, cursors);
3224 if (!clang_isInvalid(cursors[i].kind)) {
3226 PrintCursor(cursors[i], NULL);
3230 free(cursors);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.resources.compatibility_3.4.0.v20090505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/clang/tools/libclang/
H A DCIndex.cpp1410 // "Class") have associated declarations. Create cursors for those.
2413 // treated like DeclRefExpr cursors.
5086 AnnotateTokensWorker(CXToken *tokens, CXCursor *cursors, unsigned numTokens, argument
5088 : Tokens(tokens), Cursors(cursors),
5105 /// \brief Determine whether the annotator saw any cursors that have
5366 // but the child cursors.
5370 // capture by the child cursors.
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.h700 CursorList* cursors() const { return rareInheritedData->cursorData.get(); } function in class:WebCore::RenderStyle

Completed in 391 milliseconds