HomeSort by relevance Sort by last modified time
    Searched refs:Range (Results 51 - 75 of 156) sorted by null

1 23 4 5 6 7

  /external/webkit/WebCore/platform/haiku/
PasteboardHaiku.cpp 54 void Pasteboard::writeSelection(Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame)
112 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context,
  /external/webkit/WebCore/dom/
Range.idl 24 interface Range {
67 in Range sourceRange)
80 Range cloneRange()
Clipboard.h 71 virtual void writeRange(Range*, Frame*) = 0;
  /external/gtest/test/
gtest-param-test_test.cc 58 using ::testing::Range;
131 const ParamGenerator<int> gen = Range(0, 10);
164 // Tests that Range() generates the expected sequence.
166 const ParamGenerator<int> gen = Range(0, 3);
171 // Edge case. Tests that Range() generates the single element sequence
172 // as expected when provided with range limits that are equal.
174 const ParamGenerator<int> gen = Range(0, 1);
179 // Edge case. Tests that Range() with generates empty sequence when
180 // supplied with an empty range.
182 const ParamGenerator<int> gen = Range(0, 0)
    [all...]
  /external/protobuf/gtest/test/
gtest-param-test_test.cc 58 using ::testing::Range;
131 const ParamGenerator<int> gen = Range(0, 10);
164 // Tests that Range() generates the expected sequence.
166 const ParamGenerator<int> gen = Range(0, 3);
171 // Edge case. Tests that Range() generates the single element sequence
172 // as expected when provided with range limits that are equal.
174 const ParamGenerator<int> gen = Range(0, 1);
179 // Edge case. Tests that Range() with generates empty sequence when
180 // supplied with an empty range.
182 const ParamGenerator<int> gen = Range(0, 0)
    [all...]
  /external/libvpx/vp8/common/
boolcoder.h 15 /* Arithmetic bool coder with largish probability range.
318 uint32 Low, Range;
326 Range = spec.max_range();
339 return 1 + ((Range - 1) >> 1);
370 raw(v, spec.split(p, Range));
435 return raw(spec.split(p, Range));
472 unsigned int prec; /* range precision in bits */
  /external/webkit/WebCore/editing/
TextIterator.cpp 36 #include "Range.h"
64 // Returns number of characters appended; guaranteed to be in the range [1, length].
171 // This function is like Range::pastLastNode, except for the fact that it can climb up out of shadow trees.
262 TextIterator::TextIterator(const Range* r, bool emitCharactersBetweenAllVisiblePositions, bool enterTextControls)
276 // get and validate the range endpoints
288 // remember range - this does not change
335 // newline. The range for the emitted newline should start where the line
353 // if the range ends at offset 0 of an element, represent the
753 // the start of the range (e.g. the range starts at the end of the previous paragraph)
907 PassRefPtr<Range> TextIterator::range() const function in class:WebCore::TextIterator
1138 PassRefPtr<Range> SimplifiedBackwardsTextIterator::range() const function in class:WebCore::SimplifiedBackwardsTextIterator
1165 PassRefPtr<Range> CharacterIterator::range() const function in class:WebCore::CharacterIterator
1273 PassRefPtr<Range> BackwardsCharacterIterator::range() const function in class:WebCore::BackwardsCharacterIterator
    [all...]
SelectionController.h 30 #include "Range.h"
54 void moveTo(const Range*, EAffinity, bool userTriggered = false);
62 bool setSelectedRange(Range*, EAffinity, bool closeTyping);
108 PassRefPtr<Range> toNormalizedRange() const { return m_selection.toNormalizedRange(); }
htmlediting.cpp 42 #include "Range.h"
126 int result = Range::compareBoundaryPoints(nodeA, offsetA, nodeB, offsetB);
338 // position to a Range object. Ideally all internal positions should
339 // be "range compliant" for simplicity.
386 // on a Position before using it to create a DOM Range, or an exception will be thrown.
615 // Create a range object with two visible positions, start and end.
617 // Use this function instead of create a regular range object (avoiding editing offset).
618 PassRefPtr<Range> createRange(PassRefPtr<Document> document, const VisiblePosition& start, const VisiblePosition& end, ExceptionCode& ec)
621 RefPtr<Range> selectedRange = Range::create(document)
1080 RefPtr<Range> range = Range::create(p.node()->document(), Position(p.node()->document(), 0), rangeCompliantEquivalent(p)); local
    [all...]
VisibleSelection.cpp 37 #include "Range.h"
88 VisibleSelection::VisibleSelection(const Range* range, EAffinity affinity)
89 : m_base(range->startPosition())
90 , m_extent(range->endPosition())
126 PassRefPtr<Range> VisibleSelection::firstRange() const
132 return Range::create(start.node()->document(), start, end);
135 PassRefPtr<Range> VisibleSelection::toNormalizedRange() const
152 // If the selection is a caret, move the range start upstream. This helps us match
158 // If the selection is a range, select the minimum range that encompasses the selection
    [all...]
  /external/webkit/WebKit/chromium/src/
