HomeSort by relevance Sort by last modified time
    Searched refs:granularity (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollAnimator.cpp 87 ScrollGranularity granularity = e.hasPreciseScrollingDeltas() ? ScrollByPrecisePixel : ScrollByPixel; local
89 ScrollGranularity granularity = ScrollByPixel; local
101 if (e.granularity() == ScrollByPageWheelEvent) {
108 scroll(VerticalScrollbar, granularity, m_scrollableArea->pixelStep(VerticalScrollbar), -deltaY);
112 if (e.granularity() == ScrollByPageWheelEvent) {
119 scroll(HorizontalScrollbar, granularity, m_scrollableArea->pixelStep(HorizontalScrollbar), -deltaX);
ScrollAnimatorNone.cpp 382 ScrollAnimatorNone::Parameters ScrollAnimatorNone::parametersForScrollGranularity(ScrollGranularity granularity) const
384 switch (granularity) {
399 bool ScrollAnimatorNone::scroll(ScrollbarOrientation orientation, ScrollGranularity granularity, float step, float delta)
402 return ScrollAnimator::scroll(orientation, granularity, step, delta);
409 switch (granularity) {
414 parameters = parametersForScrollGranularity(granularity);
417 return ScrollAnimator::scroll(orientation, granularity, step, delta);
422 return ScrollAnimator::scroll(orientation, granularity, step, delta);
ScrollableArea.cpp 111 bool ScrollableArea::scroll(ScrollDirection direction, ScrollGranularity granularity, float delta)
124 switch (granularity) {
143 return scrollAnimator()->scroll(orientation, granularity, step, delta);
  /external/lldb/scripts/Python/interface/
SBInputReader.i 32 lldb::InputReaderGranularity granularity,
  /external/lldb/source/Core/
InputReader.cpp 45 lldb::InputReaderGranularity granularity,
54 m_granularity = granularity;
67 if (end_token != NULL && granularity != eInputReaderGranularityInvalid)
69 if (granularity == eInputReaderGranularityByte)
78 else if (granularity == eInputReaderGranularityWord)
361 InputReader::GranularityAsCString (lldb::InputReaderGranularity granularity)
363 switch (granularity)
373 snprintf(unknown_state_string, sizeof (unknown_state_string), "InputReaderGranularity = %i", granularity);
  /external/chromium_org/third_party/WebKit/Source/core/timing/
MemoryInfo.cpp 103 size_t granularity = nextPowerOfTen / 1000; // We want 3 signficant digits. local
107 bucketSizeList[i] = currentBucketSize - (currentBucketSize % granularity);
115 granularity *= 10;
  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformWheelEvent.h 82 PlatformWheelEvent(IntPoint position, IntPoint globalPosition, float deltaX, float deltaY, float wheelTicksX, float wheelTicksY, PlatformWheelEventGranularity granularity, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey)
90 , m_granularity(granularity)
114 PlatformWheelEventGranularity granularity() const { return m_granularity; } function in class:WebCore::PlatformWheelEvent
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TypingCommand.cpp 78 TypingCommand::TypingCommand(Document& document, ETypingCommand commandType, const String &textToInsert, Options options, TextGranularity granularity, TextCompositionType compositionType)
85 , m_granularity(granularity)
112 void TypingCommand::deleteKeyPressed(Document& document, Options options, TextGranularity granularity)
114 if (granularity == CharacterGranularity) {
122 lastTypingCommand->deleteKeyPressed(granularity, options & KillRing);
128 TypingCommand::create(document, DeleteKey, "", options, granularity)->apply();
131 void TypingCommand::forwardDeleteKeyPressed(Document& document, Options options, TextGranularity granularity)
134 if (granularity == CharacterGranularity) {
139 lastTypingCommand->forwardDeleteKeyPressed(granularity, options & KillRing);
144 TypingCommand::create(document, ForwardDeleteKey, "", options, granularity)->apply()
    [all...]
FrameSelection.cpp 189 void FrameSelection::setNonDirectionalSelectionIfNeeded(const VisibleSelection& passedNewSelection, TextGranularity granularity,
216 setSelection(newSelection, granularity);
219 void FrameSelection::setSelection(const VisibleSelection& newSelection, SetSelectionOptions options, CursorAlignOnScroll align, TextGranularity granularity)
240 document.frame()->selection().setSelection(s, options, align, granularity);
250 m_granularity = granularity;
606 VisiblePosition FrameSelection::modifyExtendingRight(TextGranularity granularity)
615 switch (granularity) {
630 pos = modifyExtendingForward(granularity);
632 pos = modifyExtendingBackward(granularity);
641 pos = modifyExtendingForward(granularity);
    [all...]
TypingCommand.h 81 static PassRefPtrWillBeRawPtr<TypingCommand> create(Document& document, ETypingCommand command, const String& text = "", Options options = 0, TextGranularity granularity = CharacterGranularity)
83 return adoptRefWillBeNoop(new TypingCommand(document, command, text, options, granularity, TextCompositionNone));
FrameSelection.h 107 void setSelection(const VisibleSelection& selection, TextGranularity granularity) { setSelection(selection, CloseTyping | ClearTypingStyle, AlignCursorOnScrollIfNeeded, granularity); }
126 TextGranularity granularity() const { return m_granularity; } function in class:WebCore::FINAL
  /external/lldb/include/lldb/API/
SBInputReader.h 40 lldb::InputReaderGranularity granularity,
  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMSelection.cpp 312 TextGranularity granularity;
314 granularity = CharacterGranularity;
316 granularity = WordGranularity;
318 granularity = SentenceGranularity;
320 granularity = LineGranularity;
322 granularity = ParagraphGranularity;
324 granularity = LineBoundary;
326 granularity = SentenceBoundary;
328 granularity = ParagraphBoundary;
330 granularity = DocumentBoundary
    [all...]
DOMSelection.h 68 void modify(const String& alter, const String& direction, const String& granularity);
  /external/chromium_org/content/renderer/pepper/
ppb_scrollbar_impl.cc 107 WebScrollbar::ScrollGranularity granularity; local
109 granularity = WebScrollbar::ScrollByLine;
111 granularity = WebScrollbar::ScrollByPage;
113 granularity = WebScrollbar::ScrollByDocument;
115 granularity = WebScrollbar::ScrollByPixel;
120 scrollbar_->scroll(direction, granularity, fmultiplier);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
navigation_shifter.js 22 * increasing "granularity". This means (with a few exceptions), that if
28 * Note that while any callers may assume the granularity chain exists (after
91 store['granularity'] = this.getGranularity();
101 this.setGranularity(store['granularity']);
190 * Shift to a specified granularity.
192 * @param {number} granularity The granularity to shift to.
194 cvox.NavigationShifter.prototype.setGranularity = function(granularity) {
196 this.currentWalkerIndex_ = granularity;
201 * Gets the granularity
    [all...]
navigation_manager.js 554 * @param {boolean=} opt_persist Persist the granularity to all running tabs;
566 * @param {boolean=} opt_persist Persist the granularity to all running tabs;
577 * Delegates to navigation shifter. Behavior is not defined if granularity
580 * iterator-like interface. The caller has the option to force granularity
582 * been a shifter entered, setting granularity is a no-op.
583 * @param {number} granularity The desired granularity.
590 granularity, opt_force, opt_persist) {
596 this.shifter_.setGranularity(granularity);
603 * @return {number} The current granularity
    [all...]
  /external/compiler-rt/lib/asan/
asan_poisoning.cc 276 uptr granularity = SHADOW_GRANULARITY; local
278 IsAligned(beg, granularity))) {
286 uptr a = RoundDownTo(Min(old_mid, new_mid), granularity);
287 uptr c = RoundUpTo(Max(old_mid, new_mid), granularity);
288 uptr d1 = RoundDownTo(old_mid, granularity);
289 // uptr d2 = RoundUpTo(old_mid, granularity);
298 if (a + granularity <= d1)
300 // if (d2 + granularity <= c && c <= end)
301 // CHECK_EQ(*(u8 *)MemToShadow(c - granularity),
304 uptr b1 = RoundDownTo(new_mid, granularity);
    [all...]
  /external/lldb/source/API/
SBInputReader.cpp 81 lldb::InputReaderGranularity granularity,
91 "granularity=%s, end_token=\"%s\", prompt=\"%s\", echo=%i)",
96 InputReader::GranularityAsCString (granularity), end_token, prompt,
109 granularity,
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
traverse_content.js 82 * The string constant for character granularity.
89 * The string constant for word granularity.
96 * The string constant for sentence granularity.
103 * The string constant for line granularity.
110 * The string constant for paragraph granularity.
212 * or "paragraph" granularity.
255 window.console.log('Invalid selection granularity: "' + grain + '"');
273 // character granularity), but if it hits whitespace more than once, then
297 * or "paragraph" granularity.
340 window.console.log('Invalid selection granularity: "' + grain + '"')
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/alarms/
alarm_manager.cc 31 const char kAlarmGranularity[] = "granularity";
73 base::GetValueAsTimeDelta(*time_value, &alarm.granularity);
86 base::CreateTimeDeltaValue(alarms[i].granularity));
334 // granularity of any alarm.
347 if (l_it->granularity < min_granularity)
348 min_granularity = l_it->granularity;
443 granularity = base::Time::FromJsTime(js_alarm->scheduled_time) - now;
454 granularity = delay;
457 if (granularity < min_granularity)
458 granularity = min_granularity
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_rt.h 105 long granularity; member in struct:PERF_RT_Private
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_rt.c 136 me->granularity = (config->rt_granularity < 1) ? 1 :
139 me->granularity *= 1000000; /* convert to microsecs */
546 /* see if we passed our granularity */
548 if (steps >= me->granularity)
550 steps /= me->granularity;
558 (me->dRate[i].tn < me->granularity * steps))
568 TIME_INCREASE(me->dRate[i].last_reporting, me->granularity * steps);
578 /* see if we surpassed our granularity. if yes, calculate
585 TIME_INCREASE(me->dRate[i].last_reporting, me->granularity);
721 /* see if we passed our granularity. if yes, calculate uptime *
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/walkers/
abstract_shifter.js 36 * Gets the first (or last) selection for this shifter's current granularity.
81 * Gets the granularity message.
107 * more granular (until either the next granularity shift or
abstract_node_walker.js 107 * it is at the lowest valid level or lower for this granularity.
112 * for this granularity.

Completed in 687 milliseconds

1 2 3 4