Searched defs:Range (Results 26 - 50 of 188) sorted by relevance

12345678

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DTimeRanges.h45 struct Range { struct in class:blink::TimeRanges
48 Range() { } function in struct:blink::TimeRanges::Range
49 Range(double start, double end) function in struct:blink::TimeRanges::Range
62 inline bool isOverlappingRange(const Range& range) const
67 inline bool isContiguousWithRange(const Range& range) const
72 inline Range unionWithOverlappingOrContiguousRange(const Range& range) const
74 Range ret;
82 inline bool isBeforeRange(const Range& range) const
123 WillBeHeapVector<Range> m_range
[all...]
/external/lldb/include/lldb/Symbol/
H A DBlock.h47 typedef RangeList::Entry Range; typedef in class:lldb_private::Block
102 AddRange (const Range& range);
151 Contains (const Range& range) const;
445 GetRangeContainingOffset (const lldb::addr_t offset, Range &range);
/external/lldb/source/Utility/
H A DRange.cpp1 //===--------------------- Range.cpp -----------------------------*- C++ -*-===//
10 #include "lldb/Utility/Range.h"
14 Range::Range (const Range& rng) : function in class:Range
21 Range::Range (Range::ValueType low, function in class:Range
22 Range::ValueType high) :
30 Range
[all...]
/external/llvm/include/llvm/Support/
H A DUnicodeCharRanges.h32 inline bool operator<(uint32_t Value, UnicodeCharRange Range) { argument
33 return Value < Range.Lower;
35 inline bool operator<(UnicodeCharRange Range, uint32_t Value) { argument
36 return Range.Upper < Value;
/external/qemu/include/qemu/
H A Drange.h15 struct Range { struct
20 static inline void range_extend(Range *range, Range *extend_by)
/external/chromium_org/v8/tools/profviz/
H A Dcomposer.js80 function Range(start, end) {
90 Range.prototype.duration = function() { return this.end - this.start; }
175 new Range(tick - kTickHalfDuration, tick + kTickHalfDuration));
199 result.push(new Range(merge_start, merge_end));
208 result.push(new Range(Math.max(ranges[i].start, start),
240 var new_range = new Range(last_time_stamp[thread_id], start);
256 var new_range = new Range(last_time_stamp[thread_id], end);
88 Range.prototype.duration = function() { return this.end - this.start; } class
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugTokenStream.cs64 public virtual int Range property in class:Antlr.Runtime.Debug.DebugTokenStream
68 return input.Range;
/external/chromium_org/net/base/
H A Dip_pattern.cc25 struct Range { struct in class:net::IPPattern::ComponentPattern
27 Range(uint32 min, uint32 max) : minimum(min), maximum(max) {} function in struct:net::IPPattern::ComponentPattern::Range
31 typedef std::vector<Range> RangeVector;
41 ranges_.push_back(Range(min, max));
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeNumericFieldElement.h54 struct Range { struct in class:blink::DateTimeNumericFieldElement
55 Range(int minimum, int maximum) : minimum(minimum), maximum(maximum) { } function in struct:blink::DateTimeNumericFieldElement::Range
65 DateTimeNumericFieldElement(Document&, FieldOwner&, const Range&, const Range& hardLimits, const String& placeholder, const Step& = Step());
70 const Range& range() const { return m_range; }
98 const Range m_range;
99 const Range m_hardLimits;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebRange.cpp38 #include "core/dom/Range.h"
114 WebRange::WebRange(const PassRefPtrWillBeRawPtr<Range>& range)
119 WebRange::operator PassRefPtrWillBeRawPtr<Range>() const
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A D__init__.py35 from Regexps import RE, Seq, Alt, Rep1, Empty, Str, Any, AnyBut, AnyChar, Range namespace
/external/chromium_org/ui/gfx/range/
H A Drange.cc16 Range::Range() function in class:gfx::Range
21 Range::Range(size_t start, size_t end) function in class:gfx::Range
26 Range::Range(size_t position) function in class:gfx::Range
32 const Range Range::InvalidRange() {
33 return Range(std::numeric_limits<size_t>::max());
36 bool Range
[all...]
/external/clang/include/clang/Tooling/
H A DRefactoring.h36 class Range { class in namespace:clang::tooling
38 Range() : Offset(0), Length(0) {} function in class:clang::tooling::Range
39 Range(unsigned Offset, unsigned Length) : Offset(Offset), Length(Length) {} function in class:clang::tooling::Range
47 /// \name Range Predicates
50 bool overlapsWith(Range RHS) const {
55 bool contains(Range RHS) const {
90 Replacement(const SourceManager &Sources, const CharSourceRange &Range,
121 const CharSourceRange &Range,
125 Range ReplacementRange;
181 std::vector<Range>
236 const CharSourceRange Range = local
[all...]
/external/llvm/lib/DebugInfo/
H A DDWARFDebugAranges.h34 struct Range { struct in class:llvm::DWARFDebugAranges
35 explicit Range(uint64_t LowPC = -1ULL, uint64_t HighPC = -1ULL, function in struct:llvm::DWARFDebugAranges::Range
54 bool operator<(const Range &other) const {
77 typedef std::vector<Range> RangeColl;
/external/lzma/Java/SevenZip/Compression/RangeCoder/
H A DDecoder.java12 int Range; field in class:Decoder
30 Range = -1;
40 Range >>>= 1;
41 int t = ((Code - Range) >>> 31);
42 Code -= Range & (t - 1);
45 if ((Range & kTopMask) == 0)
48 Range <<= 8;
57 int newBound = (Range >>> kNumBitModelTotalBits) * prob;
60 Range = newBound;
62 if ((Range
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugTokenStream.cs59 public virtual int Range { property in class:Antlr.Runtime.Debug.DebugTokenStream
61 return input.Range;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DLegacyCommonTokenStream.cs112 public virtual int Range property in class:Antlr.Runtime.LegacyCommonTokenStream
355 if (i > Range)
356 Range = i;
/external/chromium_org/ash/wm/workspace/
H A Dmagnetism_matcher.h51 typedef std::pair<int,int> Range; typedef in class:ash::MagnetismEdgeMatcher
52 typedef std::vector<Range> Ranges;
55 void UpdateRanges(const Range& range);
87 Range GetPrimaryRange(const gfx::Rect& bounds) const {
91 return Range(bounds.y(), bounds.bottom());
94 return Range(bounds.x(), bounds.right());
97 return Range();
100 Range GetSecondaryRange(const gfx::Rect& bounds) const {
104 return Range(bounds.x(), bounds.right());
107 return Range(bound
[all...]
/external/chromium_org/chrome/browser/ui/webui/
H A Dhistory_ui.h125 enum Range { enum in class:BrowsingHistoryHandler
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dpath.cc92 return Range(paths_, 0, paths_.size());
95 std::string Path::Range(size_t start, size_t end) const { function in class:nacl_io::Path
96 return Range(paths_, start, end);
155 return Range(paths, 0, paths.size());
159 std::string Path::Range(const StringArray_t& paths, size_t start, size_t end) { function in class:nacl_io::Path
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dsandbox_bpf.h191 struct Range { struct in class:sandbox::SandboxBPF
192 Range(uint32_t f, uint32_t t, const ErrorCode& e) function in struct:sandbox::SandboxBPF::Range
197 typedef std::vector<Range> Ranges;
/external/chromium_org/ui/gfx/geometry/
H A Dcubic_bezier.cc90 void CubicBezier::Range(double* min, double* max) const { function in class:gfx::CubicBezier
/external/chromium_org/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/clang/include/clang/AST/
H A DRawCommentList.h110 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
111 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); }
112 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
126 SourceRange Range; member in class:clang::RawComment
150 Range(SR), RawTextValid(false), BriefTextValid(false), Kind(K),
/external/clang/lib/Sema/
H A DSemaStmtAttr.cpp27 SourceRange Range) {
32 SourceLocation L = S.getLocForEndOfToken(Range.getEnd());
198 SourceRange Range) {
206 return handleFallThroughAttr(S, St, A, Range);
208 return handleLoopHintAttr(S, St, A, Range);
219 SourceRange Range) {
222 if (Attr *a = ProcessStmtAttribute(*this, S, *l, Range))
231 return ActOnAttributedStmt(Range.getBegin(), Attrs, S);
26 handleFallThroughAttr(Sema &S, Stmt *St, const AttributeList &A, SourceRange Range) argument
197 ProcessStmtAttribute(Sema &S, Stmt *St, const AttributeList &A, SourceRange Range) argument
218 ProcessStmtAttributes(Stmt *S, AttributeList *AttrList, SourceRange Range) argument

Completed in 663 milliseconds

12345678