Searched defs:Range (Results 1 - 25 of 168) sorted by relevance

1234567

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DITokenStream.cs50 int Range property in interface:Antlr.Runtime.ITokenStream
/external/chromium_org/net/base/
H A Dfile_stream_metrics_win.cc15 struct Range { struct in namespace:net::__anon9179
24 const Range kErrorRangeList[] = {
/external/chromium_org/ui/gfx/range/
H A Drange_win.cc13 Range::Range(const CHARRANGE& range, LONG total_length) { function in class:gfx::Range
32 CHARRANGE Range::ToCHARRANGE() const {
H A Drange.h29 // A Range contains two integer values that represent a numeric range, like the
31 // position; when they are the same, the Range is akin to a caret. Note that
34 class GFX_EXPORT Range { class in namespace:gfx
37 Range();
40 Range(size_t start, size_t end);
43 explicit Range(size_t position);
47 explicit Range(const NSRange& range);
51 Range(const CHARRANGE& range, LONG total_length = -1);
55 static const Range InvalidRange();
80 bool operator==(const Range
[all...]
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/Rewrite/Core/
H A DHTMLRewrite.h40 inline void HighlightRange(Rewriter &R, SourceRange Range, argument
42 HighlightRange(R, Range.getBegin(), Range.getEnd(), StartTag, EndTag);
/external/clang/lib/Sema/
H A DSemaStmtAttr.cpp28 SourceRange Range) {
33 SourceLocation L = Lexer::getLocForEndOfToken(Range.getEnd(), 0,
49 SourceRange Range) {
57 return handleFallThroughAttr(S, St, A, Range);
68 SourceRange Range) {
71 if (Attr *a = ProcessStmtAttribute(*this, S, *l, Range))
78 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
67 ProcessStmtAttributes(Stmt *S, AttributeList *AttrList, SourceRange Range) argument
/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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DITokenStream.cs48 int Range { property in interface:Antlr.Runtime.ITokenStream
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DFastQueue.cs63 public virtual int Range { property in class:Antlr.Runtime.Misc.FastQueue
82 if (absIndex > Range)
83 Range = absIndex;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
H A DFastQueue.cs67 public virtual int Range property in class:Antlr.Runtime.Misc.FastQueue
89 if (absIndex > Range)
90 Range = absIndex;
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/
H A Ddb.h33 struct Range { struct in namespace:leveldb
37 Range() { } function in struct:leveldb::Range
38 Range(const Slice& s, const Slice& l) : start(s), limit(l) { } function in struct:leveldb::Range
128 virtual void GetApproximateSizes(const Range* range, int n,
/external/easymock/src/org/easymock/internal/
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/jmonkeyengine/engine/src/core/com/jme3/font/
H A DColorTags.java19 private LinkedList<Range> colors = new LinkedList<Range>();
35 LinkedList<Range> getTags() {
54 Range range = new Range(builder.length(), colorStr);
65 class Range { class in class:ColorTags
68 Range(int start, String colorStr) { method in class:ColorTags.Range
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dutil.rb150 class Range class
/external/chromium_org/media/cast/net/
H A Dcast_net_defines.h62 enum Range { enum in class:media::cast::FrameIdWrapHelper
74 Range range_;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DTimeRanges.h78 struct Range { struct in class:WebCore::TimeRanges
79 Range() { } function in struct:WebCore::TimeRanges::Range
80 Range(double start, double end) function in struct:WebCore::TimeRanges::Range
93 inline bool isOverlappingRange(const Range& range) const
98 inline bool isContiguousWithRange(const Range& range) const
103 inline Range unionWithOverlappingOrContiguousRange(const Range& range) const
105 Range ret;
113 inline bool isBeforeRange(const Range& range) const
119 Vector<Range> m_range
[all...]
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DTriangleCollector.java63 private static class Range { class in class:TriangleCollector
67 public Range(int start, int length) { method in class:TriangleCollector.Range
101 HashMap<Integer, Range> ranges = new HashMap<Integer, Range>();
104 Range r = ranges.get(tris.get(i).getGeometryIndex());
110 ranges.put(tris.get(i).getGeometryIndex(), new Range(i, 1));
119 for (Map.Entry<Integer, Range> entry : ranges.entrySet()){
/external/chromium_org/v8/tools/profviz/
H A Dcomposer.js79 function Range(start, end) {
89 Range.prototype.duration = function() { return this.end - this.start; }
171 new Range(tick - kTickHalfDuration, tick + kTickHalfDuration));
195 result.push(new Range(merge_start, merge_end));
204 result.push(new Range(Math.max(ranges[i].start, start),
236 var new_range = new Range(last_time_stamp[thread_id], start);
252 var new_range = new Range(last_time_stamp[thread_id], end);
87 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/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeNumericFieldElement.h54 struct Range { struct in class:WebCore::DateTimeNumericFieldElement
55 Range(int minimum, int maximum) : minimum(minimum), maximum(maximum) { } function in struct:WebCore::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; }
96 const Range m_range;
97 const Range m_hardLimits;
/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 {
57 bool contains(Range RHS) const {
92 Replacement(SourceManager &Sources, const CharSourceRange &Range,
128 void setFromSourceRange(SourceManager &Sources, const CharSourceRange &Range,
132 Range ReplacementRange;
198 const CharSourceRange Range local
[all...]
/external/llvm/lib/DebugInfo/
H A DDWARFDebugAranges.h23 struct Range { struct in class:llvm::DWARFDebugAranges
24 explicit Range(uint64_t lo = -1ULL, uint64_t hi = -1ULL, function in struct:llvm::DWARFDebugAranges::Range
47 static bool SortedOverlapCheck(const Range &curr_range,
48 const Range &next_range, uint32_t n) {
54 bool contains(const Range &range) const {
77 const Range *rangeAtIndex(uint32_t idx) const {
93 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/marisa-trie/lib/marisa/
H A Drange.h8 class Range { class in namespace:marisa
10 Range() : begin_(0), end_(0), pos_(0) {} function in class:marisa::Range
11 Range(UInt32 begin, UInt32 end, UInt32 pos) function in class:marisa::Range
43 WRange(const Range &range, double weight)
61 const Range &range() const {
78 Range range_;

Completed in 1246 milliseconds

1234567