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

1234567

/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;
H A DBufferedTokenStream.cs112 public virtual int Range property in class:Antlr.Runtime.BufferedTokenStream
305 if (i > Range)
306 Range = i;
/external/chromium_org/ash/wm/workspace/
H A Dmagnetism_matcher.h52 typedef std::pair<int,int> Range; typedef in class:ash::internal::MagnetismEdgeMatcher
53 typedef std::vector<Range> Ranges;
56 void UpdateRanges(const Range& range);
88 Range GetPrimaryRange(const gfx::Rect& bounds) const {
92 return Range(bounds.y(), bounds.bottom());
95 return Range(bounds.x(), bounds.right());
98 return Range();
101 Range GetSecondaryRange(const gfx::Rect& bounds) const {
105 return Range(bounds.x(), bounds.right());
108 return Range(bound
[all...]
/external/chromium_org/cc/resources/
H A Dtile_priority.cc12 // TODO(qinmin): modify ui/range/Range.h to support template so that we
14 struct Range { struct in namespace:__anon4137
15 Range(float start, float end) : start_(start), end_(end) {} function in struct:__anon4137::Range
21 inline bool Intersects(const Range& a, const Range& b) {
25 inline Range Intersect(const Range& a, const Range& b) {
26 return Range(std::max(a.start_, b.start_), std::min(a.end_, b.end_));
29 bool Range
[all...]
/external/chromium_org/chrome/browser/ui/webui/
H A Dhistory_ui.h120 enum Range { enum in class:BrowsingHistoryHandler
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dpath.cc85 return Range(paths_, 0, paths_.size());
88 std::string Path::Range(size_t start, size_t end) const { function in class:nacl_io::Path
89 return Range(paths_, start, end);
145 return Range(paths, 0, paths.size());
149 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.h194 struct Range { struct in class:playground2::Sandbox
195 Range(uint32_t f, uint32_t t, const ErrorCode& e) function in struct:playground2::Sandbox::Range
203 typedef std::vector<Range> Ranges;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DRange.h50 class Range : public RefCounted<Range>, public ScriptWrappable { class in namespace:WebCore
52 static PassRefPtr<Range> create(PassRefPtr<Document>);
53 static PassRefPtr<Range> create(PassRefPtr<Document>, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset);
54 static PassRefPtr<Range> create(PassRefPtr<Document>, const Position&, const Position&);
55 ~Range();
79 short compareBoundaryPoints(CompareHow, const Range* sourceRange, ExceptionState&) const;
96 PassRefPtr<Range> cloneRange(ExceptionState&) const;
153 explicit Range(PassRefPtr<Document>);
154 Range(PassRefPt
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebRange.cpp41 #include "core/dom/Range.h"
55 class WebRangePrivate : public Range {
146 WebRange::WebRange(const WTF::PassRefPtr<WebCore::Range>& range)
151 WebRange& WebRange::operator=(const WTF::PassRefPtr<WebCore::Range>& range)
157 WebRange::operator WTF::PassRefPtr<WebCore::Range>() const
159 return PassRefPtr<Range>(const_cast<WebRangePrivate*>(m_private));
/external/chromium_org/third_party/angle_dx11/src/libGLESv2/
H A Dmathutil.h150 struct Range struct in namespace:rx
152 Range() {} function in struct:rx::Range
153 Range(int lo, int hi) : start(lo), end(hi) { ASSERT(lo <= hi); } function in struct:rx::Range
/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 DAttr.h43 SourceRange Range; member in class:clang::Attr
77 : Range(R), AttrKind(AK), SpellingListIndex(SpellingListIndex),
88 SourceLocation getLocation() const { return Range.getBegin(); }
89 SourceRange getRange() const { return Range; }
90 void setRange(SourceRange R) { Range = R; }
H A DRawCommentList.h111 return Range;
129 SourceRange Range; member in class:clang::RawComment
158 Range(SR), RawTextValid(false), BriefTextValid(false), Kind(K),
/external/clang/lib/Sema/
H A DTargetAttributesSema.cpp108 DLLImportAttr *Sema::mergeDLLImportAttr(Decl *D, SourceRange Range, argument
111 Diag(Range.getBegin(), diag::warn_attribute_ignored) << "dllimport";
127 return ::new (Context) DLLImportAttr(Range, Context,
164 DLLExportAttr *Sema::mergeDLLExportAttr(Decl *D, SourceRange Range, argument
174 return ::new (Context) DLLExportAttr(Range, Context,
/external/clang/tools/clang-format/
H A Dgit-clang-format54 Range = collections.namedtuple('Range', 'start, count') variable
274 list of line `Range`s."""
287 matches.setdefault(filename, []).append(Range(start_line, line_count))
/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/unittests/Support/
H A DIntegersSubsetTest.cpp31 typedef IntRange<Int> Range; typedef in namespace:__anon21879
39 std::vector<Range> Ranges;
45 Ranges.push_back(Range(Int(i*10), Int(i*10 + 8)));
64 Ranges.push_back(Range(Int(10), Int(10)));
70 Ranges.push_back(Range(Int(12), Int(15)));
80 Ranges.push_back(Range(Int(10), Int(10)));
81 Ranges.push_back(Range(Int(15), Int(19)));
93 Ranges.push_back(Range(Int(0), Int(9)));
94 Ranges.push_back(Range(Int(5), Int(9)));
106 Ranges.push_back(Range(In
[all...]
/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoder.cs12 public uint Range; field in class:SevenZip.Compression.RangeCoder.Encoder
33 Range = 0xFFFFFFFF;
56 Low += start * (Range /= total);
57 Range *= size;
58 while (Range < kTopValue)
60 Range <<= 8;
86 Range >>= 1;
88 Low += Range;
89 if (Range < kTopValue)
91 Range <<
125 public uint Range; field in class:SevenZip.Compression.RangeCoder.Decoder
[all...]
/external/lzma/Java/SevenZip/Compression/RangeCoder/
H A DEncoder.java15 int Range; field in class:Encoder
35 Range = -1;
74 Range >>>= 1;
76 Low += Range;
77 if ((Range & Encoder.kTopMask) == 0)
79 Range <<= 8;
105 int newBound = (Range >>> kNumBitModelTotalBits) * prob;
108 Range = newBound;
114 Range -= newBound;
117 if ((Range
[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...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBufferedTokenStream.cs103 public virtual int Range { property in class:Antlr.Runtime.BufferedTokenStream
268 if (i > Range)
269 Range = i;
H A DLegacyCommonTokenStream.cs108 public virtual int Range { property in class:Antlr.Runtime.LegacyCommonTokenStream
312 if (i > Range)
313 Range = i;
/external/chromium_org/gpu/command_buffer/service/
H A Dbuffer_manager.h76 class Range { class in class:gpu::gles2::Buffer
78 Range(GLuint offset, GLsizei count, GLenum type) function in class:gpu::gles2::Buffer::Range
86 bool operator() (const Range& lhs, const Range& rhs) const {
167 typedef std::map<Range, GLuint, Range::Less> RangeToMaxValueMap;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_parse.h68 struct tgsi_declaration_range Range; member in struct:tgsi_full_declaration

Completed in 804 milliseconds

1234567