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

1 23 4 5 6 7 8 91011>>

  /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/tools/clang-format/fuzzer/
ClangFormatFuzzer.cpp 24 Style, s, {clang::tooling::Range(0, s.size())}));
  /external/easymock/src/org/easymock/internal/
IMocksBehavior.java 21 void addExpected(ExpectedInvocation expected, Result result, Range count);
  /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/include/llvm/Support/
UnicodeCharRanges.h 26 /// \brief Represents a closed range of Unicode code points [Lower, Upper].
32 inline bool operator<(uint32_t Value, UnicodeCharRange Range) {
33 return Value < Range.Lower;
35 inline bool operator<(UnicodeCharRange Range, uint32_t Value) {
36 return Range.Upper < Value;
73 /// \brief Returns true if each of the ranges is a proper closed range
  /frameworks/base/core/java/android/hardware/camera2/params/
HighSpeedVideoConfiguration.java 23 import android.util.Range;
64 mFpsRange = new Range<Integer>(mFpsMin, mFpsMax);
122 * Convenience method to return the FPS range of this high speed video configuration.
124 * @return a Range with high bound >= {@value #HIGH_SPEED_MAX_MINIMAL_FPS}
126 public Range<Integer> getFpsRange() {
171 private final Range<Integer> mFpsRange;
  /system/core/libmemunreachable/
LeakFolding.h 31 const Range range; member in struct:LeakFolding::Leak
69 const Range range; member in struct:LeakFolding::LeakInfo
73 LeakInfo(const Range& range, Allocator<LeakInfo> allocator)
74 : node(this, allocator), range(range),
84 allocator::map<Range, LeakInfo, compare_range> leak_map_;
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ContiguousSet.java 29 * {@code ContiguousSet.create(Range.greaterThan(0), DiscreteDomain.integers()}). Certain
42 * {@linkplain Range#contains contained} by the range.
44 * @throws IllegalArgumentException if neither range nor the domain has a lower bound, or if
50 Range<C> range, DiscreteDomain<C> domain) {
51 checkNotNull(range);
53 Range<C> effectiveRange = range;
55 if (!range.hasLowerBound())
122 public abstract Range<C> range(); method in class:ContiguousSet
135 public abstract Range<C> range(BoundType lowerBoundType, BoundType upperBoundType); method in class:ContiguousSet
    [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/clang/unittests/Lex/
PPCallbacksTest.cpp 147 // Get the raw source string of the range.
148 StringRef GetSourceString(CharSourceRange Range) {
149 const char* B = SourceMgr.getCharacterData(Range.getBegin());
150 const char* E = SourceMgr.getCharacterData(Range.getEnd());
188 // Callbacks have been executed at this point -- return filename range.
245 CharSourceRange Range =
248 ASSERT_EQ("\"quoted.h\"", GetSourceString(Range));
255 CharSourceRange Range =
258 ASSERT_EQ("<angled.h>", GetSourceString(Range));
266 CharSourceRange Range
    [all...]
  /external/llvm/lib/CodeGen/
LiveIntervalUnion.cpp 29 void LiveIntervalUnion::unify(LiveInterval &VirtReg, const LiveRange &Range) {
30 if (Range.empty())
35 LiveRange::const_iterator RegPos = Range.begin();
36 LiveRange::const_iterator RegEnd = Range.end();
56 void LiveIntervalUnion::extract(LiveInterval &VirtReg, const LiveRange &Range) {
57 if (Range.empty())
62 LiveRange::const_iterator RegPos = Range.begin();
63 LiveRange::const_iterator RegEnd = Range.end();
73 RegPos = Range.advanceTo(RegPos, SegPos.start());
  /libcore/ojluni/src/main/java/java/awt/font/
NumericShaper.java 82 * enum-based ones, such as {@link NumericShaper.Range#ARABIC}.
88 * or creating a {@code Set} with the {@link NumericShaper.Range}
91 * EnumSet.of(NumericShaper.Scirpt.ARABIC, NumericShaper.Range.TAMIL)
96 * Unicode range values are mapped to their counterparts where such
97 * mapping is possible, such as {@code NumericShaper.Range.ARABIC}
98 * from/to {@code NumericShaper.ARABIC}. If any unmappable range
99 * values are specified, such as {@code NumericShaper.Range.BALINESE},
104 * <p>A Unicode range may have more than one set of decimal digits. If
106 * range, one of the sets will take precedence as follows.
110 * <th class="TableHeadingColor">Unicode Range</th
577 Range range = ranges[mid]; local
    [all...]
  /external/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 44 ParserValue() : Text(), Range(), Value() {}
46 SourceRange Range;
140 ArgStream addError(SourceRange Range, ErrorType Error);
145 SourceRange Range;
153 SourceRange Range;
175 ArgStream pushContextFrame(ContextType Type, SourceRange Range);
  /system/update_engine/common/
multi_range_http_fetcher.h 33 // for the last range specified to have unlimited length, tho it is legal for
62 ranges_.push_back(Range(offset, size));
66 ranges_.push_back(Range(offset));
122 // A range object defining the offset and length of a download chunk. Zero
124 // request a zero-length range in HTTP).
125 class Range {
127 Range(off_t offset, size_t length) : offset_(offset), length_(length) {}
128 explicit Range(off_t offset) : offset_(offset), length_(0) {}
142 typedef std::vector<Range> RangesVect;
  /external/clang/lib/ASTMatchers/Dynamic/
Diagnostics.cpp 16 SourceRange Range) {
20 data.Range = Range;
66 Diagnostics::ArgStream Diagnostics::addError(SourceRange Range,
72 Last.Messages.back().Range = Range;
153 static void maybeAddLineAndColumn(SourceRange Range,
155 if (Range.Start.Line > 0 && Range.Start.Column > 0) {
156 OS << Range.Start.Line << ":" << Range.Start.Column << ": "
    [all...]
  /external/guava/guava/src/com/google/common/collect/
RegularContiguousSet.java 37 private final Range<C> range; field in class:RegularContiguousSet
39 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) {
41 this.range = range;
44 private ContiguousSet<C> intersectionInCurrentDomain(Range<C> other) {
45 return (range.isConnected(other))
46 ? ContiguousSet.create(range.intersection(other), domain)
51 return intersectionInCurrentDomain(Range.upTo(toElement, BoundType.forBoolean(inclusive)))
    [all...]
  /external/lzma/C/
Ppmd7Enc.c 14 p->Range = 0xFFFFFFFF;
38 p->Low += start * (p->Range /= total);
39 p->Range *= size;
40 while (p->Range < kTopValue)
42 p->Range <<= 8;
49 p->Range = (p->Range >> 14) * size0;
50 while (p->Range < kTopValue)
52 p->Range <<= 8;
59 UInt32 newBound = (p->Range >> 14) * size0;
    [all...]
  /external/google-breakpad/src/processor/
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...]
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...]
  /external/pdfium/core/src/fpdfapi/fpdf_cmaps/
cmap_int.h 13 enum MapType { None, Single, Range, Reverse };
  /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/compiler-rt/lib/profile/
InstrProfilingBuffer.c 28 #define PROFILE_RANGE_SIZE(Range) (Range##End - Range##Begin)

Completed in 593 milliseconds

1 23 4 5 6 7 8 91011>>