HomeSort by relevance Sort by last modified time
    Searched refs:Granularity (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/WebCore/dom/
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;
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),
  /external/valgrind/main/none/tests/x86-linux/
seg_override.c 31 unsigned Granularity : 1;
46 if (ent->HighWord.Bits.Granularity) limit = (limit << 12) | 0xfff;
  /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
WebWheelEvent.cpp 36 WebWheelEvent::WebWheelEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const FloatSize& delta, const FloatSize& wheelTicks, Granularity granularity, Modifiers modifiers, double timestamp)
42 , m_granularity(granularity)
52 WebWheelEvent::WebWheelEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const FloatSize& delta, const FloatSize& wheelTicks, Granularity granularity, Phase phase, Phase momentumPhase, bool hasPreciseScrollingDeltas, Modifiers modifiers, double timestamp)
58 , m_granularity(granularity)
  /external/valgrind/main/VEX/pub/
libvex_guest_x86.h 254 UInt Granularity : 1;
  /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/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 353 size_t Granularity = 1 << MappingScale;
354 if (TypeSize < 8 * Granularity) {
355 // Addr & (Granularity - 1)
357 AddrLong, ConstantInt::get(IntptrTy, Granularity - 1));
358 // (Addr & (Granularity - 1)) + size - 1
361 // (uint8_t) ((Addr & (Granularity-1)) + size - 1)
364 // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue
    [all...]
  /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);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-commons-net.jar 
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-x86-linux.c 727 info->limit_in_pages = gdt[idx].LdtEnt.Bits.Granularity;
    [all...]
syswrap-darwin.c     [all...]
  /external/valgrind/main/VEX/priv/
guest_x86_helpers.c     [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...]

Completed in 1480 milliseconds