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

1 2

  /external/webkit/WebCore/editing/
VisibleSelection.h 83 bool expandUsingGranularity(TextGranularity granularity);
84 TextGranularity granularity() const { return m_granularity; } function in class:WebCore::VisibleSelection
124 Position m_start; // Leftmost position when expanded to respect granularity
125 Position m_end; // Rightmost position when expanded to respect granularity
128 TextGranularity m_granularity; // granularity of start/end selection
137 return a.start() == b.start() && a.end() == b.end() && a.affinity() == b.affinity() && a.granularity() == b.granularity() && a.isBaseFirst() == b.isBaseFirst();
TypingCommand.cpp 50 TypingCommand::TypingCommand(Document *document, ETypingCommand commandType, const String &textToInsert, bool selectInsertedText, TextGranularity granularity, bool killRing)
57 m_granularity(granularity),
85 void TypingCommand::deleteKeyPressed(Document *document, bool smartDelete, TextGranularity granularity, bool killRing)
93 if (granularity == CharacterGranularity && isOpenForMoreTypingCommand(lastEditCommand)) {
94 static_cast<TypingCommand*>(lastEditCommand)->deleteKeyPressed(granularity, killRing);
98 RefPtr<TypingCommand> typingCommand = TypingCommand::create(document, DeleteKey, "", false, granularity, killRing);
103 void TypingCommand::forwardDeleteKeyPressed(Document *document, bool smartDelete, TextGranularity granularity, bool killRing)
112 if (granularity == CharacterGranularity && isOpenForMoreTypingCommand(lastEditCommand)) {
113 static_cast<TypingCommand*>(lastEditCommand)->forwardDeleteKeyPressed(granularity, killRing);
117 RefPtr<TypingCommand> typingCommand = TypingCommand::create(document, ForwardDeleteKey, "", false, granularity, killRing)
    [all...]
SelectionController.cpp 268 VisiblePosition SelectionController::modifyExtendingRight(TextGranularity granularity)
277 switch (granularity) {
298 pos = modifyExtendingForward(granularity);
303 VisiblePosition SelectionController::modifyExtendingForward(TextGranularity granularity)
306 switch (granularity) {
343 VisiblePosition SelectionController::modifyMovingRight(TextGranularity granularity)
346 switch (granularity) {
362 pos = modifyMovingForward(granularity);
368 VisiblePosition SelectionController::modifyMovingForward(TextGranularity granularity)
372 switch (granularity) {
    [all...]
TypingCommand.h 69 static PassRefPtr<TypingCommand> create(Document* document, ETypingCommand command, const String& text = "", bool selectInsertedText = false, TextGranularity granularity = CharacterGranularity, bool killRing = false)
71 return adoptRef(new TypingCommand(document, command, text, selectInsertedText, granularity, killRing));
VisibleSelection.cpp 188 bool VisibleSelection::expandUsingGranularity(TextGranularity granularity)
193 m_granularity = granularity;
  /external/webkit/WebCore/page/
DOMSelection.cpp 289 TextGranularity granularity;
291 granularity = CharacterGranularity;
293 granularity = WordGranularity;
295 granularity = SentenceGranularity;
297 granularity = LineGranularity;
299 granularity = ParagraphGranularity;
301 granularity = LineBoundary;
303 granularity = SentenceBoundary;
305 granularity = ParagraphBoundary;
307 granularity = DocumentBoundary
    [all...]
DOMSelection.h 63 void modify(const String& alter, const String& direction, const String& granularity);
DOMSelection.idl 75 void modify(in DOMString alter, in DOMString direction, in DOMString granularity);
  /external/webkit/JavaScriptCore/jit/
ExecutableAllocator.h 65 inline size_t roundUpAllocationSize(size_t request, size_t granularity)
67 if ((std::numeric_limits<size_t>::max() - granularity) <= request)
71 size_t size = request + (granularity - 1);
72 size = size & ~(granularity - 1);
  /external/webkit/WebKit/mac/WebView/
WebFrameInternal.h 140 - (DOMRange *)_rangeByAlteringCurrentSelection:(WebCore::SelectionController::EAlteration)alteration direction:(WebCore::SelectionController::EDirection)direction granularity:(WebCore::TextGranularity)granularity;
WebFrameView.mm 522 - (BOOL)_scrollOverflowInDirection:(ScrollDirection)direction granularity:(ScrollGranularity)granularity
530 return frame->eventHandler()->scrollOverflow(direction, granularity);
535 if ([self _scrollOverflowInDirection:ScrollUp granularity:ScrollByDocument])
545 if ([self _scrollOverflowInDirection:ScrollDown granularity:ScrollByDocument])
621 if ([self _scrollOverflowInDirection:up ? ScrollUp : ScrollDown granularity:ScrollByPage])
633 if ([self _scrollOverflowInDirection:left ? ScrollLeft : ScrollRight granularity:ScrollByPage])
645 if ([self _scrollOverflowInDirection:up ? ScrollUp : ScrollDown granularity:ScrollByLine])
657 if ([self _scrollOverflowInDirection:left ? ScrollLeft : ScrollRight granularity:ScrollByLine])
    [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebScrollBarPrivate.idl 71 HRESULT scroll([in] WebScrollDirection direction, [in] WebScrollGranularity granularity, [in] float multiplier);
  /external/webkit/WebCore/platform/
PlatformWheelEvent.h 94 PlatformWheelEventGranularity granularity() const { return m_granularity; } function in class:WebCore::PlatformWheelEvent
Scrollbar.cpp 125 bool Scrollbar::scroll(ScrollDirection direction, ScrollGranularity granularity, float multiplier)
145 if (granularity == ScrollByLine)
147 else if (granularity == ScrollByPage)
149 else if (granularity == ScrollByDocument)
151 else if (granularity == ScrollByPixel)
ScrollView.cpp 320 bool ScrollView::scroll(ScrollDirection direction, ScrollGranularity granularity)
323 return platformScroll(direction, granularity);
327 return m_verticalScrollbar->scroll(direction, granularity);
330 return m_horizontalScrollbar->scroll(direction, granularity);
667 if (e.granularity() == ScrollByPageWheelEvent) {
    [all...]
  /external/webkit/WebKit/win/
WebScrollBar.h 114 /* [in] */ WebScrollGranularity granularity,
WebScrollBar.cpp 245 WebScrollGranularity granularity,
249 ScrollGranularity webCoreGranularity = (ScrollGranularity) granularity;
WebView.cpp     [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_rt.h 105 long granularity; member in struct:PERF_RT_Private
  /external/qemu/block/
vmdk.c 37 uint32_t granularity; member in struct:__anon5784
50 int64_t granularity; member in struct:__anon5785
272 gt_size = (int64_t)header.num_gtes_per_gte * header.granularity * SECTOR_SIZE;
390 s->cluster_sectors = le32_to_cpu(header.granularity);
403 s->cluster_sectors = le64_to_cpu(header.granularity);
745 header.granularity = cpu_to_le64(128);
748 grains = (total_size + header.granularity - 1) / header.granularity;
759 header.granularity - 1) / header.granularity) *
    [all...]
  /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/quake/quake/src/WinQuake/
vid_ext.cpp 78 int granularity; // how finely i can set the window in vid mem (+4) member in struct:__anon7088
532 modeinfo.granularity = *(short*)(infobuf+4) * 1024;
560 printf(" win granularity = %d\n", modeinfo.granularity);
  /external/webkit/WebKit/qt/Api/
qwebpage.cpp 1337 ScrollGranularity granularity; local
    [all...]
  /external/webkit/WebCore/rendering/
RenderListBox.cpp 513 bool RenderListBox::scroll(ScrollDirection direction, ScrollGranularity granularity, float multiplier, Node**)
515 return m_vBar && m_vBar->scroll(direction, granularity, multiplier);
  /bionic/libc/bionic/
dlmalloc.c 2126 size_t granularity; member in struct:malloc_params
    [all...]

Completed in 427 milliseconds

1 2