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

1 2 3 4 5 6 7 8 91011

  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
StatisticTest.cpp 24 extractCounters(const std::vector<std::pair<StringRef, unsigned>> &Range,
26 for (const auto &S : Range) {
91 const auto Range = GetStatistics();
92 EXPECT_NE(Range.begin(), Range.end());
93 EXPECT_EQ(Range.begin() + 2, Range.end());
97 extractCounters(Range, S1, S2);
110 auto &Range = GetStatistics();
111 EXPECT_EQ(Range.begin(), Range.end())
    [all...]
  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ITokenStream.cs 48 int Range {
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
ITokenStream.cs 50 int Range
  /external/clang/include/clang/Sema/
LoopHint.h 22 // Source range of the directive.
23 SourceRange Range;
  /external/clang/test/SemaCXX/
for-range-no-std.cpp 12 struct Range {};
13 int begin(Range); // expected-note {{not viable}}
14 int end(Range);
34 for (auto b : T()) {} // expected-error {{invalid range expression of type 'T'}}
37 for (int b : NS::NoADL()) {} // expected-error {{invalid range expression of type 'NS::NoADL'}}
  /external/google-breakpad/src/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/guava/guava-tests/test/com/google/common/collect/
RangeNonGwtTest.java 24 * Test cases for {@link Range} which cannot run as GWT tests.
34 tester.testAllPublicStaticMethods(Range.class);
35 tester.testAllPublicStaticMethods(Range.class);
37 tester.testAllPublicInstanceMethods(Range.all());
38 tester.testAllPublicInstanceMethods(Range.open(1, 3));
ImmutableRangeMapTest.java 34 private static final ImmutableList<Range<Integer>> RANGES;
38 ImmutableList.Builder<Range<Integer>> builder = ImmutableList.builder();
40 builder.add(Range.<Integer>all());
45 builder.add(Range.upTo(i, type));
46 builder.add(Range.downTo(i, type));
58 builder.add(Range.range(i, lowerType, j, upperType));
70 builder.put(Range.closedOpen(i, i), 1);
76 builder.put(Range.openClosed(i, i), 1);
84 for (Range<Integer> range1 : RANGES)
    [all...]
ContiguousSetTest.java 78 ContiguousSet.create(Range.closed(1, 3), integers()),
79 ContiguousSet.create(Range.closedOpen(1, 4), integers()),
80 ContiguousSet.create(Range.openClosed(0, 3), integers()),
81 ContiguousSet.create(Range.open(0, 4), integers()),
82 ContiguousSet.create(Range.closed(1, 3), NOT_EQUAL_TO_INTEGERS),
83 ContiguousSet.create(Range.closedOpen(1, 4), NOT_EQUAL_TO_INTEGERS),
84 ContiguousSet.create(Range.openClosed(0, 3), NOT_EQUAL_TO_INTEGERS),
85 ContiguousSet.create(Range.open(0, 4), NOT_EQUAL_TO_INTEGERS),
90 ContiguousSet.create(Range.closed(Integer.MIN_VALUE, Integer.MAX_VALUE), integers()),
91 ContiguousSet.create(Range.<Integer>all(), integers()))
122 Range<Integer> range = Range.lessThan(0); local
130 Range<Integer> range = Range.greaterThan(0); local
    [all...]
  /external/libaom/libaom/third_party/googletest/src/googletest/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/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest-param-test.h 85 // Range(begin, end [, step]) - Yields values {begin, begin+step,
90 // ValuesIn(begin,end) container, or an iterator range [begin, end).
212 // Range() returns generators providing sequences of values in a range.
215 // Range(start, end)
218 // Range(start, end, step)
222 // * The generated sequences never include end. For example, Range(1, 5)
223 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2)
236 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) {
242 internal::ParamGenerator<T> Range(T start, T end)
    [all...]
  /external/llvm/utils/unittest/googletest/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).
217 // Range() returns generators providing sequences of values in a range.
220 // Range(start, end)
223 // Range(start, end, step)
227 // * The generated sequences never include end. For example, Range(1, 5)
228 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2)
241 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) {
247 internal::ParamGenerator<T> Range(T start, T end)
    [all...]
  /external/mesa3d/src/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/swiftshader/third_party/LLVM/utils/unittest/googletest/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).