WebFrameImpl.h 48 class Range;
204 // node in the matched range and going up the inheritance chain). If we find
205 // nothing to focus we focus the first focusable node in the range. This
254 // Add a WebKit TextMatch-highlight marker to nodes in a range.
255 void addMarker(WebCore::Range*, bool activeMatch);
257 // Sets the markers within a range as active or inactive.
258 void setMarkerActive(WebCore::Range*, bool active);
302 // The range of the active match for the current frame.
303 RefPtr<WebCore::Range> m_activeMatch;
315 RefPtr<WebCore::Range> m_resumeScopingFromRange
    [all...]
EditorClientImpl.cpp 184 bool EditorClientImpl::shouldBeginEditing(Range* range)
187 return m_webView->client()->shouldBeginEditing(WebRange(range));
191 bool EditorClientImpl::shouldEndEditing(Range* range)
194 return m_webView->client()->shouldEndEditing(WebRange(range));
199 Range* range,
204 WebRange(range),
211 Range* range
    [all...]
  /external/webkit/WebKit/win/WebCoreSupport/
WebEditorClient.cpp 46 #include <WebCore/Range.h>
189 bool WebEditorClient::shouldBeginEditing(Range*)
195 bool WebEditorClient::shouldEndEditing(Range*)
235 bool WebEditorClient::shouldDeleteRange(Range* /*range*/)
252 bool WebEditorClient::shouldInsertNode(Node* /*node*/, Range* /*replacingRange*/, EditorInsertAction /*givenAction*/)
258 bool WebEditorClient::shouldInsertText(const String& /*str*/, Range* /* replacingRange */, EditorInsertAction /*givenAction*/)
276 //bool WebEditorClient::shouldChangeSelectedRange(Range *currentRange, Range *toProposedRange, SelectionAffinity selectionAffinity, bool stillSelecting)
279 bool WebEditorClient::shouldApplyStyle(CSSStyleDeclaration* /*style*/, Range* /*toElementsInDOMRange*/
    [all...]
  /external/webkit/WebCore/html/
TimeRanges.cpp 70 Range addedRange(start, end);
72 // For each present range check if we need to:
73 // - merge with the added range, in case we are overlapping or contiguous
82 // We need to merge the addedRange and that range.
90 // First index, and we are completely before that range (and not contiguous, nor overlapping).
97 // We are exactly after the current previous range, and before the current range, while
105 // Now that we are sure we don't overlap with any range, just add it.
  /external/webkit/WebCore/platform/
DragImage.h 66 class Range;
  /external/webkit/WebCore/platform/chromium/
ClipboardChromium.h 76 virtual void writeRange(Range*, Frame*);
PasteboardChromium.cpp 45 #include "Range.h"
82 void Pasteboard::writeSelection(Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame)
161 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context, bool allowPlainText, bool& chosePlainText)
  /external/webkit/WebCore/platform/mac/
ClipboardMac.h 73 virtual void writeRange(Range*, Frame* frame);
  /external/webkit/WebCore/platform/qt/
ClipboardQt.h 68 virtual void writeRange(Range*, Frame*);
  /external/webkit/WebCore/platform/win/
ClipboardWin.h 69 virtual void writeRange(Range*, Frame*);
  /external/webkit/WebCore/platform/wx/
ClipboardWx.cpp 125 void ClipboardWx::writeRange(Range*, Frame*)
  /external/webkit/WebKit/chromium/public/
WebInputElement.h 71 Range,
  /external/webkit/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 107 bool EditorClient::shouldDeleteRange(Range*)
140 bool EditorClient::shouldBeginEditing(WebCore::Range*)
148 bool EditorClient::shouldEndEditing(WebCore::Range*)
156 bool EditorClient::shouldInsertText(const String&, Range*, EditorInsertAction)
162 bool EditorClient::shouldChangeSelectedRange(Range*, Range*, EAffinity, bool)
168 bool EditorClient::shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*)
174 bool EditorClient::shouldMoveRangeAfterDelete(WebCore::Range*, WebCore::Range*)
299 bool EditorClient::shouldInsertNode(Node*, Range*, EditorInsertAction
    [all...]
  /external/webkit/WebKit/mac/Misc/
WebNSAttributedStringExtras.mm 46 #import <WebCore/Range.h>
122 + (NSAttributedString *)_web_attributedStringFromRange:(Range*)range
128 for (TextIterator it(range); !it.atEnd(); it.advance()) {
129 RefPtr<Range> currentTextRange = it.range();
168 [string setAttributes:attrs.get() range:NSMakeRange(stringLength, currentTextLength)];
  /external/webkit/WebCore/bindings/objc/
DOMUtility.mm 115 WRAP(Range)

Completed in 505 milliseconds

1 23 4 5 6 7