Searched refs:Range (Results 1 - 25 of 370) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/DOM/
H A DInjectedBundleRangeHandle.h34 class Range;
45 static PassRefPtr<InjectedBundleRangeHandle> getOrCreate(WebCore::Range*);
49 WebCore::Range* coreRange() const;
52 static PassRefPtr<InjectedBundleRangeHandle> create(WebCore::Range*);
53 InjectedBundleRangeHandle(WebCore::Range*);
57 RefPtr<WebCore::Range> m_range;
H A DInjectedBundleRangeHandle.cpp29 #include <WebCore/Range.h>
36 typedef HashMap<Range*, InjectedBundleRangeHandle*> DOMHandleCache;
44 PassRefPtr<InjectedBundleRangeHandle> InjectedBundleRangeHandle::getOrCreate(Range* range)
58 PassRefPtr<InjectedBundleRangeHandle> InjectedBundleRangeHandle::create(Range* range)
63 InjectedBundleRangeHandle::InjectedBundleRangeHandle(Range* range)
73 Range* InjectedBundleRangeHandle::coreRange() const
/external/webkit/Source/WebCore/dom/
H A DDOMTextContentWalker.h34 class Range;
48 PassRefPtr<Range> contentOffsetsToRange(unsigned startInContent, unsigned endInContent);
51 RefPtr<Range> m_contentRange;
H A DDocumentMarkerController.h39 class Range;
48 void addMarker(Range*, DocumentMarker::MarkerType, String description = String());
51 bool hasMarkers(Range*, DocumentMarker::MarkerTypes = DocumentMarker::AllMarkers());
57 void removeMarkers(Range*, DocumentMarker::MarkerTypes = DocumentMarker::AllMarkers(), RemovePartiallyOverlappingMarkerOrNot = DoNotRemovePartiallyOverlappingMarker);
66 void setMarkersActive(Range*, bool);
71 Vector<DocumentMarker> markersInRange(Range*, DocumentMarker::MarkerType);
73 void clearDescriptionOnMarkersIntersectingRange(Range*, DocumentMarker::MarkerTypes);
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundlePageEditorClient.h38 class Range;
48 bool shouldBeginEditing(WebPage*, WebCore::Range*);
49 bool shouldEndEditing(WebPage*, WebCore::Range*);
50 bool shouldInsertNode(WebPage*, WebCore::Node*, WebCore::Range* rangeToReplace, WebCore::EditorInsertAction);
51 bool shouldInsertText(WebPage*, StringImpl*, WebCore::Range* rangeToReplace, WebCore::EditorInsertAction);
52 bool shouldDeleteRange(WebPage*, WebCore::Range*);
53 bool shouldChangeSelectedRange(WebPage*, WebCore::Range* fromRange, WebCore::Range* toRange, WebCore::EAffinity affinity, bool stillSelecting);
54 bool shouldApplyStyle(WebPage*, WebCore::CSSStyleDeclaration*, WebCore::Range*);
/external/easymock/src/org/easymock/internal/
H A DResults.java29 private final LinkedList<Range> ranges = new LinkedList<Range>();
33 public void add(Result result, Range range) {
35 Range lastRange = ranges.getLast();
48 Range interval = ranges.get(i);
71 private Range getMainInterval() {
74 for (Range interval : ranges) {
83 return new Range(min, max);
H A DRange.java20 public class Range implements Serializable { class in inherits:Serializable
28 public Range(int count) { method in class:Range
32 public Range(int minimum, int maximum) { method in class:Range
/external/webkit/Source/WebCore/html/
H A DTimeRanges.h67 struct Range { struct in class:WebCore::TimeRanges
68 Range() { } function in struct:WebCore::TimeRanges::Range
69 Range(float start, float end) function in struct:WebCore::TimeRanges::Range
82 inline bool isOverlappingRange(const Range& range) const
87 inline bool isContiguousWithRange(const Range& range) const
92 inline Range unionWithOverlappingOrContiguousRange(const Range& range) const
94 Range ret;
102 inline bool isBeforeRange(const Range& range) const
108 Vector<Range> m_range
[all...]
/external/webkit/Source/WebCore/editing/
H A DTextCheckingHelper.h28 class Range;
33 explicit TextCheckingParagraph(PassRefPtr<Range> checkingRange);
37 PassRefPtr<Range> subrange(int characterOffset, int characterCount) const;
58 PassRefPtr<Range> paragraphRange() const;
62 PassRefPtr<Range> checkingRange() const { return m_checkingRange; }
63 PassRefPtr<Range> offsetAsRange() const;
66 RefPtr<Range> m_checkingRange;
67 mutable RefPtr<Range> m_paragraphRange;
68 mutable RefPtr<Range> m_offsetAsRange;
78 TextCheckingHelper(EditorClient*, PassRefPtr<Range>);
[all...]
H A DSpellingCorrectionCommand.h30 #include "Range.h"
36 static PassRefPtr<SpellingCorrectionCommand> create(PassRefPtr<Range> rangeToBeCorrected, const String& correction)
41 SpellingCorrectionCommand(PassRefPtr<Range> rangeToBeCorrected, const String& correction);
45 RefPtr<Range> m_rangeToBeCorrected;
H A DTextIterator.h31 #include "Range.h"
64 String plainText(const Range*, TextIteratorBehavior defaultBehavior = TextIteratorDefaultBehavior);
65 UChar* plainTextToMallocAllocatedBuffer(const Range*, unsigned& bufferLength, bool isDisplayString, TextIteratorBehavior = TextIteratorDefaultBehavior);
66 PassRefPtr<Range> findPlainText(const Range*, const String&, FindOptions);
92 explicit TextIterator(const Range*, TextIteratorBehavior = TextIteratorDefaultBehavior);
100 PassRefPtr<Range> range() const;
103 static int rangeLength(const Range*, bool spacesForReplacedElements = false);
104 static PassRefPtr<Range> rangeFromLocationAndLength(Element* scope, int rangeLocation, int rangeLength, bool spacesForReplacedElements = false);
105 static bool locationAndLengthFromRange(const Range*, size_
[all...]
/external/clang/test/SemaCXX/
H A Dfor-range-no-std.cpp12 struct Range {}; struct
13 int begin(Range); // expected-note {{not viable}}
14 int end(Range);
/external/guava/guava/src/com/google/common/collect/
H A DRanges.java28 * Static methods pertaining to {@link Range} instances. Each of the
29 * {@link Range nine types of ranges} can be constructed with a corresponding
53 * <p>Additionally, {@link Range} instances can be constructed by passing the
74 static <C extends Comparable<?>> Range<C> create(
76 return new Range<C>(lowerBound, upperBound);
86 public static <C extends Comparable<?>> Range<C> open(C lower, C upper) {
97 public static <C extends Comparable<?>> Range<C> closed(C lower, C upper) {
108 public static <C extends Comparable<?>> Range<C> closedOpen(
120 public static <C extends Comparable<?>> Range<C> openClosed(
133 public static <C extends Comparable<?>> Range<
[all...]
/external/v8/test/mjsunit/
H A Dcyrillic.js59 function Range(from, to, flags) { function
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(firs
[all...]
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DEditorClientAndroid.h51 virtual bool shouldDeleteRange(Range*);
63 virtual bool shouldBeginEditing(Range*);
64 virtual bool shouldEndEditing(Range*);
65 virtual bool shouldInsertNode(Node*, Range*, EditorInsertAction);
66 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction);
67 virtual bool shouldChangeSelectedRange(Range* fromRange, Range* toRange, EAffinity, bool stillSelecting);
69 virtual bool shouldApplyStyle(CSSStyleDeclaration*, Range*);
72 virtual bool shouldMoveRangeAfterDelete(Range*, Range*);
[all...]
/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DEditorClientEfl.h54 virtual bool shouldDeleteRange(Range*);
64 virtual bool shouldBeginEditing(Range*);
65 virtual bool shouldEndEditing(Range*);
66 virtual bool shouldInsertNode(Node*, Range*, EditorInsertAction);
67 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction);
68 virtual bool shouldChangeSelectedRange(Range* fromRange, Range* toRange, EAffinity, bool stillSelecting);
70 virtual bool shouldApplyStyle(CSSStyleDeclaration*, Range*);
72 virtual bool shouldMoveRangeAfterDelete(Range*, Range*);
[all...]
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
H A DEditorClientHaiku.h51 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,
68 virtual bool shouldApplyStyle(CSSStyleDeclaration*, Range*);
69 virtual bool shouldMoveRangeAfterDelete(Range*, Range*);
[all...]
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DEditorClientQt.h49 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/Source/WebKit/wx/WebKitSupport/
H A DEditorClientWx.h49 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* toRang
[all...]
/external/llvm/lib/DebugInfo/
H A DDWARFDebugAranges.h22 struct Range { struct in class:llvm::DWARFDebugAranges
23 explicit Range(uint64_t lo = -1ULL, uint64_t hi = -1ULL, function in struct:llvm::DWARFDebugAranges::Range
46 static bool SortedOverlapCheck(const Range &curr_range,
47 const Range &next_range, uint32_t n) {
53 bool contains(const Range &range) const {
73 const Range *rangeAtIndex(uint32_t idx) const {
89 typedef std::vector<Range> RangeColl;
/external/clang/lib/Sema/
H A DSemaStmtAttr.cpp28 SourceRange Range) {
33 SourceLocation L = Lexer::getLocForEndOfToken(Range.getEnd(), 0,
49 SourceRange Range) {
52 return handleFallThroughAttr(S, St, A, Range);
63 SourceRange Range) {
66 if (Attr *a = ProcessStmtAttribute(*this, S, *l, Range))
73 return ActOnAttributedStmt(Range.getBegin(), Attrs, S);
27 handleFallThroughAttr(Sema &S, Stmt *St, const AttributeList &A, SourceRange Range) argument
48 ProcessStmtAttribute(Sema &S, Stmt *St, const AttributeList &A, SourceRange Range) argument
62 ProcessStmtAttributes(Stmt *S, AttributeList *AttrList, SourceRange Range) argument
/external/llvm/lib/CodeGen/
H A DMachineLoopRanges.cpp50 MachineLoopRange *&Range = Cache[Loop]; local
51 if (!Range)
52 Range = new MachineLoopRange(Loop, Allocator, *Indexes);
53 return Range;
64 const std::pair<SlotIndex, SlotIndex> &Range = Indexes.getMBBRange(*I); local
65 Intervals.insert(Range.first, Range.second, 1u);
66 Area += Range.first.distance(Range.second);
/external/webkit/Source/WebKit/chromium/src/
H A DWebRange.cpp34 #include "Range.h"
42 class WebRangePrivate : public Range {
88 WebRange::WebRange(const WTF::PassRefPtr<WebCore::Range>& range)
93 WebRange& WebRange::operator=(const WTF::PassRefPtr<WebCore::Range>& range)
99 WebRange::operator WTF::PassRefPtr<WebCore::Range>() const
101 return PassRefPtr<Range>(const_cast<WebRangePrivate*>(m_private));
/external/webkit/Source/WebCore/page/
H A DEditorClient.h68 class Range;
81 virtual bool shouldDeleteRange(Range*) = 0;
91 virtual bool shouldBeginEditing(Range*) = 0;
92 virtual bool shouldEndEditing(Range*) = 0;
93 virtual bool shouldInsertNode(Node*, Range*, EditorInsertAction) = 0;
94 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction) = 0;
95 virtual bool shouldChangeSelectedRange(Range* fromRange, Range* toRange, EAffinity, bool stillSelecting) = 0;
97 virtual bool shouldApplyStyle(CSSStyleDeclaration*, Range*) = 0;
98 virtual bool shouldMoveRangeAfterDelete(Range*, Rang
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DITokenStream.cs48 int Range { property in interface:Antlr.Runtime.ITokenStream

Completed in 470 milliseconds

1234567891011>>