HomeSort by relevance Sort by last modified time
    Searched defs:Range (Results 51 - 75 of 843) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/DWARF/
DWARFDebugAranges.h 35 struct Range {
36 explicit Range(uint64_t LowPC = -1ULL, uint64_t HighPC = -1ULL,
57 bool operator<(const Range &other) const {
61 uint64_t LowPC; /// Start of address range.
62 uint32_t Length; /// End of address range (not including this address).
79 using RangeColl = std::vector<Range>;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/DWARF/
DWARFDebugAranges.h 35 struct Range {
36 explicit Range(uint64_t LowPC = -1ULL, uint64_t HighPC = -1ULL,
57 bool operator<(const Range &other) const {
61 uint64_t LowPC; /// Start of address range.
62 uint32_t Length; /// End of address range (not including this address).
79 using RangeColl = std::vector<Range>;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/DWARF/
DWARFDebugAranges.h 35 struct Range {
36 explicit Range(uint64_t LowPC = -1ULL, uint64_t HighPC = -1ULL,
57 bool operator<(const Range &other) const {
61 uint64_t LowPC; /// Start of address range.
62 uint32_t Length; /// End of address range (not including this address).
79 using RangeColl = std::vector<Range>;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/DWARF/
DWARFDebugAranges.h 35 struct Range {
36 explicit Range(uint64_t LowPC = -1ULL, uint64_t HighPC = -1ULL,
57 bool operator<(const Range &other) const {
61 uint64_t LowPC; /// Start of address range.
62 uint32_t Length; /// End of address range (not including this address).
79 using RangeColl = std::vector<Range>;
  /system/core/adb/
range.h 23 struct Range {
24 explicit Range(std::string data) : data_(std::move(data)) {}
26 Range(const Range& copy) = delete;
27 Range& operator=(const Range& copy) = delete;
29 Range(Range&& move) = default;
30 Range& operator=(Range&& move) = default
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
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/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...]
  /external/google-breakpad/src/processor/
map_serializers.h 127 // Convenient type name for Range.
128 typedef typename RangeMap<Address, Entry>::Range Range;
130 // Serializer for RangeMap's key and Range::base_.
132 // Serializer for RangeMap::Range::entry_.
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
Range.java 27 * A range of characters in a source file, from "begin" to "end", including the characters at "begin" and "end".
29 public class Range {
33 public Range(Position begin, Position end) {
44 public static Range range(Position begin, Position end) { method in class:Range
45 return new Range(begin, end);
48 public static Range range(int beginLine, int beginColumn, int endLine, int endColumn) { method in class:Range
49 return new Range(pos(beginLine, beginColumn), pos(endLine, endColumn));
52 public Range withBeginColumn(int column)
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/
Range.java 6 * A range of characters in a source file, from "begin" to "end", including the characters at "begin" and "end".
8 public class Range {
9 public static final Range UNKNOWN = range(Position.UNKNOWN, Position.UNKNOWN);
14 public Range(Position begin, Position end) {
25 public static Range range(Position begin, Position end) { method in class:Range
26 return new Range(begin, end);
29 public static Range range(int beginLine, int beginColumn, int endLine, int endColumn) method in class:Range
    [all...]
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugAranges.h 34 struct Range {
35 explicit Range(uint64_t LowPC = -1ULL, uint64_t HighPC = -1ULL,
54 bool operator<(const Range &other) const {
58 uint64_t LowPC; // Start of address range.
59 uint32_t Length; // End of address range (not including this address).
77 typedef std::vector<Range> RangeColl;
  /external/llvm/lib/CodeGen/
SafeStackLayout.h 25 StackColoring::LiveRange Range;
27 const StackColoring::LiveRange &Range)
28 : Start(Start), End(End), Range(Range) {}
36 StackColoring::LiveRange Range;
49 const StackColoring::LiveRange &Range);
  /external/swiftshader/third_party/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...]
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFDebugAranges.h 22 struct Range {
23 explicit Range(uint64_t lo = -1ULL, uint64_t hi = -1ULL,
46 static bool SortedOverlapCheck(const Range &curr_range,
47 const Range &next_range, uint32_t n) {
53 bool contains(const Range &range) const {
54 return LoPC <= range.LoPC && range.HiPC() <= HiPC();
58 uint64_t LoPC; // Start of address range
59 uint32_t Length; // End of address range (not including this address
    [all...]
  /external/turbine/java/com/google/turbine/diag/
LineMap.java 22 import com.google.common.collect.Range;
50 builder.put(Range.closedOpen(last, idx + 1), line++);
59 builder.put(Range.closedOpen(last, source.length()), line++);
79 Range<Integer> range = lines.getEntry(position).getKey(); local
80 return source.substring(range.lowerEndpoint(), range.upperEndpoint());
  /frameworks/base/core/java/android/util/
Range.java 24 * Immutable class for describing the range of two numeric values.
26 * A range (or "interval") defines the inclusive boundaries around a contiguous span of
31 * All ranges are bounded, and the left side of the range is always {@code >=}
32 * the right side of the range.
36 * stored must also be immutable. If mutable objects are stored here, then the range
39 public final class Range<T extends Comparable<? super T>> {
41 * Create a new immutable range.
45 * is the range is bounded. {@code lower} must be {@link Comparable#compareTo lesser or equal}
54 public Range(final T lower, final T upper) {
64 * Create a new immutable range, with the argument types inferred
    [all...]
  /frameworks/minikin/include/minikin/
FontCollection.h 67 // mFamilyVec holds the indices of the mFamilies and mRanges holds the range of indices of
71 // only limited range of code points.
72 struct Range {
113 std::vector<Range> mRanges;
  /hardware/qcom/display/msm8909/sdm/libs/hwc/
blit_engine_c2d.h 87 struct Range {
97 mutable Range r;
  /hardware/qcom/display/msm8909w_3100/sdm/libs/hwc/
blit_engine_c2d.h 87 struct Range {
97 mutable Range r;
  /hardware/qcom/display/msm8996/sdm/libs/hwc/
blit_engine_c2d.h 87 struct Range {
97 mutable Range r;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugAranges.h 35 struct Range {
36 explicit Range(uint64_t LowPC = -1ULL, uint64_t HighPC = -1ULL,
57 bool operator<(const Range &other) const {
61 uint64_t LowPC; // Start of address range.
62 uint32_t Length; // End of address range (not including this address).
79 typedef std::vector<Range> RangeColl;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/DWARF/
DWARFDebugAranges.h 35 struct Range {
36 explicit Range(uint64_t LowPC = -1ULL, uint64_t HighPC = -1ULL,
57 bool operator<(const Range &other) const {
61 uint64_t LowPC; /// Start of address range.
62 uint32_t Length; /// End of address range (not including this address).
79 typedef std::vector<Range> RangeColl;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/DWARF/
DWARFDebugAranges.h 35 struct Range {
36 explicit Range(uint64_t LowPC = -1ULL, uint64_t HighPC = -1ULL,
57 bool operator<(const Range &other) const {
61 uint64_t LowPC; /// Start of address range.
62 uint32_t Length; /// End of address range (not including this address).
79 typedef std::vector<Range> RangeColl;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugAranges.h 35 struct Range {
36 explicit Range(uint64_t LowPC = -1ULL, uint64_t HighPC = -1ULL,
57 bool operator<(const Range &other) const {
61 uint64_t LowPC; // Start of address range.
62 uint32_t Length; // End of address range (not including this address).
79 typedef std::vector<Range> RangeColl;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/DWARF/
DWARFDebugAranges.h 35 struct Range {
36 explicit Range(uint64_t LowPC = -1ULL, uint64_t HighPC = -1ULL,
57 bool operator<(const Range &other) const {
61 uint64_t LowPC; /// Start of address range.
62 uint32_t Length; /// End of address range (not including this address).
79 typedef std::vector<Range> RangeColl;

Completed in 760 milliseconds

1 23 4 5 6 7 8 91011>>