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

1 2 3 4 5 6 7

  /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();
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.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...]
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));
  /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/chromium/net/disk_cache/
histogram_macros.h 14 // HISTOGRAM_HOURS will collect time related data with a granularity of hours
19 // granularity of hours and normal values of a few months.
  /frameworks/base/media/libstagefright/codecs/aacenc/inc/
block_switch.h 32 #define BLOCK_SWITCH_WINDOW_LEN FRAME_LEN_SHORT /* minimal granularity of energy calculation */
  /external/iproute2/tc/
README.last 32 granularity of this clock is not enough to make reasonable
  /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/iproute2/
README.distribution 57 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/iproute2/netem/
README.distribution 59 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/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/kernel-headers/original/linux/
file.h 17 * as this is the granularity returned by copy_fdset().
  /external/webkit/WebKit/mac/WebView/
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...]
WebFrameInternal.h 140 - (DOMRange *)_rangeByAlteringCurrentSelection:(WebCore::SelectionController::EAlteration)alteration direction:(WebCore::SelectionController::EDirection)direction granularity:(WebCore::TextGranularity)granularity;
  /external/webkit/WebKit/win/Interfaces/
IWebScrollBarPrivate.idl 71 HRESULT scroll([in] WebScrollDirection direction, [in] WebScrollGranularity granularity, [in] float multiplier);
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_config.h 71 unsigned long rt_granularity; /* real-time granularity in seconds
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
vtimes.h 28 /* Granularity of the `vm_utime' and `vm_stime' fields of a `struct vtimes'.
  /external/webkit/WebCore/platform/
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)
PlatformWheelEvent.h 94 PlatformWheelEventGranularity granularity() const { return m_granularity; } function in class:WebCore::PlatformWheelEvent
  /dalvik/vm/
LinearAlloc.h 78 * actually operates on a page granularity.
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
xf86dga.h 82 int xViewportStep; /* viewport position granularity */

Completed in 414 milliseconds

1 2 3 4 5 6 7