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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/DOM/
InjectedBundleRangeHandle.h 34 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;
InjectedBundleRangeHandle.cpp 29 #include <WebCore/Range.h>
36 typedef HashMap<Range*, InjectedBundleRangeHandle*> DOMHandleCache;
44 PassRefPtr<InjectedBundleRangeHandle> InjectedBundleRangeHandle::getOrCreate(Range* range)
46 if (!range)
49 std::pair<DOMHandleCache::iterator, bool> result = domHandleCache().add(range, 0);
53 RefPtr<InjectedBundleRangeHandle> rangeHandle = InjectedBundleRangeHandle::create(range);
58 PassRefPtr<InjectedBundleRangeHandle> InjectedBundleRangeHandle::create(Range* range)
60 return adoptRef(new InjectedBundleRangeHandle(range));
    [all...]
  /development/tools/emulator/opengl/host/libs/Translator/include/GLcommon/
RangeManip.h 21 class Range {
24 Range():m_start(0),m_end(0),m_size(0){};
25 Range(int start,int size):m_start(start),m_end(start+size),m_size(size){};
26 Range(const Range& r):m_start(r.m_start),m_end(r.m_end),m_size(r.m_size){};
31 Range& operator=(const Range& r) {
37 bool operator ==(const Range& r) const {
40 bool operator !=(const Range& r) const {return !((*this) == r);};
41 bool rangeIntersection(const Range& r,Range& rOut) const
    [all...]
  /external/webkit/Source/WebCore/html/
TimeRanges.h 67 struct Range {
68 Range() { }
69 Range(float start, float end)
82 inline bool isOverlappingRange(const Range& range) const
84 return isPointInRange(range.m_start) || isPointInRange(range.m_end) || range.isPointInRange(m_start);
87 inline bool isContiguousWithRange(const Range& range) cons
    [all...]
  /external/webkit/Source/WebCore/editing/
SpellingCorrectionCommand.h 30 #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;
TextIterator.h 31 #include "Range.h"
61 String plainText(const Range*, TextIteratorBehavior defaultBehavior = TextIteratorDefaultBehavior);
62 UChar* plainTextToMallocAllocatedBuffer(const Range*, unsigned& bufferLength, bool isDisplayString, TextIteratorBehavior = TextIteratorDefaultBehavior);
63 PassRefPtr<Range> findPlainText(const Range*, const String&, FindOptions);
81 // Iterates through the DOM range, returning all the text, and 0-length boundaries
89 explicit TextIterator(const Range*, TextIteratorBehavior = TextIteratorDefaultBehavior);
97 PassRefPtr<Range> range() const;
100 static int rangeLength(const Range*, bool spacesForReplacedElements = false)
307 PassRefPtr<Range> range() const { return m_range; } function in class:WebCore::WordAwareIterator
    [all...]
TextCheckingHelper.h 28 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...]
markup.h 40 class Range;
45 PassRefPtr<DocumentFragment> createFragmentFromText(Range* context, const String& text);
51 String createMarkup(const Range*,
56 String createFullMarkup(const Range*);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundlePageEditorClient.h 38 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/
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...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.h 51 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/
EditorClientEfl.h 54 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/
EditorClientHaiku.h 51 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/
EditorClientQt.h 49 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/
EditorClientWx.h 49 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/clang/test/SemaCXX/
for-range-no-std.cpp 12 struct Range {};
13 int begin(Range); // expected-note {{not viable}}
14 int end(Range);
34 for (auto b : T()) {} // expected-error {{no matching function for call to 'begin'}} expected-note {{range has type}}
37 for (int b : NS::NoADL()) {} // expected-error {{no matching function for call to 'begin'}} expected-note {{range has type}}
  /external/webkit/Source/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/Source/WebCore/page/
EditorClient.h 68 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*, Range*) = 0
    [all...]
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.h 80 virtual bool shouldDeleteRange(WebCore::Range*);
90 virtual bool shouldBeginEditing(WebCore::Range*);
91 virtual bool shouldEndEditing(WebCore::Range*);
92 virtual bool shouldInsertNode(WebCore::Node*, WebCore::Range*, WebCore::EditorInsertAction);
93 virtual bool shouldInsertText(const WTF::String&, WebCore::Range*, WebCore::EditorInsertAction);
94 virtual bool shouldChangeSelectedRange(WebCore::Range* fromRange, WebCore::Range* toRange, WebCore::EAffinity, bool stillSelecting);
96 virtual bool shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*);
98 virtual bool shouldMoveRangeAfterDelete(WebCore::Range*, WebCore::Range*);
    [all...]
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.h 51 virtual bool shouldBeginEditing(WebCore::Range*);
52 virtual bool shouldEndEditing(WebCore::Range*);
53 virtual bool shouldInsertText(const WTF::String&, WebCore::Range*, WebCore::EditorInsertAction);
64 bool shouldDeleteRange(WebCore::Range*);
66 bool shouldInsertNode(WebCore::Node*, WebCore::Range* replacingRange, WebCore::EditorInsertAction);
67 bool shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*);
68 bool shouldMoveRangeAfterDelete(WebCore::Range*, WebCore::Range*);
89 virtual bool shouldChangeSelectedRange(WebCore::Range* fromRange, WebCore::Range* toRange, WebCore::EAffinity, bool stillSelecting)
    [all...]
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.h 42 virtual bool shouldDeleteRange(WebCore::Range*);
52 virtual bool shouldBeginEditing(WebCore::Range*);
53 virtual bool shouldEndEditing(WebCore::Range*);
54 virtual bool shouldInsertNode(WebCore::Node*, WebCore::Range*, WebCore::EditorInsertAction);
55 virtual bool shouldInsertText(const WTF::String&, WebCore::Range*, WebCore::EditorInsertAction);
56 virtual bool shouldChangeSelectedRange(WebCore::Range*, WebCore::Range*, WebCore::EAffinity, bool);
58 virtual bool shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*);
59 virtual bool shouldMoveRangeAfterDelete(WebCore::Range*, WebCore::Range*);
    [all...]
  /development/tools/emulator/opengl/host/libs/Translator/GLcommon/
