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

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
SourceMgr.h 200 /// Represents a single fixit, a replacement of one range of text with another.
202 SMRange Range;
209 : Range(Loc, Loc), Text(Insertion.str()) {
215 : Range(R), Text(Replacement.str()) {
220 SMRange getRange() const { return Range; }
223 if (Range.Start.getPointer() != Other.Range.Start.getPointer())
224 return Range.Start.getPointer() < Other.Range.Start.getPointer();
225 if (Range.End.getPointer() != Other.Range.End.getPointer()
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
aetypes.py 145 class Range:
146 """An AE range object"""
153 return "Range(%r, %r)" % (self.start, self.stop)
162 return isinstance(x, Range)
399 e.g. by index, by range, by name, or by property specifier
  /prebuilts/go/darwin-x86/src/cmd/trace/
trace.go 190 // If start/end arguments are present, we are rendering a range of the trace.
214 type Range struct {
222 func splitTrace(data ViewerData) []Range {
224 var ranges []Range
238 ranges = append(ranges, Range{
398 for _, ev := range ctx.parsed.Events {
597 for k, v := range ginfos {
  /prebuilts/go/linux-x86/src/cmd/trace/
trace.go 190 // If start/end arguments are present, we are rendering a range of the trace.
214 type Range struct {
222 func splitTrace(data ViewerData) []Range {
224 var ranges []Range
238 ranges = append(ranges, Range{
398 for _, ev := range ctx.parsed.Events {
597 for k, v := range ginfos {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
benchmark_register.cc 50 // For non-dense Range, intermediate values are powers of kRangeMultiplier.
267 Benchmark* Benchmark::Range(int start, int limit) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aetypes.py 145 class Range:
146 """An AE range object"""
153 return "Range(%r, %r)" % (self.start, self.stop)
162 return isinstance(x, Range)
399 e.g. by index, by range, by name, or by property specifier
  /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/Basic/
SourceLocation.h 192 /// \brief A trivial tuple used to represent a source range.
219 /// \brief Represents a character-granular source range.
222 /// of the range, or it can specify the start of the range and the start of the
223 /// last token of the range (a "token range"). In the token range case, the
225 /// range.
227 SourceRange Range;
231 CharSourceRange(SourceRange R, bool ITR) : Range(R), IsTokenRange(ITR) {
    [all...]
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 78 /// \brief The source range that covers this preprocessed entity.
79 SourceRange Range;
82 PreprocessedEntity(EntityKind Kind, SourceRange Range)
83 : Kind(Kind), Range(Range) { }
91 /// \brief Retrieve the source range that covers this entire preprocessed
93 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
125 PreprocessingDirective(EntityKind Kind, SourceRange Range)
126 : PreprocessedEntity(Kind, Range) { }
142 SourceRange Range)
    [all...]
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 550 // Range of arguments up until and including the last key.
592 // Range of arguments up until and including the last key.
    [all...]
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 71 bool Sema::CheckSpecifiedExceptionType(QualType &T, SourceRange Range) {
101 Diag(Range.getBegin(), diag::err_rref_in_exception_spec)
102 << T << Range;
122 RequireCompleteType(Range.getBegin(), PointeeT, DiagID, Kind, Range))
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 1 //== RangeConstraintManager.cpp - Manage range constraints.------*- C++ -*--==//
27 /// A Range represents the closed range [from, to]. The caller must
28 /// guarantee that from <= to. Note that Range is immutable, so as not
31 class Range : public std::pair<const llvm::APSInt*,
34 Range(const llvm::APSInt &from, const llvm::APSInt &to)
58 class RangeTrait : public llvm::ImutContainerInfo<Range> {
60 // When comparing if one Range is less than another, we should compare
74 typedef llvm::ImmutableSet<Range, RangeTrait> PrimRangeSet;
88 for (const auto &range : ranges
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_diag.h 102 /// \brief Annotation for a range of locations in a diagnostic.
103 class Range {
108 Range() : Start(), End(), Text() {}
109 Range(MemoryLocation Start, MemoryLocation End, const char *Text)
180 Range Ranges[MaxRanges];
189 Diag &AddRange(Range A) {
210 Diag &operator<<(const Range &R) { return AddRange(R); }
  /external/guava/guava/src/com/google/common/collect/
Range.java 35 * A range (or "interval") defines the <i>boundaries</i> around a contiguous span of values of some
37 * possible to <i>iterate</i> over these contained values. To do so, pass this range instance and
42 * <p>Each end of the range may be bounded or unbounded. If bounded, there is an associated
43 * <i>endpoint</i> value, and the range is considered to be either <i>open</i> (does not include the
46 * ({@code [ ]}) indicates that the range is closed on that side; a parenthesis ({@code ( )}) means
52 * <tr><td>{@code (a..b)} <td>{@code {x | a < x < b}} <td>{@link Range#open open}
53 * <tr><td>{@code [a..b]} <td>{@code {x | a <= x <= b}}<td>{@link Range#closed closed}
54 * <tr><td>{@code (a..b]} <td>{@code {x | a < x <= b}} <td>{@link Range#openClosed openClosed}
55 * <tr><td>{@code [a..b)} <td>{@code {x | a <= x < b}} <td>{@link Range#closedOpen closedOpen}
56 * <tr><td>{@code (a..+?)} <td>{@code {x | x > a}} <td>{@link Range#greaterThan greaterThan
215 public static <C extends Comparable<?>> Range<C> range( method in class:Range
    [all...]
  /external/llvm/lib/CodeGen/MIRParser/
MILexer.cpp 62 MIToken &MIToken::reset(TokenKind Kind, StringRef Range) {
64 this->Range = Range;
156 auto Range = C;
160 StringRef String = Range.upto(R);
166 Token.reset(MIToken::Error, Range.remaining());
167 return Range;
171 Token.reset(Type, Range.upto(C))
172 .setStringValue(Range.upto(C).drop_front(PrefixLength));
179 auto Range = C
    [all...]
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 43 // Find the first range whose High field is >= R.High,
45 // have a Range that covers R.
208 // Check if the Case Range is perfectly squeezed in between
210 // emitting the code that checks if the value actually falls in the range
235 // This is because it is computed from a case range that is never
236 // the smallest, so there is always a case range that has at least
310 // Make range comparison
340 uint64_t Range = Leaf.High->getSExtValue() -
342 for (uint64_t j = 0; j < Range; ++j) {
389 // A range counts double, since it requires two compares
    [all...]
  /external/swiftshader/third_party/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...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
SourceLocation.h 192 /// \brief A trivial tuple used to represent a source range.
219 /// \brief Represents a character-granular source range.
222 /// of the range, or it can specify the start of the range and the start of the
223 /// last token of the range (a "token range"). In the token range case, the
225 /// range.
227 SourceRange Range;
231 CharSourceRange(SourceRange R, bool ITR) : Range(R), IsTokenRange(ITR) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Lex/
PreprocessingRecord.h 77 /// \brief The source range that covers this preprocessed entity.
78 SourceRange Range;
81 PreprocessedEntity(EntityKind Kind, SourceRange Range)
82 : Kind(Kind), Range(Range) { }
90 /// \brief Retrieve the source range that covers this entire preprocessed
92 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
124 PreprocessingDirective(EntityKind Kind, SourceRange Range)
125 : PreprocessedEntity(Kind, Range) { }
141 SourceRange Range)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Basic/
SourceLocation.h 192 /// \brief A trivial tuple used to represent a source range.
219 /// \brief Represents a character-granular source range.
222 /// of the range, or it can specify the start of the range and the start of the
223 /// last token of the range (a "token range"). In the token range case, the
225 /// range.
227 SourceRange Range;
231 CharSourceRange(SourceRange R, bool ITR) : Range(R), IsTokenRange(ITR) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Lex/
PreprocessingRecord.h 77 /// \brief The source range that covers this preprocessed entity.
78 SourceRange Range;
81 PreprocessedEntity(EntityKind Kind, SourceRange Range)
82 : Kind(Kind), Range(Range) { }
90 /// \brief Retrieve the source range that covers this entire preprocessed
92 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
124 PreprocessingDirective(EntityKind Kind, SourceRange Range)
125 : PreprocessedEntity(Kind, Range) { }
141 SourceRange Range)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Basic/
SourceLocation.h 192 /// \brief A trivial tuple used to represent a source range.
219 /// \brief Represents a character-granular source range.
222 /// of the range, or it can specify the start of the range and the start of the
223 /// last token of the range (a "token range"). In the token range case, the
225 /// range.
227 SourceRange Range;
231 CharSourceRange(SourceRange R, bool ITR) : Range(R), IsTokenRange(ITR) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Lex/
PreprocessingRecord.h 77 /// \brief The source range that covers this preprocessed entity.
78 SourceRange Range;
81 PreprocessedEntity(EntityKind Kind, SourceRange Range)
82 : Kind(Kind), Range(Range) { }
90 /// \brief Retrieve the source range that covers this entire preprocessed
92 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
124 PreprocessingDirective(EntityKind Kind, SourceRange Range)
125 : PreprocessedEntity(Kind, Range) { }
141 SourceRange Range)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Basic/
SourceLocation.h 194 /// \brief A trivial tuple used to represent a source range.
222 /// \brief Represents a character-granular source range.
225 /// of the range, or it can specify the start of the range and the start of the
226 /// last token of the range (a "token range"). In the token range case, the
228 /// range.
230 SourceRange Range;
235 CharSourceRange(SourceRange R, bool ITR) : Range(R), IsTokenRange(ITR) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Lex/
PreprocessingRecord.h 77 /// \brief The source range that covers this preprocessed entity.
78 SourceRange Range;
81 PreprocessedEntity(EntityKind Kind, SourceRange Range)
82 : Kind(Kind), Range(Range) { }
90 /// \brief Retrieve the source range that covers this entire preprocessed
92 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
124 PreprocessingDirective(EntityKind Kind, SourceRange Range)
125 : PreprocessedEntity(Kind, Range) { }
141 SourceRange Range)
    [all...]

Completed in 911 milliseconds

<<11121314151617181920>>