HomeSort by relevance Sort by last modified time
    Searched defs:granularity (Results 1 - 21 of 21) sorted by null

  /external/webkit/Source/WebCore/dom/
WheelEvent.cpp 44 Granularity granularity, PassRefPtr<AbstractView> view,
54 , m_granularity(granularity)
98 inline static WheelEvent::Granularity granularity(const PlatformWheelEvent& event) function in namespace:WebCore
100 return event.granularity() == ScrollByPageWheelEvent ? WheelEvent::Page : WheelEvent::Pixel;
108 setEvent(WheelEvent::create(event.wheelTicksX(), event.wheelTicksY(), event.deltaX(), event.deltaY(), granularity(event),
WheelEvent.h 34 enum Granularity { Pixel, Line, Page };
41 float rawDeltaX, float rawDeltaY, Granularity granularity, PassRefPtr<AbstractView> view,
46 granularity, view, screenX, screenY, pageX, pageY,
63 Granularity granularity() const { return m_granularity; } function in class:WebCore::WheelEvent
71 Granularity granularity, PassRefPtr<AbstractView>,
82 Granularity m_granularity;
  /external/webkit/Source/WebKit2/Shared/qt/
WebEventFactoryQt.cpp 118 WebWheelEvent::Granularity granularity = WebWheelEvent::ScrollByPixelWheelEvent; local
143 return WebWheelEvent(WebEvent::Wheel, e->pos().toPoint(), e->screenPos(), FloatSize(deltaX, deltaY), FloatSize(wheelTicksX, wheelTicksY), granularity, modifiers, timestamp);
  /external/webkit/Source/WebCore/platform/
PlatformWheelEvent.h 118 PlatformWheelEventGranularity granularity() const { return m_granularity; } function in class:WebCore::PlatformWheelEvent
  /external/webkit/Source/WebKit2/Shared/win/
WebEventFactory.cpp 407 WebWheelEvent::Granularity granularity = WebWheelEvent::ScrollByPixelWheelEvent; local
430 granularity = WebWheelEvent::ScrollByPixelWheelEvent;
436 granularity = WebWheelEvent::ScrollByPageWheelEvent;
438 granularity = WebWheelEvent::ScrollByPixelWheelEvent;
443 return WebWheelEvent(WebEvent::Wheel, position, globalPosition, FloatSize(deltaX, deltaY), FloatSize(wheelTicksX, wheelTicksY), granularity, modifiers, timestamp);
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_rt.h 105 long granularity; member in struct:PERF_RT_Private
  /external/webkit/Source/WebCore/editing/
SelectionController.h 80 void setSelection(const VisibleSelection& selection, TextGranularity granularity, DirectionalityPolicy directionality = MakeDirectionalSelection) { setSelection(selection, CloseTyping | ClearTypingStyle, AlignCursorOnScrollIfNeeded, granularity, directionality); }
96 TextGranularity granularity() const { return m_granularity; } function in class:WebCore::SelectionController
  /external/qemu/block/
vmdk.c 37 uint32_t granularity; member in struct:__anon9534
50 int64_t granularity; member in struct:__anon9535
281 gt_size = (int64_t)header.num_gtes_per_gte * header.granularity * SECTOR_SIZE;
377 s->cluster_sectors = le32_to_cpu(header.granularity);
390 s->cluster_sectors = le64_to_cpu(header.granularity);
723 header.granularity = cpu_to_le64(128);
726 grains = (total_size + header.granularity - 1) / header.granularity;
737 header.granularity - 1) / header.granularity) *
    [all...]
  /external/quake/quake/src/WinQuake/
vid_ext.cpp 78 int granularity; // how finely i can set the window in vid mem (+4) member in struct:__anon10929
532 modeinfo.granularity = *(short*)(infobuf+4) * 1024;
560 printf(" win granularity = %d\n", modeinfo.granularity);
  /external/webkit/Source/WebKit2/Shared/
WebEvent.h 160 enum Granularity {
178 WebWheelEvent(Type, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, const WebCore::FloatSize& delta, const WebCore::FloatSize& wheelTicks, Granularity, Modifiers, double timestamp);
180 WebWheelEvent(Type, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, const WebCore::FloatSize& delta, const WebCore::FloatSize& wheelTicks, Granularity, Phase phase, Phase momentumPhase,bool hasPreciseScrollingDeltas, Modifiers, double timestamp);
187 Granularity granularity() const { return static_cast<Granularity>(m_granularity); } function in class:WebKit::WebWheelEvent
204 uint32_t m_granularity; // Granularity
  /external/bluetooth/glib/glib/
gmain.c 184 guint granularity; member in struct:_GTimeoutSource
    [all...]
  /external/webkit/Source/WebKit/efl/ewk/
ewk_frame.cpp 1526 WebCore::ScrollGranularity granularity; local
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebpage.cpp 1267 ScrollGranularity granularity; local
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
WebView.cpp 445 ScrollGranularity granularity; local
448 granularity = ScrollByLine;
452 granularity = ScrollByLine;
456 granularity = ScrollByDocument;
460 granularity = ScrollByDocument;
468 m_page->scrollBy(direction, granularity);
477 ScrollGranularity granularity; local
480 granularity = ScrollByLine;
484 granularity = ScrollByLine;
488 granularity = ScrollByDocument
    [all...]
  /external/webkit/Source/WebCore/page/
EventHandler.cpp 137 static inline bool scrollNode(float delta, WheelEvent::Granularity granularity, ScrollDirection positiveDirection, ScrollDirection negativeDirection, Node* node, Node** stopNode)
150 if (granularity == WheelEvent::Page)
153 if (granularity == WheelEvent::Line)
156 if (granularity == WheelEvent::Pixel)
276 static void setNonDirectionalSelectionIfNeeded(SelectionController* selection, const VisibleSelection& newSelection, TextGranularity granularity)
280 selection->setSelection(newSelection, granularity, MakeNonDirectionalSelection);
290 TextGranularity granularity = CharacterGranularity; local
297 granularity = WordGranularity;
303 setNonDirectionalSelectionIfNeeded(m_frame->selection(), newSelection, granularity);
321 TextGranularity granularity = CharacterGranularity; local
365 TextGranularity granularity = CharacterGranularity; local
407 TextGranularity granularity = CharacterGranularity; local
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.cpp 1317 TextGranularity granularity = selection.isRange() ? WordGranularity : CharacterGranularity; local
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebview.cpp 1282 ScrollGranularity granularity; local
    [all...]
  /bionic/libc/bionic/
dlmalloc.c 2126 size_t granularity; member in struct:malloc_params
    [all...]
  /external/libffi/src/
dlmalloc.c 2046 size_t granularity; member in struct:malloc_params
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_malloc.c 2056 size_t granularity; member in struct:malloc_params
    [all...]
  /prebuilt/common/ant/
ant.jar 

Completed in 854 milliseconds