RangeManip.cpp 19 bool Range::rangeIntersection(const Range& r,Range& rOut) const {
31 bool Range::rangeUnion(const Range& r,Range& rOut) const {
43 void RangeList::addRange(const Range& r) {
75 void RangeList::delRange(const Range& r,RangeList& deleted) {
78 Range intersection;
79 Range temp
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFDebugAranges.h 22 struct Range {
23 explicit Range(uint64_t lo = -1ULL, uint64_t hi = -1ULL,
46 static bool SortedOverlapCheck(const Range &curr_range,
47 const Range &next_range, uint32_t n) {
53 bool contains(const Range &range) const {
54 return LoPC <= range.LoPC && range.HiPC() <= HiPC();
58 uint64_t LoPC; // Start of address range
59 uint32_t Length; // End of address range (not including this address
    [all...]
  /external/webkit/Source/WebCore/dom/
DocumentMarkerController.h 39 class Range;
48 void addMarker(Range*, DocumentMarker::MarkerType, String description = String());
51 bool hasMarkers(Range*, DocumentMarker::MarkerTypes = DocumentMarker::AllMarkers());
53 // When a marker partially overlaps with range, if removePartiallyOverlappingMarkers is true, we completely
55 // the portion that is outside of the range.
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/llvm/lib/CodeGen/
MachineLoopRanges.cpp 50 MachineLoopRange *&Range = Cache[Loop];
51 if (!Range)
52 Range = new MachineLoopRange(Loop, Allocator, *Indexes);
53 return Range;
64 const std::pair<SlotIndex, SlotIndex> &Range = Indexes.getMBBRange(*I);
65 Intervals.insert(Range.first, Range.second, 1u);
66 Area += Range.first.distance(Range.second);
70 /// overlaps - Return true if this loop overlaps the given range of machin
    [all...]

Completed in 629 milliseconds

1 2 3 4 5 6 7 8 91011>>