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

12345678910

/external/clang/lib/Tooling/
H A DFixIt.cpp22 StringRef getText(SourceRange Range, const ASTContext &Context) { argument
23 return Lexer::getSourceText(CharSourceRange::getTokenRange(Range),
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DITokenStream.cs50 int Range property in interface:Antlr.Runtime.ITokenStream
/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/include/clang/Sema/
H A DLoopHint.h23 SourceRange Range; member in struct:clang::LoopHint
/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/libmojo/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 {
/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/clang/include/clang/Tooling/
H A DFixIt.h30 StringRef getText(SourceRange Range, const ASTContext &Context);
34 inline SourceRange getSourceRange(const SourceRange &Range) { return Range; } argument
/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/google-breakpad/src/processor/
H A Drange_map.h30 // range_map.h: Range maps.
102 class Range { class in class:google_breakpad::RangeMap
104 Range(const AddressType &base, const EntryType &entry) function in class:google_breakpad::RangeMap::Range
120 typedef std::map<AddressType, Range> AddressToRangeMap;
H A Dstatic_range_map.h86 class Range { class in class:google_breakpad::StaticRangeMap
98 typedef StaticMap<AddressType, Range> AddressToRangeMap;
H A Dmap_serializers.h127 // Convenient type name for Range.
128 typedef typename RangeMap<Address, Entry>::Range Range; typedef in class:google_breakpad::RangeMapSerializer
130 // Serializer for RangeMap's key and Range::base_.
132 // Serializer for RangeMap::Range::entry_.
/external/libchrome/base/trace_event/
H A Dcategory_registry.h30 class Range { class in class:base::trace_event::CategoryRegistry
32 Range(TraceCategory* begin, TraceCategory* end) : begin_(begin), end_(end) { function in class:base::trace_event::CategoryRegistry::Range
87 static Range GetAllCategories();
/external/swiftshader/third_party/subzero/src/
H A DIceSwitchLowering.cpp67 const uint64_t Range = MaxValue - MinValue; local
70 if (NumCases * 2 <= Range)
73 if (Range == UINT64_MAX)
75 const uint64_t TotalRange = Range + 1;
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dutil.rb150 class Range class
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DRangeDateRule.java32 // Range is a package-private class so this should be package-private too, probably
33 // public RangeDateRule(Range[] ranges)
53 ranges.add(new Range(start, rule));
69 Range r = rangeAt(index);
70 Range e = rangeAt(index+1);
95 Range next = rangeAt(index);
99 Range r = next;
115 Range r = rangeAt(startIndex(date));
136 Range r = ranges.get(i);
145 private Range rangeA
157 class Range { class
158 public Range(Date start, DateRule rule) { method in class:Range
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DRangeDateRule.java32 // Range is a package-private class so this should be package-private too, probably
33 // public RangeDateRule(Range[] ranges)
55 ranges.add(new Range(start, rule));
72 Range r = rangeAt(index);
73 Range e = rangeAt(index+1);
99 Range next = rangeAt(index);
103 Range r = next;
120 Range r = rangeAt(startIndex(date));
142 Range r = ranges.get(i);
151 private Range rangeA
163 class Range { class
164 public Range(Date start, DateRule rule) { method in class:Range
[all...]
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
H A DTryWithResourcesEcjFilterTest.java164 final Range range0 = new Range();
165 final Range range1 = new Range();
449 final Range range0 = new Range();
450 final Range range1 = new Range();
612 static class Range { class in class:TryWithResourcesEcjFilterTest
/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/llvm/lib/CodeGen/
H A DSafeStackLayout.cpp28 << "), range " << Regions[i].Range << "\n";
37 const StackColoring::LiveRange &Range) {
38 StackObjects.push_back({V, Size, Alignment, Range});
54 Regions.emplace_back(Start, End, Obj.Range);
60 << ", range " << Obj.Range << "\n");
67 << ", range " << R.Range << "\n");
73 if (Obj.Range.Overlaps(R.Range)) {
97 << ", range " << Obj.Range << "\n");
98 Regions.emplace_back(LastRegionEnd, End, Obj.Range);
36 addObject(const Value *V, unsigned Size, unsigned Alignment, const StackColoring::LiveRange &Range) argument
[all...]
/external/v8/tools/profviz/
H A Dcomposer.js80 function Range(start, end) {
90 Range.prototype.duration = function() { return this.end - this.start; }
173 new Range(tick - kTickHalfDuration, tick + kTickHalfDuration));
197 result.push(new Range(merge_start, merge_end));
206 result.push(new Range(Math.max(ranges[i].start, start),
238 var new_range = new Range(last_time_stamp[thread_id], start);
254 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/clang/include/clang/Tooling/Core/
H A DReplacement.h38 class Range { class in namespace:clang::tooling
40 Range() : Offset(0), Length(0) {} function in class:clang::tooling::Range
41 Range(unsigned Offset, unsigned Length) : Offset(Offset), Length(Length) {} function in class:clang::tooling::Range
49 /// \name Range Predicates
52 bool overlapsWith(Range RHS) const {
57 bool contains(Range RHS) const {
63 bool operator==(const Range &RHS) const {
97 Replacement(const SourceManager &Sources, const CharSourceRange &Range,
131 const CharSourceRange &Range,
136 Range ReplacementRang
246 const CharSourceRange Range = local
[all...]

Completed in 2035 milliseconds

12345678910