HomeSort by relevance Sort by last modified time
    Searched defs:Range (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/chromium/testing/gtest/include/gtest/
gtest-param-test.h 86 // Range(begin, end [, step]) - Yields values {begin, begin+step,
91 // ValuesIn(begin,end) container, or an iterator range [begin, end).
218 // Range() returns generators providing sequences of values in a range.
221 // Range(start, end)
224 // Range(start, end, step)
228 // * The generated sequences never include end. For example, Range(1, 5)
229 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2)
242 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) {
248 internal::ParamGenerator<T> Range(T start, T end)
    [all...]
  /external/clang/lib/Index/
ASTLocation.cpp 111 SourceRange Range = getSourceRange();
113 Range.getBegin().print(OS, SourceMgr);
115 Range.getEnd().print(OS, SourceMgr);
  /external/clang/test/SemaCXX/
for-range-no-std.cpp 11 struct Range {};
12 int begin(Range); // expected-note {{not viable}}
13 int end(Range);
33 for (auto b : T()) {} // expected-error {{no matching function for call to 'begin'}} expected-note {{range has type}}
36 for (int b : NS::NoADL()) {} // expected-error {{no matching function for call to 'begin'}} expected-note {{range has type}}
  /external/gtest/include/gtest/
gtest-param-test.h 82 // Range(begin, end [, step]) - Yields values {begin, begin+step,
87 // ValuesIn(begin,end) container, or an iterator range [begin, end).
181 // Range() returns generators providing sequences of values in a range.
184 // Range(start, end)
187 // Range(start, end, step)
191 // * The generated sequences never include end. For example, Range(1, 5)
192 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2)
205 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) {
211 internal::ParamGenerator<T> Range(T start, T end)
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-param-test.h 82 // Range(begin, end [, step]) - Yields values {begin, begin+step,
87 // ValuesIn(begin,end) container, or an iterator range [begin, end).
187 // Range() returns generators providing sequences of values in a range.
190 // Range(start, end)
193 // Range(start, end, step)
197 // * The generated sequences never include end. For example, Range(1, 5)
198 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2)
211 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) {
217 internal::ParamGenerator<T> Range(T start, T end)
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest-param-test.h 82 // Range(begin, end [, step]) - Yields values {begin, begin+step,
87 // ValuesIn(begin,end) container, or an iterator range [begin, end).
182 // Range() returns generators providing sequences of values in a range.
185 // Range(start, end)
188 // Range(start, end, step)
192 // * The generated sequences never include end. For example, Range(1, 5)
193 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2)
206 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) {
212 internal::ParamGenerator<T> Range(T start, T end)
    [all...]
  /development/tools/emulator/opengl/host/libs/Translator/include/GLcommon/
RangeManip.h 21 class Range {
24 Range():m_start(0),m_end(0),m_size(0){};
25 Range(int start,int size):m_start(start),m_end(start+size),m_size(size){};
26 Range(const Range& r):m_start(r.m_start),m_end(r.m_end),m_size(r.m_size){};
31 Range& operator=(const Range& r) {
37 bool operator ==(const Range& r) const {
40 bool operator !=(const Range& r) const {return !((*this) == r);};
41 bool rangeIntersection(const Range& r,Range& rOut) const
    [all...]
  /external/easymock/src/org/easymock/internal/
Range.java 20 public class Range implements Serializable {
28 public Range(int count) {
32 public Range(int minimum, int maximum) {
  /external/webkit/Source/WebCore/html/
TimeRanges.h 67 struct Range {
68 Range() { }
69 Range(float start, float end)
82 inline bool isOverlappingRange(const Range& range) const
84 return isPointInRange(range.m_start) || isPointInRange(range.m_end) || range.isPointInRange(m_start);
87 inline bool isContiguousWithRange(const Range& range) cons
    [all...]
  /external/llvm/lib/CodeGen/
MachineLoopRanges.cpp 50 MachineLoopRange *&Range = Cache[Loop];
51 if (!Range)
52 Range = new MachineLoopRange(Loop, Allocator, *Indexes);
53 return Range;
64 const std::pair<SlotIndex, SlotIndex> &Range = Indexes.getMBBRange(*I);
65 Intervals.insert(Range.first, Range.second, 1u);
66 Area += Range.first.distance(Range.second);
70 /// overlaps - Return true if this loop overlaps the given range of machin
    [all...]
CriticalAntiDepBreaker.cpp 131 assert(Count < InsertPosIndex && "Instruction index out of expected range!");
136 // we don't know the extent of its live-range anymore (now that it
221 // If an alias of the reg is used during the live range, give up.
610 Range = RegRefs.equal_range(AntiDepReg);
611 if (unsigned NewReg = findSuitableFreeRegister(Range.first, Range.second,
623 Q = Range.first, QE = Range.second; Q != QE; ++Q) {
  /external/webkit/Source/WebKit/chromium/src/
WebRange.cpp 34 #include "Range.h"
43 class WebRangePrivate : public Range {
89 WebRange::WebRange(const WTF::PassRefPtr<WebCore::Range>& range)
90 : m_private(static_cast<WebRangePrivate*>(range.releaseRef()))
94 WebRange& WebRange::operator=(const WTF::PassRefPtr<WebCore::Range>& range)
96 assign(static_cast<WebRangePrivate*>(range.releaseRef()));
100 WebRange::operator WTF::PassRefPtr<WebCore::Range>() const
102 return PassRefPtr<Range>(const_cast<WebRangePrivate*>(m_private))
    [all...]
  /external/v8/test/mjsunit/
cyrillic.js 59 function Range(from, to, flags) {
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(first, last, "i").test(last), 9)
    [all...]
  /external/webkit/Source/WebCore/dom/
Range.h 42 class Range : public RefCounted<Range> {
44 static PassRefPtr<Range> create(PassRefPtr<Document>);
45 static PassRefPtr<Range> create(PassRefPtr<Document>, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset);
46 static PassRefPtr<Range> create(PassRefPtr<Document>, const Position&, const Position&);
47 ~Range();
71 short compareBoundaryPoints(CompareHow, const Range* sourceRange, ExceptionCode&) const;
88 PassRefPtr<Range> cloneRange(ExceptionCode&) const;
125 // Expand range to a unit (word or sentence or block or document) boundary.
138 Range(PassRefPtr<Document>)
    [all...]
Range.cpp 25 #include "Range.h"
51 static WTF::RefCountedLeakCounter rangeCounter("Range");
54 inline Range::Range(PassRefPtr<Document> ownerDocument)
66 PassRefPtr<Range> Range::create(PassRefPtr<Document> ownerDocument)
68 return adoptRef(new Range(ownerDocument));
71 inline Range::Range(PassRefPtr<Document> ownerDocument, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset)
91 PassRefPtr<Range> Range::create(PassRefPtr<Document> ownerDocument, PassRefPtr<Node> startContainer, int startOffse (…)
1693 RefPtr<Range> range = Range::create(node->document()); local
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_DecodePadMV_PVOP_s.s 108 Range RN 1
295 ADD Range,High,High ;// Range=64*ScaleFactor
299 ADDLT diffMVdx,diffMVdx,Range ;// diffMVdx+=Range
302 SUBGT diffMVdx,diffMVdx,Range ;// If diffMVdx > High diffMVdx-=Range
313 ADDLT diffMVdx,diffMVdx,Range ;// If diffMVdy<Low diffMVdy+=Range
315 SUBGT diffMVdx,diffMVdx,Range ;// If diffMVdy > High diffMVdy-=Rang
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_DecodePadMV_PVOP_s.s 108 Range RN 1
295 ADD Range,High,High ;// Range=64*ScaleFactor
299 ADDLT diffMVdx,diffMVdx,Range ;// diffMVdx+=Range
302 SUBGT diffMVdx,diffMVdx,Range ;// If diffMVdx > High diffMVdx-=Range
313 ADDLT diffMVdx,diffMVdx,Range ;// If diffMVdy<Low diffMVdy+=Range
315 SUBGT diffMVdx,diffMVdx,Range ;// If diffMVdy > High diffMVdy-=Rang
    [all...]
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 70 /// \brief The source range that covers this preprocessed entity.
71 SourceRange Range;
74 PreprocessedEntity(EntityKind Kind, SourceRange Range)
75 : Kind(Kind), Range(Range) { }
81 /// \brief Retrieve the source range that covers this entire preprocessed
83 SourceRange getSourceRange() const { return Range; }
122 MacroExpansion(IdentifierInfo *Name, SourceRange Range,
124 : PreprocessedEntity(MacroExpansionKind, Range), Name(Name),
144 PreprocessingDirective(EntityKind Kind, SourceRange Range)
    [all...]
  /external/clang/lib/Lex/
PPExpressions.cpp 31 /// conditional and the source range covered by it.
33 SourceRange Range;
43 const SourceRange &getRange() const { return Range; }
45 void setRange(SourceLocation L) { Range.setBegin(L); Range.setEnd(L); }
47 Range.setBegin(B); Range.setEnd(E);
49 void setBegin(SourceLocation L) { Range.setBegin(L); }
50 void setEnd(SourceLocation L) { Range.setEnd(L); }
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 1 //== RangeConstraintManager.cpp - Manage range constraints.------*- C++ -*--==//
30 /// A Range represents the closed range [from, to]. The caller must
31 /// guarantee that from <= to. Note that Range is immutable, so as not
34 class Range : public std::pair<const llvm::APSInt*,
37 Range(const llvm::APSInt &from, const llvm::APSInt &to)
61 class RangeTrait : public llvm::ImutContainerInfo<Range> {
63 // When comparing if one Range is less than another, we should compare
77 typedef llvm::ImmutableSet<Range, RangeTrait> PrimRangeSet;
94 : ranges(F.add(F.getEmptySet(), Range(from, to))) {
    [all...]
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 83 CXSourceRange Range = clang_getDiagnosticRange(Diagnostic, I);
86 clang_getSpellingLocation(clang_getRangeStart(Range),
89 clang_getSpellingLocation(clang_getRangeEnd(Range),
264 CXSourceRange clang_getDiagnosticRange(CXDiagnostic Diag, unsigned Range) {
266 if (!StoredDiag || Range >= StoredDiag->Diag.range_size() ||
272 StoredDiag->Diag.range_begin()[Range]);
297 // Create a range that covers the entire replacement (or
298 // removal) range, adjusting the end of the range to point to
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 191 // Make range comparison
221 uint64_t Range = cast<ConstantInt>(Leaf.High)->getSExtValue() -
223 for (uint64_t j = 0; j < Range; ++j) {
266 // A range counts double, since it requires two compares.
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
EditingUtils.java 85 Range r = getWordRangeAtCursor(connection, separators);
95 Range range = getWordRangeAtCursor(connection, separators); local
96 if (range == null) return;
100 // of valid range after deleting text.
101 int newCursor = getCursorPosition(connection) - range.mCharsBefore;
103 connection.deleteSurroundingText(0, range.mCharsBefore + range.mCharsAfter);
107 * Represents a range of text, relative to the current cursor position.
109 public static class Range {
266 EditingUtils.Range range = getWordRangeAtCursor(ic, wordSeparators); local
    [all...]
  /external/clang/include/clang/Basic/
SourceLocation.h 183 /// SourceRange - a trival tuple used to represent a source range.
210 /// CharSourceRange - This class represents a character granular source range.
212 /// of the range, or it can specify the start or the range and the start of the
213 /// last token of the range (a "token range"). In the token range case, the
215 /// range.
217 SourceRange Range;
221 CharSourceRange(SourceRange R, bool ITR) : Range(R),IsTokenRange(ITR){
    [all...]
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 118 /// MemsetRange - Represents a range of memset'd bytes with the ByteVal value.
125 /// the first store, we make a range [1, 2). The second store extends the range
126 /// to [0, 2). The third makes a new range [2, 3). The fourth store joins the
130 // Start/End - A semi range that describes the span that this range covers.
131 // The range is closed at the start and open at the end: [Start, End).
135 /// range.
141 /// TheStores - The actual stores that make up this range.
232 /// new range for the specified store at the specified offset, merging int
    [all...]

Completed in 2634 milliseconds

1 2 3