Home
last modified time | relevance | path

Searched refs:granularity (Results 1 – 25 of 71) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/editing/
DTypingCommand.cpp76 …mandType, const String &textToInsert, Options options, TextGranularity granularity, TextCompositio… in TypingCommand() argument
83 , m_granularity(granularity) in TypingCommand()
110 …d TypingCommand::deleteKeyPressed(Document& document, Options options, TextGranularity granularity) in deleteKeyPressed() argument
112 if (granularity == CharacterGranularity) { in deleteKeyPressed()
120 lastTypingCommand->deleteKeyPressed(granularity, options & KillRing); in deleteKeyPressed()
126 TypingCommand::create(document, DeleteKey, "", options, granularity)->apply(); in deleteKeyPressed()
129 …gCommand::forwardDeleteKeyPressed(Document& document, Options options, TextGranularity granularity) in forwardDeleteKeyPressed() argument
132 if (granularity == CharacterGranularity) { in forwardDeleteKeyPressed()
137 lastTypingCommand->forwardDeleteKeyPressed(granularity, options & KillRing); in forwardDeleteKeyPressed()
142 TypingCommand::create(document, ForwardDeleteKey, "", options, granularity)->apply(); in forwardDeleteKeyPressed()
[all …]
DFrameSelection.cpp191 …rectionalSelectionIfNeeded(const VisibleSelection& passedNewSelection, TextGranularity granularity, in setNonDirectionalSelectionIfNeeded() argument
218 setSelection(newSelection, granularity); in setNonDirectionalSelectionIfNeeded()
221 … newSelection, SetSelectionOptions options, CursorAlignOnScroll align, TextGranularity granularity) in setSelection() argument
242 document.frame()->selection().setSelection(s, options, align, granularity); in setSelection()
252 m_granularity = granularity; in setSelection()
604 VisiblePosition FrameSelection::modifyExtendingRight(TextGranularity granularity) in modifyExtendingRight() argument
613 switch (granularity) { in modifyExtendingRight()
628 pos = modifyExtendingForward(granularity); in modifyExtendingRight()
630 pos = modifyExtendingBackward(granularity); in modifyExtendingRight()
639 pos = modifyExtendingForward(granularity); in modifyExtendingRight()
[all …]
DVisibleSelection.cpp197 bool VisibleSelection::expandUsingGranularity(TextGranularity granularity) in expandUsingGranularity() argument
202 validate(granularity); in expandUsingGranularity()
279 …VisibleSelection::setStartAndEndFromBaseAndExtentRespectingGranularity(TextGranularity granularity) in setStartAndEndFromBaseAndExtentRespectingGranularity() argument
289 switch (granularity) { in setStartAndEndFromBaseAndExtentRespectingGranularity()
419 void VisibleSelection::validate(TextGranularity granularity) in validate() argument
422 setStartAndEndFromBaseAndExtentRespectingGranularity(granularity); in validate()
DTypingCommand.h81 …command, const String& text = "", Options options = 0, TextGranularity granularity = CharacterGran…
83 …return adoptRef(new TypingCommand(document, command, text, options, granularity, TextCompositionNo…
DFrameSelection.h98 …ion, TextGranularity granularity) { setSelection(selection, CloseTyping | ClearTypingStyle, AlignC… in setSelection() argument
117 TextGranularity granularity() const { return m_granularity; } in granularity() function
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
DScrollAnimator.cpp89 …ScrollGranularity granularity = e.hasPreciseScrollingDeltas() ? ScrollByPrecisePixel : ScrollByPix… in handleWheelEvent() local
91 ScrollGranularity granularity = ScrollByPixel; in handleWheelEvent() local
103 if (e.granularity() == ScrollByPageWheelEvent) { in handleWheelEvent()
110 … scroll(VerticalScrollbar, granularity, m_scrollableArea->pixelStep(VerticalScrollbar), -deltaY); in handleWheelEvent()
114 if (e.granularity() == ScrollByPageWheelEvent) { in handleWheelEvent()
121 …scroll(HorizontalScrollbar, granularity, m_scrollableArea->pixelStep(HorizontalScrollbar), -deltaX… in handleWheelEvent()
DScrollAnimatorNone.cpp381 …:Parameters ScrollAnimatorNone::parametersForScrollGranularity(ScrollGranularity granularity) const in parametersForScrollGranularity()
383 switch (granularity) { in parametersForScrollGranularity()
398 bool ScrollAnimatorNone::scroll(ScrollbarOrientation orientation, ScrollGranularity granularity, fl… in scroll() argument
401 return ScrollAnimator::scroll(orientation, granularity, step, multiplier); in scroll()
408 switch (granularity) { in scroll()
413 parameters = parametersForScrollGranularity(granularity); in scroll()
416 return ScrollAnimator::scroll(orientation, granularity, step, multiplier); in scroll()
421 return ScrollAnimator::scroll(orientation, granularity, step, multiplier); in scroll()
DScrollableArea.cpp102 bool ScrollableArea::scroll(ScrollDirection direction, ScrollGranularity granularity, float multipl… in scroll() argument
115 switch (granularity) { in scroll()
134 return scrollAnimator()->scroll(orientation, granularity, step, multiplier); in scroll()
/external/chromium_org/third_party/WebKit/Source/core/page/
DDOMSelection.cpp316 TextGranularity granularity; in modify() local
318 granularity = CharacterGranularity; in modify()
320 granularity = WordGranularity; in modify()
322 granularity = SentenceGranularity; in modify()
324 granularity = LineGranularity; in modify()
326 granularity = ParagraphGranularity; in modify()
328 granularity = LineBoundary; in modify()
330 granularity = SentenceBoundary; in modify()
332 granularity = ParagraphBoundary; in modify()
334 granularity = DocumentBoundary; in modify()
[all …]
DEventHandler.cpp258 static inline bool scrollNode(float delta, ScrollGranularity granularity, ScrollDirection direction… in scrollNode() argument
271 if (curBox->scroll(physicalDirection, granularity, delta)) { in scrollNode()
439 …tchingSelectStart(Node* targetNode, const VisibleSelection& selection, TextGranularity granularity) in updateSelectionForMouseDownDispatchingSelectStart() argument
450 granularity = CharacterGranularity; in updateSelectionForMouseDownDispatchingSelectStart()
454 m_frame->selection().setNonDirectionalSelectionIfNeeded(selection, granularity); in updateSelectionForMouseDownDispatchingSelectStart()
606 TextGranularity granularity = CharacterGranularity; in handleMousePressEventSingleClick() local
631 if (m_frame->selection().granularity() != CharacterGranularity) { in handleMousePressEventSingleClick()
632 granularity = m_frame->selection().granularity(); in handleMousePressEventSingleClick()
633 newSelection.expandUsingGranularity(m_frame->selection().granularity()); in handleMousePressEventSingleClick()
638 … handled = updateSelectionForMouseDownDispatchingSelectStart(innerNode, newSelection, granularity); in handleMousePressEventSingleClick()
[all …]
DDOMSelection.h65 void modify(const String& alter, const String& direction, const String& granularity);
/external/chromium_org/content/renderer/pepper/
Dppb_scrollbar_impl.cc118 WebScrollbar::ScrollGranularity granularity; in ScrollBy() local
120 granularity = WebScrollbar::ScrollByLine; in ScrollBy()
122 granularity = WebScrollbar::ScrollByPage; in ScrollBy()
124 granularity = WebScrollbar::ScrollByDocument; in ScrollBy()
126 granularity = WebScrollbar::ScrollByPixel; in ScrollBy()
131 scrollbar_->scroll(direction, granularity, fmultiplier); in ScrollBy()
/external/chromium_org/third_party/WebKit/Source/core/timing/
DMemoryInfo.cpp104 size_t granularity = nextPowerOfTen / 1000; // We want 3 signficant digits. in quantizeMemorySize() local
108 bucketSizeList[i] = currentBucketSize - (currentBucketSize % granularity); in quantizeMemorySize()
116 granularity *= 10; in quantizeMemorySize()
/external/chromium_org/third_party/WebKit/Source/platform/
DPlatformWheelEvent.h80 …Y, float wheelTicksX, float wheelTicksY, PlatformWheelEventGranularity granularity, bool shiftKey,… in PlatformWheelEvent() argument
88 , m_granularity(granularity) in PlatformWheelEvent()
122 PlatformWheelEventGranularity granularity() const { return m_granularity; } in granularity() function
/external/chromium_org/chrome/browser/extensions/api/alarms/
Dalarm_manager.cc74 base::GetValueAsTimeDelta(*time_value, &alarm.granularity); in AlarmsFromValue()
87 base::CreateTimeDeltaValue(alarms[i].granularity)); in AlarmsToValue()
329 if (l_it->granularity < min_granularity) in ScheduleNextPoll()
330 min_granularity = l_it->granularity; in ScheduleNextPoll()
443 granularity = base::Time::FromJsTime(js_alarm->scheduled_time) - now; in Alarm()
454 granularity = delay; in Alarm()
457 if (granularity < min_granularity) in Alarm()
458 granularity = min_granularity; in Alarm()
/external/qemu/block/
Dvmdk.c37 uint32_t granularity; member
50 int64_t granularity; member
281 gt_size = (int64_t)header.num_gtes_per_gte * header.granularity * SECTOR_SIZE; in vmdk_snapshot_create()
377 s->cluster_sectors = le32_to_cpu(header.granularity); in vmdk_open()
390 s->cluster_sectors = le64_to_cpu(header.granularity); in vmdk_open()
723 header.granularity = cpu_to_le64(128); in vmdk_create()
726 grains = (total_size + header.granularity - 1) / header.granularity; in vmdk_create()
737 header.granularity - 1) / header.granularity) * in vmdk_create()
738 header.granularity; in vmdk_create()
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
DJellyBeanAccessibilityInjector.java130 final int granularity = arguments.getInt(AccessibilityNodeInfo. in sendActionToAndroidVox() local
132 mAccessibilityJSONObject.accumulate("granularity", granularity); in sendActionToAndroidVox()
/external/chromium_org/chrome/browser/ui/cocoa/
Dhyperlink_text_view.mm45 granularity:(NSSelectionGranularity)granularity {
/external/iproute2/netem/
DREADME.distribution59 covering the range -10 to +10, with granularity .00005. Obviously, this
66 to 1 with granularity 1/TABLESIZE. Note that even with the granularity
/external/iproute2/
DREADME.distribution57 covering the range -10 to +10, with granularity .00005. Obviously, this
64 to 1 with granularity 1/TABLESIZE. Note that even with the granularity
/external/iptables/extensions/
Dlibxt_statistic.man17 granularity is in 1/2147483648th increments.
/external/chromium_org/third_party/WebKit/Source/web/
DWebPluginScrollbarImpl.cpp226 void WebPluginScrollbarImpl::scroll(ScrollDirection direction, ScrollGranularity granularity, float… in scroll() argument
235 m_group->scroll(dir, static_cast<WebCore::ScrollGranularity>(granularity), multiplier); in scroll()
/external/ant-glob/src/org/apache/tools/ant/types/selectors/
DSelectorUtils.java606 public static boolean isOutOfDate(File src, File target, int granularity) { in isOutOfDate() argument
613 if ((src.lastModified() - granularity) > target.lastModified()) { in isOutOfDate()
/external/chromium/chrome/browser/ui/cocoa/location_bar/
Dautocomplete_text_field_editor.mm321 granularity:(NSSelectionGranularity)granularity {
324 granularity:granularity];
/external/iproute2/tc/
DREADME.last32 granularity of this clock is not enough to make reasonable

123