Searched defs:cursor (Results 376 - 400 of 439) sorted by relevance

<<1112131415161718

/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_host_impl.cc1117 void RenderWidgetHostImpl::SetCursor(const WebCursor& cursor) { argument
1120 view_->UpdateCursor(cursor);
1679 void RenderWidgetHostImpl::OnSetCursor(const WebCursor& cursor) { argument
1680 SetCursor(cursor);
H A Drender_widget_host_view_android.cc610 void RenderWidgetHostViewAndroid::UpdateCursor(const WebCursor& cursor) { argument
H A Drender_widget_host_view_aura.cc110 // In mouse lock mode, we need to prevent the (invisible) cursor from hitting
112 // forcing the cursor back to the center of the view after each mouse move
114 // significantly. Therefore, we move the cursor to the center of the view only
838 void RenderWidgetHostViewAura::UpdateCursor(const WebCursor& cursor) { argument
839 current_cursor_ = cursor;
1025 // Clip the cursor if chrome is running on regular desktop.
2306 gfx::NativeCursor cursor = current_cursor_.GetNativeCursor();
2307 // Do not show loading cursor when the cursor is currently hidden.
2308 if (is_loading_ && cursor !
[all...]
/external/chromium_org/content/renderer/
H A Drender_widget.cc1351 WebCursor cursor; local
1352 InitializeCursorFromWebKitCursorInfo(&cursor, cursor_info);
1354 if (!current_cursor_.IsEqual(cursor)) {
1355 current_cursor_ = cursor;
1356 Send(new ViewHostMsg_SetCursor(routing_id_, cursor));
H A Drender_frame_impl.cc532 const blink::WebCursorInfo& cursor) {
533 // Update the cursor appearance immediately if the requesting plugin is the
534 // one which receives the last mouse event. Otherwise, the new cursor won't be
536 // the plugin would like to set an invisible cursor when there isn't any user
539 GetRenderWidget()->didChangeCursor(cursor);
530 PepperDidChangeCursor( PepperPluginInstanceImpl* instance, const blink::WebCursorInfo& cursor) argument
/external/chromium_org/pdf/
H A Dout_of_process_instance.cc861 void OutOfProcessInstance::UpdateCursor(PP_CursorType_Dev cursor) { argument
862 if (cursor == cursor_)
864 cursor_ = cursor;
/external/chromium_org/third_party/freetype/include/freetype/internal/
H A Dtttypes.h904 /* The stream cursor must be at the font file's origin. */
1055 /* loader to position a stream's cursor to */
1429 FT_Byte* cursor; member in struct:TT_LoaderRec_
/external/chromium_org/third_party/icu/source/i18n/
H A Ddtptngen.cpp64 int32_t cursor; member in struct:UResourceBundleAIterator
86 aiter->cursor = 0;
116 UResourceBundle *item = aiter->entries[aiter->cursor].item;
119 aiter->cursor++;
/external/chromium_org/ui/gfx/
H A Drender_text.cc39 // Default color used for the text and cursor.
525 SelectionModel cursor(cursor_position(), selection_model_.caret_affinity());
530 int cursor_x = GetCursorBounds(cursor, true).x();
534 cursor = selection_start;
537 cursor = GetAdjacentSelectionModel(cursor, break_type, direction);
538 // Use an adjacent selection model if the cursor is not at a valid position.
539 if (!IsValidCursorIndex(cursor.caret_pos()))
540 cursor = GetAdjacentSelectionModel(cursor, CHARACTER_BREA
1144 size_t cursor = std::min(position, text().length()); local
[all...]
/external/chromium_org/v8/src/
H A Disolate.cc366 int cursor = 1; local
385 if (cursor + 4 > elements->length()) {
389 for (int i = 0; i < cursor; i++) {
394 DCHECK(cursor + 4 <= elements->length());
410 elements->set(cursor++, *recv);
411 elements->set(cursor++, *fun);
412 elements->set(cursor++, *code);
413 elements->set(cursor++, *offset);
419 result->set_length(Smi::FromInt(cursor));
H A Dheap-snapshot-generator.cc3111 unsigned length = 1, cursor = 0; local
3113 unibrow::uchar c = unibrow::Utf8::CalculateValue(s, length, &cursor);
3116 DCHECK(cursor != 0);
3117 s += cursor - 1;
/external/freetype/include/internal/
H A Dtttypes.h973 /* The stream cursor must be at the font file's origin. */
1138 /* loader to position a stream's cursor to */
1505 FT_Byte* cursor; member in struct:TT_LoaderRec_
/external/icu/icu4c/source/i18n/
H A Ddtptngen.cpp64 int32_t cursor; member in struct:UResourceBundleAIterator
86 aiter->cursor = 0;
116 UResourceBundle *item = aiter->entries[aiter->cursor].item;
119 aiter->cursor++;
/external/libmtp/src/
H A Dptp.c4740 int begin, end, cursor; local
4757 cursor = (end-begin)/2+begin;
4758 /*ptp_debug (params, "ob %d: %08x [%d-%d]", cursor, params->objects[cursor].oid, begin, end);*/
4759 if (params->objects[cursor].oid == handle) {
4760 *retob = &params->objects[cursor];
4763 if (params->objects[cursor].oid < handle)
4764 begin = cursor;
4766 end = cursor;
/external/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1895 // The cursor is in the first argument, so just do a lookup in the dictionary.
1943 const char *cursor,
1949 // We parse the argument up to the cursor, so the last argument in parsed_line is
1950 // the one containing the cursor, and the cursor is after the last character.
1953 Args partial_parsed_line(current_line, cursor - current_line);
1987 if (cursor > current_line && cursor[-1] == ' ')
1942 HandleCompletion(const char *current_line, const char *cursor, const char *last_char, int match_start_point, int max_return_elements, StringList &matches) argument
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.cpp630 lldb::addr_t cursor = load_addr + m_process->GetAddressByteSize(); local
633 m_count = m_process->ReadUnsignedIntegerFromMemory(cursor, unsigned_byte_size, 0, err);
636 cursor += unsigned_byte_size;
639 m_num_buckets_minus_one = m_process->ReadUnsignedIntegerFromMemory(cursor, unsigned_byte_size, 0, err);
640 cursor += unsigned_byte_size;
643 m_buckets_ptr = m_process->ReadPointerFromMemory(cursor, err);
1085 lldb::offset_t cursor = 0; local
1087 m_isa = extractor.GetAddress_unchecked(&cursor); // uintptr_t isa;
1088 m_superclass = extractor.GetAddress_unchecked(&cursor); // Class superclass;
1089 m_cache_ptr = extractor.GetAddress_unchecked(&cursor); // voi
1144 lldb::offset_t cursor = 0; local
1215 lldb::offset_t cursor = 0; local
1251 lldb::offset_t cursor = 0; local
1294 lldb::offset_t cursor = 0; local
1337 lldb::offset_t cursor = 0; local
1384 lldb::offset_t cursor = 0; local
[all...]
/external/pdfium/core/include/thirdparties/freetype/freetype/internal/
H A Dtttypes.h904 /* The stream cursor must be at the font file's origin. */
1055 /* loader to position a stream's cursor to */
1429 FT_Byte* cursor; member in struct:TT_LoaderRec_
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/
H A Dtttypes.h904 /* The stream cursor must be at the font file's origin. */
1055 /* loader to position a stream's cursor to */
1429 FT_Byte* cursor; member in struct:TT_LoaderRec_
/external/chromium_org/content/renderer/pepper/
H A Dpepper_plugin_instance_impl.cc323 // PP_CURSORTYPE_CUSTOM is pinned to allow new cursor types.
1449 // providing us with the link under the cursor eagerly.
2806 // Make a deep copy, so that the cursor remains valid even after the original
3140 void PepperPluginInstanceImpl::DoSetCursor(WebCursorInfo* cursor) { argument
3141 cursor_.reset(cursor);
3143 fullscreen_container_->DidChangeCursor(*cursor);
3145 render_frame_->PepperDidChangeCursor(this, *cursor);
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameView.cpp3071 void FrameView::setCursor(const Cursor& cursor) argument
3076 page->chrome().setCursor(cursor);
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DEventHandler.cpp122 // The amount of time to wait for a cursor update on style and layout changes
130 // dividing cursor sizes (limited above) by the scale.
148 OptionalCursor(const Cursor& cursor) : m_isCursorChange(true), m_cursor(cursor) { } argument
151 const Cursor& cursor() const { ASSERT(m_isCursorChange); return m_cursor; } function in class:blink::OptionalCursor
1018 m_currentMouseCursor = optionalCursor.cursor();
1085 switch (style ? style->cursor() : CURSOR_AUTO) {
1467 m_currentMouseCursor = optionalCursor.cursor();
2881 // Don't dispatch a synthetic mouse move event if the mouse cursor is not visible to the user.
3249 // We are starting a text/image/url drag, so the cursor shoul
[all...]
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.cpp1936 Cursor cursor = document->frame()->eventHandler().currentMouseCursor(); local
1940 result.append(cursorTypeToString(cursor.type()));
1942 result.appendNumber(cursor.hotSpot().x());
1944 result.appendNumber(cursor.hotSpot().y());
1945 if (cursor.image()) {
1946 IntSize size = cursor.image()->size();
1952 if (cursor.imageScaleFactor() != 1) {
1955 result.append(numberToFixedPrecisionString(cursor.imageScaleFactor(), 8, buffer, true));
/external/chromium_org/ui/views/win/
H A Dhwnd_message_handler.cc261 // location as the cursor.
786 void HWNDMessageHandler::SetCursor(HCURSOR cursor) { argument
787 if (cursor) {
788 previous_cursor_ = ::SetCursor(cursor);
789 current_cursor_ = cursor;
1541 // current cursor location. We check for this property in our
1971 wchar_t* cursor = IDC_ARROW; local
1974 cursor = IDC_SIZENWSE;
1978 cursor = IDC_SIZEWE;
1982 cursor
[all...]
/external/chromium_org/pdf/pdfium/
H A Dpdfium_engine.cc1452 PP_CursorType_Dev cursor; local
1455 cursor = PP_CURSORTYPE_IBEAM;
1459 cursor = PP_CURSORTYPE_HAND;
1463 cursor = PP_CURSORTYPE_POINTER;
1481 cursor = PP_CURSORTYPE_HAND;
1484 cursor = PP_CURSORTYPE_IBEAM;
1491 client_->UpdateCursor(cursor);
3012 // We don't need this since it's not enough to change the cursor in all
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCSSMetadata.js107 "azimuth", "border-collapse", "border-spacing", "caption-side", "color", "cursor", "direction", "elevation",
254 "cursor": { values: [
794 "cursor": 34,

Completed in 2500 milliseconds

<<1112131415161718