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

1 2 3 4 5 6 7 8 91011>>

  /system/netd/server/
UidRanges.h 31 typedef std::pair<uid_t, uid_t> Range;
37 const std::vector<Range>& getRanges() const;
46 std::vector<Range> mRanges;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ITokenStream.cs 48 int Range {
  /external/antlr/antlr-3.4/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/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...]
ImmutableRangeSetTest.java 42 private static final ImmutableSet<Range<Integer>> RANGES = ImmutableSet.of(
43 Range.<Integer>all(),
44 Range.closedOpen(3, 5),
45 Range.singleton(1),
46 Range.lessThan(2),
47 Range.greaterThan(10),
48 Range.atMost(4),
49 Range.atLeast(3),
50 Range.closed(4, 6),
51 Range.closedOpen(1, 3)
    [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/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).
188 // Range() returns generators providing sequences of values in a range.
191 // Range(start, end)
194 // Range(start, end, step)
198 // * The generated sequences never include end. For example, Range(1, 5)
199 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2)
212 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) {
218 internal::ParamGenerator<T> Range(T start, T end)
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/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...]
  /ndk/sources/third_party/googletest/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...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
FastQueue.cs 63 public virtual int Range {
82 if (absIndex > Range)
83 Range = absIndex;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
FastQueue.cs 67 public virtual int Range
89 if (absIndex > Range)
90 Range = absIndex;
  /external/chromium-trace/catapult/third_party/WebOb/webob/
byterange.py 3 __all__ = ['Range', 'ContentRange']
8 class Range(object):
10 Represents the Range header.
14 assert end is None or end >= 0, "Bad range end: %r" % end
20 *If* there is only one range, and *if* it is satisfiable by
21 the given length, then return a (start, end) non-inclusive range
43 response.content_range = req.range.content_range(response.content_length)
45 Though it's still up to you to actually serve that content range!
47 range = self.range_for_length(length)
48 if range is None
    [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/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/pdfium/core/src/fpdfapi/fpdf_cmaps/
cmap_int.h 13 enum MapType { None, Single, Range, Reverse };
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
util.rb 150 class Range
151 def covers?( range )
152 range.first >= first or return false
154 range.exclude_end? ? last >= range.last : last > range.last
156 range.exclude_end? ? last.succ >= range.last : last >= range.last
160 def covered_by?( range )
    [all...]

Completed in 1439 milliseconds

1 2 3 4 5 6 7 8 91011>>