/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/ |
RawCommentList.h | 110 SourceRange getSourceRange() const LLVM_READONLY { return Range; } 111 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); } 112 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); } 126 SourceRange Range; 150 Range(SR), RawTextValid(false), BriefTextValid(false), Kind(K),
|
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/ |
RawCommentList.h | 110 SourceRange getSourceRange() const LLVM_READONLY { return Range; } 111 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); } 112 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); } 126 SourceRange Range; 150 Range(SR), RawTextValid(false), BriefTextValid(false), Kind(K),
|
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/ |
RawCommentList.h | 110 SourceRange getSourceRange() const LLVM_READONLY { return Range; } 111 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); } 112 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); } 126 SourceRange Range; 150 Range(SR), RawTextValid(false), BriefTextValid(false), Kind(K),
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/ |
RawCommentList.h | 110 SourceRange getSourceRange() const LLVM_READONLY { return Range; } 111 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); } 112 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); } 126 SourceRange Range; 150 Range(SR), RawTextValid(false), BriefTextValid(false), Kind(K),
|
/frameworks/base/media/java/android/media/ |
MediaCodecInfo.java | 23 import android.util.Range; 119 private static final Range<Integer> POSITIVE_INTEGERS = 120 Range.create(1, Integer.MAX_VALUE); 121 private static final Range<Long> POSITIVE_LONGS = 122 Range.create(1l, Long.MAX_VALUE); 123 private static final Range<Rational> POSITIVE_RATIONALS = 124 Range.create(new Rational(1, Integer.MAX_VALUE), 126 private static final Range<Integer> SIZE_RANGE = Range.create(1, 32768); 127 private static final Range<Integer> FRAME_RATE_RANGE = Range.create(0, 960) 1312 Range<Integer> range = mWidthRange; local 1356 Range<Integer> range = mHeightRange; local 1406 Range<Integer> range = mHeightRange; local 1442 Range<Long> range = mMeasuredFrameRates.get(size); local 1661 Range<Long> range = Utils.parseLongRange(map.get(key), null); local 1671 Pair<Size, Size> range = Utils.parseSizeRange(o); local [all...] |
/external/lzma/C/ |
Ppmd7Dec.c | 15 p->Range = 0xFFFFFFFF;
26 return (p->Code) / (p->Range /= total);
31 if (p->Range < kTopValue)
34 p->Range <<= 8;
35 if (p->Range < kTopValue)
38 p->Range <<= 8;
46 p->Code -= start * p->Range;
47 p->Range *= size;
54 UInt32 newBound = (p->Range >> 14) * size0;
59 p->Range = newBound; [all...] |
/external/guava/guava/src/com/google/common/collect/ |
ContiguousSet.java | 32 * {@code ContiguousSet.create(Range.greaterThan(0), DiscreteDomain.integers()}). Certain 45 * {@linkplain Range#contains contained} by the range. 47 * @throws IllegalArgumentException if neither range nor the domain has a lower bound, or if 53 Range<C> range, DiscreteDomain<C> domain) { 54 checkNotNull(range); 56 Range<C> effectiveRange = range; 58 if (!range.hasLowerBound()) 153 public abstract Range<C> range(); method in class:ContiguousSet 166 public abstract Range<C> range(BoundType lowerBoundType, BoundType upperBoundType); method in class:ContiguousSet [all...] |
/frameworks/base/tests/Internal/src/com/android/internal/colorextraction/types/ |
TonalTest.java | 26 import android.util.Range; 71 Tonal.ColorRange colorRange = new Tonal.ColorRange(new Range<>(0f, 50f), 72 new Range<>(0f, 1f), new Range<>(0f, 1f)); 74 assertTrue("Range " + colorRange + " doesn't contain " + Arrays.toString(hsl), 80 Tonal.ColorRange colorRange = new Tonal.ColorRange(new Range<>(0f, 50f), 81 new Range<>(0f, 0.5f), new Range<>(0f, 0.5f)); 83 assertFalse("Range " + colorRange + " shouldn't contain " + Arrays.toString(hsl), 86 assertFalse("Range " + colorRange + " shouldn't contain " + Arrays.toString(hsl) [all...] |
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/MC/MCParser/ |
MCAsmParser.h | 77 SMRange Range; 139 virtual void Note(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 144 virtual bool Warning(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 151 bool Error(SMLoc L, const Twine &Msg, SMRange Range = None); 157 virtual bool printError(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 164 printError(Err.Loc, Twine(Err.Msg), Err.Range); 180 bool TokError(const Twine &Msg, SMRange Range = None);
|
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/MC/MCParser/ |
MCAsmParser.h | 77 SMRange Range; 139 virtual void Note(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 144 virtual bool Warning(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 151 bool Error(SMLoc L, const Twine &Msg, SMRange Range = None); 157 virtual bool printError(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 164 printError(Err.Loc, Twine(Err.Msg), Err.Range); 180 bool TokError(const Twine &Msg, SMRange Range = None);
|
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/MCParser/ |
MCAsmParser.h | 77 SMRange Range; 139 virtual void Note(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 144 virtual bool Warning(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 151 bool Error(SMLoc L, const Twine &Msg, SMRange Range = None); 157 virtual bool printError(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 164 printError(Err.Loc, Twine(Err.Msg), Err.Range); 180 bool TokError(const Twine &Msg, SMRange Range = None);
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/MCParser/ |
MCAsmParser.h | 77 SMRange Range; 139 virtual void Note(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 144 virtual bool Warning(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 151 bool Error(SMLoc L, const Twine &Msg, SMRange Range = None); 157 virtual bool printError(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 164 printError(Err.Loc, Twine(Err.Msg), Err.Range); 180 bool TokError(const Twine &Msg, SMRange Range = None);
|
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/MC/MCParser/ |
MCAsmParser.h | 77 SMRange Range; 139 virtual void Note(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 144 virtual bool Warning(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 151 bool Error(SMLoc L, const Twine &Msg, SMRange Range = None); 157 virtual bool printError(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 164 printError(Err.Loc, Twine(Err.Msg), Err.Range); 180 bool TokError(const Twine &Msg, SMRange Range = None);
|
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/MC/MCParser/ |
MCAsmParser.h | 77 SMRange Range; 139 virtual void Note(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 144 virtual bool Warning(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 151 bool Error(SMLoc L, const Twine &Msg, SMRange Range = None); 157 virtual bool printError(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 164 printError(Err.Loc, Twine(Err.Msg), Err.Range); 180 bool TokError(const Twine &Msg, SMRange Range = None);
|
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/MCParser/ |
MCAsmParser.h | 77 SMRange Range; 139 virtual void Note(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 144 virtual bool Warning(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 151 bool Error(SMLoc L, const Twine &Msg, SMRange Range = None); 157 virtual bool printError(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 164 printError(Err.Loc, Twine(Err.Msg), Err.Range); 180 bool TokError(const Twine &Msg, SMRange Range = None);
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/MCParser/ |
MCAsmParser.h | 77 SMRange Range; 139 virtual void Note(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 144 virtual bool Warning(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 151 bool Error(SMLoc L, const Twine &Msg, SMRange Range = None); 157 virtual bool printError(SMLoc L, const Twine &Msg, SMRange Range = None) = 0; 164 printError(Err.Loc, Twine(Err.Msg), Err.Range); 180 bool TokError(const Twine &Msg, SMRange Range = None);
|
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/ |
STLExtras.h | 337 /// Convenience function that takes a range of elements and a predicate, 338 /// and return a new filter_iterator range. 341 /// lifetime of that temporary is not kept by the returned range object, and the 346 make_filter_range(RangeT &&Range, PredicateT Pred) { 349 return make_range(FilterIteratorT(std::begin(std::forward<RangeT>(Range)), 350 std::end(std::forward<RangeT>(Range)), 352 FilterIteratorT(std::end(std::forward<RangeT>(Range)))); 357 bool all_of(R &&range, UnaryPredicate P); 525 /// range properties are of little benefit and end up getting in the way 589 /// We need the full range to know how to switch between each of th [all...] |
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/ |
STLExtras.h | 337 /// Convenience function that takes a range of elements and a predicate, 338 /// and return a new filter_iterator range. 341 /// lifetime of that temporary is not kept by the returned range object, and the 346 make_filter_range(RangeT &&Range, PredicateT Pred) { 349 return make_range(FilterIteratorT(std::begin(std::forward<RangeT>(Range)), 350 std::end(std::forward<RangeT>(Range)), 352 FilterIteratorT(std::end(std::forward<RangeT>(Range)))); 357 bool all_of(R &&range, UnaryPredicate P); 525 /// range properties are of little benefit and end up getting in the way 589 /// We need the full range to know how to switch between each of th [all...] |
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/ |
STLExtras.h | 337 /// Convenience function that takes a range of elements and a predicate, 338 /// and return a new filter_iterator range. 341 /// lifetime of that temporary is not kept by the returned range object, and the 346 make_filter_range(RangeT &&Range, PredicateT Pred) { 349 return make_range(FilterIteratorT(std::begin(std::forward<RangeT>(Range)), 350 std::end(std::forward<RangeT>(Range)), 352 FilterIteratorT(std::end(std::forward<RangeT>(Range)))); 357 bool all_of(R &&range, UnaryPredicate P); 525 /// range properties are of little benefit and end up getting in the way 589 /// We need the full range to know how to switch between each of th [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/ |
STLExtras.h | 337 /// Convenience function that takes a range of elements and a predicate, 338 /// and return a new filter_iterator range. 341 /// lifetime of that temporary is not kept by the returned range object, and the 346 make_filter_range(RangeT &&Range, PredicateT Pred) { 349 return make_range(FilterIteratorT(std::begin(std::forward<RangeT>(Range)), 350 std::end(std::forward<RangeT>(Range)), 352 FilterIteratorT(std::end(std::forward<RangeT>(Range)))); 357 bool all_of(R &&range, UnaryPredicate P); 525 /// range properties are of little benefit and end up getting in the way 589 /// We need the full range to know how to switch between each of th [all...] |
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/ |
STLExtras.h | 337 /// Convenience function that takes a range of elements and a predicate, 338 /// and return a new filter_iterator range. 341 /// lifetime of that temporary is not kept by the returned range object, and the 346 make_filter_range(RangeT &&Range, PredicateT Pred) { 349 return make_range(FilterIteratorT(std::begin(std::forward<RangeT>(Range)), 350 std::end(std::forward<RangeT>(Range)), 352 FilterIteratorT(std::end(std::forward<RangeT>(Range)))); 357 bool all_of(R &&range, UnaryPredicate P); 525 /// range properties are of little benefit and end up getting in the way 589 /// We need the full range to know how to switch between each of th [all...] |
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/ |
STLExtras.h | 337 /// Convenience function that takes a range of elements and a predicate, 338 /// and return a new filter_iterator range. 341 /// lifetime of that temporary is not kept by the returned range object, and the 346 make_filter_range(RangeT &&Range, PredicateT Pred) { 349 return make_range(FilterIteratorT(std::begin(std::forward<RangeT>(Range)), 350 std::end(std::forward<RangeT>(Range)), 352 FilterIteratorT(std::end(std::forward<RangeT>(Range)))); 357 bool all_of(R &&range, UnaryPredicate P); 525 /// range properties are of little benefit and end up getting in the way 589 /// We need the full range to know how to switch between each of th [all...] |
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/ |
STLExtras.h | 337 /// Convenience function that takes a range of elements and a predicate, 338 /// and return a new filter_iterator range. 341 /// lifetime of that temporary is not kept by the returned range object, and the 346 make_filter_range(RangeT &&Range, PredicateT Pred) { 349 return make_range(FilterIteratorT(std::begin(std::forward<RangeT>(Range)), 350 std::end(std::forward<RangeT>(Range)), 352 FilterIteratorT(std::end(std::forward<RangeT>(Range)))); 357 bool all_of(R &&range, UnaryPredicate P); 525 /// range properties are of little benefit and end up getting in the way 589 /// We need the full range to know how to switch between each of th [all...] |
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/ |
STLExtras.h | 337 /// Convenience function that takes a range of elements and a predicate, 338 /// and return a new filter_iterator range. 341 /// lifetime of that temporary is not kept by the returned range object, and the 346 make_filter_range(RangeT &&Range, PredicateT Pred) { 349 return make_range(FilterIteratorT(std::begin(std::forward<RangeT>(Range)), 350 std::end(std::forward<RangeT>(Range)), 352 FilterIteratorT(std::end(std::forward<RangeT>(Range)))); 357 bool all_of(R &&range, UnaryPredicate P); 525 /// range properties are of little benefit and end up getting in the way 589 /// We need the full range to know how to switch between each of th [all...] |
/external/clang/lib/Format/ |
SortJavaScriptImports.cpp | 44 SourceRange Range; 47 // Ignore Range for comparison, it is only used to stitch code together, 92 SourceRange Range; 173 SourceRange InsertionPoint = References[0].Range; 174 InsertionPoint.setEnd(References[References.size() - 1].Range.getEnd()); 229 StringRef getSourceText(SourceRange Range) { 230 return getSourceText(Range.getBegin(), Range.getEnd()); 252 StringRef ReferenceStmt = getSourceText(Reference.Range); 257 SourceLocation SymbolsStart = Reference.Symbols.front().Range.getBegin() [all...] |