/external/webkit/WebKit/mac/Misc/ |
WebNSAttributedStringExtras.h | 30 class Range; 35 + (NSAttributedString *)_web_attributedStringFromRange:(WebCore::Range*)range;
|
/external/webkit/WebCore/html/ |
TimeRanges.h | 65 struct Range { 66 Range() { } 67 Range(float start, float end) 80 inline bool isOverlappingRange(const Range& range) const 82 return isPointInRange(range.m_start) || isPointInRange(range.m_end) || range.isPointInRange(m_start); 85 inline bool isContiguousWithRange(const Range& range) cons [all...] |
/external/webkit/WebKit/haiku/WebCoreSupport/ |
EditorClientHaiku.h | 50 virtual bool shouldDeleteRange(Range*); 62 virtual bool shouldBeginEditing(Range*); 63 virtual bool shouldEndEditing(Range*); 64 virtual bool shouldInsertNode(Node*, Range*, EditorInsertAction); 65 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction); 66 virtual bool shouldChangeSelectedRange(Range* fromRange, Range* toRange, 69 virtual bool shouldApplyStyle(CSSStyleDeclaration*, Range*); 70 virtual bool shouldMoveRangeAfterDelete(Range*, Range*); [all...] |
/external/webkit/WebKit/qt/WebCoreSupport/ |
EditorClientQt.h | 48 virtual bool shouldDeleteRange(Range*); 61 virtual bool shouldBeginEditing(Range*); 62 virtual bool shouldEndEditing(Range*); 63 virtual bool shouldInsertNode(Node*, Range*, EditorInsertAction); 64 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction); 65 virtual bool shouldChangeSelectedRange(Range* fromRange, Range* toRange, EAffinity, bool stillSelecting); 67 virtual bool shouldApplyStyle(CSSStyleDeclaration*, Range*); 69 virtual bool shouldMoveRangeAfterDelete(Range*, Range*); [all...] |
/external/webkit/WebKit/wx/WebKitSupport/ |
EditorClientWx.h | 48 virtual bool shouldDeleteRange(Range*); 61 virtual bool shouldBeginEditing(Range*); 62 virtual bool shouldEndEditing(Range*); 63 virtual bool shouldInsertNode(Node*, Range*, 65 virtual bool shouldInsertText(const String&, Range*, 68 Range*); 69 virtual bool shouldMoveRangeAfterDelete(Range*, Range*); 70 virtual bool shouldChangeSelectedRange(Range* fromRange, Range* toRange, [all...] |
/external/easymock/src/org/easymock/internal/ |
Results.java | 29 private final LinkedList<Range> ranges = new LinkedList<Range>();
33 public void add(Result result, Range range) {
35 Range lastRange = ranges.getLast();
41 ranges.add(range);
48 Range interval = ranges.get(i);
71 private Range getMainInterval() {
74 for (Range interval : ranges) {
83 return new Range(min, max); [all...] |
Range.java | 20 public class Range implements Serializable {
28 public Range(int count) {
32 public Range(int minimum, int maximum) {
|
IMocksBehavior.java | 21 void addExpected(ExpectedInvocation expected, Result result, Range count);
|
/external/webkit/WebKit/android/WebCoreSupport/ |
EditorClientAndroid.h | 44 virtual bool shouldDeleteRange(Range*); 56 virtual bool shouldBeginEditing(Range*); 57 virtual bool shouldEndEditing(Range*); 58 virtual bool shouldInsertNode(Node*, Range*, EditorInsertAction); 59 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction); 60 virtual bool shouldChangeSelectedRange(Range* fromRange, Range* toRange, EAffinity, bool stillSelecting); 62 virtual bool shouldApplyStyle(CSSStyleDeclaration*, Range*); 65 virtual bool shouldMoveRangeAfterDelete(Range*, Range*); [all...] |
/external/webkit/WebCore/editing/ |
TextIterator.h | 30 #include "Range.h" 48 String plainText(const Range*); 49 UChar* plainTextToMallocAllocatedBuffer(const Range*, unsigned& bufferLength, bool isDisplayString); 50 PassRefPtr<Range> findPlainText(const Range*, const String&, bool forward, bool caseSensitive); 67 // Iterates through the DOM range, returning all the text, and 0-length boundaries 74 explicit TextIterator(const Range*, bool emitCharactersBetweenAllVisiblePositions = false, bool enterTextControls = false); 82 PassRefPtr<Range> range() const; 85 static int rangeLength(const Range*, bool spacesForReplacedElements = false) 268 PassRefPtr<Range> range() const { return m_range; } function in class:WebCore::WordAwareIterator [all...] |
markup.h | 39 class Range; 44 PassRefPtr<DocumentFragment> createFragmentFromText(Range* context, const String& text); 50 String createMarkup(const Range*, 55 String createFullMarkup(const Range*);
|
Editor.h | 107 bool shouldInsertFragment(PassRefPtr<DocumentFragment>, PassRefPtr<Range>, EditorInsertAction); 108 bool shouldInsertText(const String&, Range*, EditorInsertAction) const; 110 bool shouldDeleteRange(Range*) const; 111 bool shouldApplyStyle(CSSStyleDeclaration*, Range*); 201 void markMisspellings(const VisibleSelection&, RefPtr<Range>& firstMisspellingRange); 221 void markAllMisspellingsAndBadGrammarInRanges(bool markSpelling, Range* spellingRange, bool markGrammar, Range* grammarRange, bool performTextCheckingReplacements); 228 bool shouldBeginEditing(Range*); 229 bool shouldEndEditing(Range*); 261 PassRefPtr<Range> compositionRange() const [all...] |
htmlediting.h | 41 class Range; 95 bool isNodeVisiblyContainedWithin(Node*, const Range*); 174 // Range 177 // Functions returning Range 179 PassRefPtr<Range> createRange(PassRefPtr<Document>, const VisiblePosition& start, const VisiblePosition& end, ExceptionCode&); 180 PassRefPtr<Range> extendRangeToWrappingNodes(PassRefPtr<Range> rangeToExtend, const Range* maximumRange, const Node* rootNode); 181 PassRefPtr<Range> avoidIntersectionWithNode(const Range*, Node*) [all...] |
/external/webkit/WebCore/dom/ |
Range.h | 41 class Range : public RefCounted<Range> { 43 static PassRefPtr<Range> create(PassRefPtr<Document>); 44 static PassRefPtr<Range> create(PassRefPtr<Document>, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset); 45 static PassRefPtr<Range> create(PassRefPtr<Document>, const Position&, const Position&); 46 ~Range(); 70 short compareBoundaryPoints(CompareHow, const Range* sourceRange, ExceptionCode&) const; 87 PassRefPtr<Range> cloneRange(ExceptionCode&) const; 121 // Expand range to a unit (word or sentence or block or document) boundary. 134 Range(PassRefPtr<Document>) [all...] |
/external/webkit/WebKit/chromium/public/ |
WebRange.h | 37 namespace WebCore { class Range; } 47 // Provides readonly access to some properties of a DOM range. 74 WebRange(const WTF::PassRefPtr<WebCore::Range>&); 75 WebRange& operator=(const WTF::PassRefPtr<WebCore::Range>&); 76 operator WTF::PassRefPtr<WebCore::Range>() const;
|
/external/webkit/WebCore/page/ |
EditorClient.h | 52 class Range; 87 virtual bool shouldDeleteRange(Range*) = 0; 99 virtual bool shouldBeginEditing(Range*) = 0; 100 virtual bool shouldEndEditing(Range*) = 0; 101 virtual bool shouldInsertNode(Node*, Range*, EditorInsertAction) = 0; 102 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction) = 0; 103 virtual bool shouldChangeSelectedRange(Range* fromRange, Range* toRange, EAffinity, bool stillSelecting) = 0; 105 virtual bool shouldApplyStyle(CSSStyleDeclaration*, Range*) = 0; 108 virtual bool shouldMoveRangeAfterDelete(Range*, Range*) = 0 [all...] |
/external/webkit/WebKit/chromium/src/ |
EditorClientImpl.h | 61 virtual bool shouldBeginEditing(WebCore::Range*); 62 virtual bool shouldEndEditing(WebCore::Range*); 63 virtual bool shouldInsertNode(WebCore::Node*, WebCore::Range*, WebCore::EditorInsertAction); 64 virtual bool shouldInsertText(const WebCore::String&, WebCore::Range*, WebCore::EditorInsertAction); 65 virtual bool shouldDeleteRange(WebCore::Range*); 66 virtual bool shouldChangeSelectedRange(WebCore::Range* fromRange, 67 WebCore::Range* toRange, 70 virtual bool shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*); 71 virtual bool shouldMoveRangeAfterDelete(WebCore::Range*, WebCore::Range*); [all...] |
WebRange.cpp | 34 #include "Range.h" 43 class WebRangePrivate : public Range { 89 WebRange::WebRange(const WTF::PassRefPtr<WebCore::Range>& range) 90 : m_private(static_cast<WebRangePrivate*>(range.releaseRef())) 94 WebRange& WebRange::operator=(const WTF::PassRefPtr<WebCore::Range>& range) 96 assign(static_cast<WebRangePrivate*>(range.releaseRef())); 100 WebRange::operator WTF::PassRefPtr<WebCore::Range>() const 102 return PassRefPtr<Range>(const_cast<WebRangePrivate*>(m_private)) [all...] |
/external/webkit/WebKit/gtk/WebCoreSupport/ |
EditorClientGtk.h | 60 virtual bool shouldDeleteRange(WebCore::Range*); 72 virtual bool shouldBeginEditing(WebCore::Range*); 73 virtual bool shouldEndEditing(WebCore::Range*); 74 virtual bool shouldInsertNode(WebCore::Node*, WebCore::Range*, WebCore::EditorInsertAction); 75 virtual bool shouldInsertText(const WebCore::String&, WebCore::Range*, WebCore::EditorInsertAction); 76 virtual bool shouldChangeSelectedRange(WebCore::Range* fromRange, WebCore::Range* toRange, WebCore::EAffinity, bool stillSelecting); 78 virtual bool shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*); 80 virtual bool shouldMoveRangeAfterDelete(WebCore::Range*, WebCore::Range*); [all...] |
/external/webkit/WebKit/mac/WebCoreSupport/ |
WebEditorClient.h | 54 virtual bool shouldDeleteRange(WebCore::Range*); 57 virtual bool shouldBeginEditing(WebCore::Range*); 58 virtual bool shouldEndEditing(WebCore::Range*); 59 virtual bool shouldInsertNode(WebCore::Node*, WebCore::Range*, WebCore::EditorInsertAction); 60 virtual bool shouldInsertText(const WebCore::String&, WebCore::Range*, WebCore::EditorInsertAction); 61 virtual bool shouldChangeSelectedRange(WebCore::Range* fromRange, WebCore::Range* toRange, WebCore::EAffinity, bool stillSelecting); 63 virtual bool shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*); 65 virtual bool shouldMoveRangeAfterDelete(WebCore::Range* range, WebCore::Range* rangeToBeReplaced); [all...] |
/external/webkit/WebKit/win/WebCoreSupport/ |
WebEditorClient.h | 54 virtual bool shouldBeginEditing(WebCore::Range*); 55 virtual bool shouldEndEditing(WebCore::Range*); 56 virtual bool shouldInsertText(const WebCore::String&, WebCore::Range*, WebCore::EditorInsertAction); 67 bool shouldDeleteRange(WebCore::Range*); 69 bool shouldInsertNode(WebCore::Node*, WebCore::Range* replacingRange, WebCore::EditorInsertAction); 70 bool shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*); 71 bool shouldMoveRangeAfterDelete(WebCore::Range*, WebCore::Range*); 90 virtual bool shouldChangeSelectedRange(WebCore::Range* fromRange, WebCore::Range* toRange, WebCore::EAffinity, bool stillSelecting) [all...] |
/dalvik/libcore/text/src/main/java/java/text/ |
AttributedString.java | 41 Map<AttributedCharacterIterator.Attribute, List<Range>> attributeMap; 43 static class Range { 50 Range(int s, int e, Object v) { 156 private boolean inRange(Range range) { 157 if (!(range.value instanceof Annotation)) { 160 return range.start >= begin && range.start < end 161 && range.end > begin && range.end <= end 167 Range range = it.next(); local 211 Range range = it.next(); local 259 Range range = it.previous(); local 307 Range range = it.next(); local 645 Range range = it.next(); local [all...] |
/external/webkit/WebCore/bindings/objc/ |
ExceptionHandlers.h | 46 class Range;
|
/external/v8/test/mjsunit/ |
cyrillic.js | 59 function Range(from, to, flags) { 76 assertTrue(Range(first, last).test(first), 1); 77 assertTrue(Range(first, last).test(middle), 2); 78 assertTrue(Range(first, last).test(last), 3); 80 assertFalse(Range(first, last).test(first_other_case), 4); 81 assertFalse(Range(first, last).test(middle_other_case), 5); 82 assertFalse(Range(first, last).test(last_other_case), 6); 84 assertTrue(Range(first, last, "i").test(first), 7); 85 assertTrue(Range(first, last, "i").test(middle), 8); 86 assertTrue(Range(first, last, "i").test(last), 9) [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/ |
EditingUtil.java | 79 Range range = getWordRangeAtCursor(connection, separators); local 80 return (range == null) ? null : range.word; 90 Range range = getWordRangeAtCursor(connection, separators); local 91 if (range == null) return; 95 // of valid range after deleting text. 96 int newCursor = getCursorPosition(connection) - range.charsBefore; 98 connection.deleteSurroundingText(0, range.charsBefore + range.charsAfter) [all...] |