217 // Range() returns generators providing sequences of values in a range.
220 // Range(start, end)
223 // Range(start, end, step)
227 // * The generated sequences never include end. For example, Range(1, 5)
228 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2)
241 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) {
247 internal::ParamGenerator<T> Range(T start, T end)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googletest/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/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ContiguousSetTest.java 61 ContiguousSet.create(Range.closed(1, 3), integers()),
62 ContiguousSet.create(Range.closedOpen(1, 4), integers()),
63 ContiguousSet.create(Range.openClosed(0, 3), integers()),
64 ContiguousSet.create(Range.open(0, 4), integers()),
65 ContiguousSet.create(Range.closed(1, 3), NOT_EQUAL_TO_INTEGERS),
66 ContiguousSet.create(Range.closedOpen(1, 4), NOT_EQUAL_TO_INTEGERS),
67 ContiguousSet.create(Range.openClosed(0, 3), NOT_EQUAL_TO_INTEGERS),
68 ContiguousSet.create(Range.open(0, 4), NOT_EQUAL_TO_INTEGERS),
73 ContiguousSet.create(Range.closed(Integer.MIN_VALUE, Integer.MAX_VALUE), integers()),
74 ContiguousSet.create(Range.<Integer>all(), integers()))
84 Range<Integer> range = Range.lessThan(0); local
92 Range<Integer> range = Range.greaterThan(0); local
    [all...]
  /device/google/cuttlefish_common/common/vsoc/shm/
circqueue.h 52 struct Range {
53 // Points to the first bytes that is part of the range
55 // Points to the first byte that is not in the range. This is similar to
62 * Copy bytes from buffer_in into the part of the queue specified by Range.
64 void CopyInRange(const char* buffer_in, const Range& t);
67 * Copy the bytes specified by range to the given buffer. They caller must
68 * ensure that the buffer is large enough to hold the content of the range.
70 void CopyOutRange(const Range& t, char* buffer_out);
82 * Indexes pointing to the reserved space will be placed in range.
89 Range* t, bool non_blocking)
    [all...]
  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
FastQueue.cs 63 public virtual int Range {
82 if (absIndex > Range)
83 Range = absIndex;
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
FastQueue.cs 67 public virtual int Range
89 if (absIndex > Range)
90 Range = absIndex;
  /external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
MPIBugReporter.cpp 38 SourceRange Range = RequestRegion->sourceRange();
40 if (Range.isValid())
41 Report->addRange(Range);
60 SourceRange Range = RequestRegion->sourceRange();
61 if (Range.isValid())
62 Report->addRange(Range);
81 SourceRange Range = RequestRegion->sourceRange();
82 if (Range.isValid())
83 Report->addRange(Range);
  /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/google-breakpad/src/processor/
range_map.h 30 // range_map.h: Range maps.
32 // A range map associates a range of addresses with a specific object. This
34 // address space. The range map makes it simple to determine which object is
36 // range associated with an object.
57 // Inserts a range into the map. Returns false for a parameter error,
58 // or if the location of the range would conflict with a range already
64 // Locates the range encompassing the supplied address. If there is
65 // no such range, returns false. entry_base and entry_size, if non-NULL
    [all...]
static_range_map.h 55 // Locates the range encompassing the supplied address. If there is
56 // no such range, returns false. entry_base and entry_size, if non-NULL,
57 // are set to the base and size of the entry's range.
61 // Locates the range encompassing the supplied address, if one exists.
62 // If no range encompasses the supplied address, locates the nearest range
64 // if no range meets these criteria. entry_base and entry_size, if
65 // non-NULL, are set to the base and size of the entry's range.
71 // occupy, locates the range at the index specified by index. Returns
74 // range
    [all...]
  /external/googletest/googletest/include/gtest/
gtest-param-test.h 81 // Range(begin, end [, step]) - Yields values {begin, begin+step,
86 // ValuesIn(begin,end) container, or an iterator range [begin, end).
204 // Range() returns generators providing sequences of values in a range.
207 // Range(start, end)
210 // Range(start, end, step)
214 // * The generated sequences never include end. For example, Range(1, 5)
215 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2)
228 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) {
234 internal::ParamGenerator<T> Range(T start, T end)
    [all...]
  /external/libkmsxx/kms++/inc/kms++/
property.h 14 Range,

Completed in 2017 milliseconds

1 2 3 4 5 6 7 8 91011