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

12345

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DITokenStream.cs50 int Range property in interface:Antlr.Runtime.ITokenStream
H A DLegacyCommonTokenStream.cs112 public virtual int Range property in class:Antlr.Runtime.LegacyCommonTokenStream
355 if (i > Range)
356 Range = i;
/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/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/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
H A DTargetAttributesSema.cpp154 DLLImportAttr *Sema::mergeDLLImportAttr(Decl *D, SourceRange Range) { argument
156 Diag(Range.getBegin(), diag::warn_attribute_ignored) << "dllimport";
163 return ::new (Context) DLLImportAttr(Range, Context);
197 DLLExportAttr *Sema::mergeDLLExportAttr(Decl *D, SourceRange Range) { argument
206 return ::new (Context) DLLExportAttr(Range, Context);
/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/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/clang/include/clang/Tooling/
H A DRefactoring.h59 Replacement(SourceManager &Sources, const CharSourceRange &Range,
94 void setFromSourceRange(SourceManager &Sources, const CharSourceRange &Range,
142 const CharSourceRange Range = local
144 setFromSourceRange(Sources, Range, ReplacementText);
/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/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/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/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/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/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/clang/include/clang/AST/
H A DRawCommentList.h103 return Range;
120 SourceRange Range; member in class:clang::RawComment
144 Range(SR), RawTextValid(false), BriefTextValid(false), Kind(K),
/external/guava/guava/src/com/google/common/collect/
H A DRange.java79 * <p>Instances of {@code Range} are immutable. It is strongly encouraged to
112 public final class Range<C extends Comparable> class in inherits:Predicate,Serializable
117 Range(Cut<C> lowerBound, Cut<C> upperBound) { method in class:Range
210 * Predicate} interface. When using a reference of type {@code Range}, always
281 public boolean encloses(Range<C> other) {
313 public Range<C> intersection(Range<C> other) {
344 public boolean isConnected(Range<C> other) {
369 public Range<C> span(Range<
[all...]
/external/llvm/include/llvm/
H A DMDBuilder.h77 // Range metadata.
89 Value *Range[2] = { ConstantInt::get(Ty, Lo), ConstantInt::get(Ty, Hi) }; local
90 return MDNode::get(Context, Range);
/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/llvm/unittests/Support/
H A DIntegersSubsetTest.cpp33 typedef IntRange<Int> Range; typedef in namespace:__anon9271
41 std::vector<Range> Ranges;
47 Ranges.push_back(Range(Int(i*10), Int(i*10 + 8)));
66 Ranges.push_back(Range(Int(10), Int(10)));
72 Ranges.push_back(Range(Int(12), Int(15)));
82 Ranges.push_back(Range(Int(10), Int(10)));
83 Ranges.push_back(Range(Int(15), Int(19)));
95 Ranges.push_back(Range(Int(0), Int(9)));
96 Ranges.push_back(Range(Int(5), Int(9)));
108 Ranges.push_back(Range(In
[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...]

Completed in 1108 milliseconds

12345