/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-4630689/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
|
/prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Sema/ |
LoopHint.h | 22 // Source range of the directive. 23 SourceRange 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-4639204/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
|
/prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Sema/ |
LoopHint.h | 22 // Source range of the directive. 23 SourceRange 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>;
|
/prebuilts/clang/host/linux-x86/clang-4691093/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
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/benchmarks/ |
string.bench.cpp | 12 std::string s1(state.range(0), '-'); 17 BENCHMARK(BM_StringFindNoMatch)->Range(10, MAX_STRING_LEN); 22 std::string s2(state.range(0), '-'); 26 BENCHMARK(BM_StringFindAllMatch)->Range(1, MAX_STRING_LEN); 31 s1 += std::string(state.range(0), '-'); 32 std::string s2(state.range(0), '-'); 36 BENCHMARK(BM_StringFindMatch1)->Range(1, MAX_STRING_LEN / 4); 41 s1 += std::string(state.range(0), '-'); 42 s1 += std::string(state.range(0), '*'); 43 std::string s2(state.range(0), '-') [all...] |
/system/core/libmemunreachable/ |
LeakFolding.h | 36 const Range range; member in struct:android::LeakFolding::Leak 79 const Range range; member in struct:android::LeakFolding::LeakInfo 83 LeakInfo(const Range& range, Allocator<LeakInfo> allocator) 84 : node(this, allocator), range(range), scc(nullptr) {} 93 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/clang/unittests/Format/ |
CleanupTest.cpp | 24 const std::vector<tooling::Range> &Ranges, 46 std::vector<tooling::Range> Ranges; 47 Ranges.push_back(tooling::Range(28, 0)); 48 Ranges.push_back(tooling::Range(91, 6)); 49 Ranges.push_back(tooling::Range(132, 0)); 66 std::vector<tooling::Range> Ranges(1, tooling::Range(0, Code.size())); 78 // Set the changed range to be the second "\n". 79 std::vector<tooling::Range> Ranges(1, tooling::Range(14, 0)) [all...] |
/frameworks/support/recyclerview-selection/src/androidTest/java/androidx/recyclerview/selection/ |
RangeTest.java | 19 import static androidx.recyclerview.selection.Range.TYPE_PRIMARY; 20 import static androidx.recyclerview.selection.Range.TYPE_PROVISIONAL; 38 * responsibility of range selection. 48 private Range mRange; 58 mRange = new Range(0, mSpy); 67 mRange = new Range(0, mSpy); 76 mRange = new Range(0, mSpy); 85 mRange = new Range(10, mSpy); 93 // note that range never modifies the anchor. 99 mRange = new Range(10, mSpy) [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Serialization/ |
AttrPCHRead.inc | 16 New = new (Context) AMDGPUFlatWorkGroupSizeAttr(Range, Context, min, max, Spelling); 26 New = new (Context) AMDGPUNumSGPRAttr(Range, Context, numSGPR, Spelling); 36 New = new (Context) AMDGPUNumVGPRAttr(Range, Context, numVGPR, Spelling); 47 New = new (Context) AMDGPUWavesPerEUAttr(Range, Context, min, max, Spelling); 57 New = new (Context) ARMInterruptAttr(Range, Context, interrupt, Spelling); 66 New = new (Context) AVRInterruptAttr(Range, Context, Spelling); 75 New = new (Context) AVRSignalAttr(Range, Context, Spelling); 92 New = new (Context) AbiTagAttr(Range, Context, tags.data(), tagsSize, Spelling); 105 New = new (Context) AcquireCapabilityAttr(Range, Context, args.data(), argsSize, Spelling); 119 New = new (Context) AcquiredAfterAttr(Range, Context, args.data(), argsSize, Spelling) [all...] |
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Serialization/ |
AttrPCHRead.inc | 16 New = new (Context) AMDGPUFlatWorkGroupSizeAttr(Range, Context, min, max, Spelling); 26 New = new (Context) AMDGPUNumSGPRAttr(Range, Context, numSGPR, Spelling); 36 New = new (Context) AMDGPUNumVGPRAttr(Range, Context, numVGPR, Spelling); 47 New = new (Context) AMDGPUWavesPerEUAttr(Range, Context, min, max, Spelling); 57 New = new (Context) ARMInterruptAttr(Range, Context, interrupt, Spelling); 66 New = new (Context) AVRInterruptAttr(Range, Context, Spelling); 75 New = new (Context) AVRSignalAttr(Range, Context, Spelling); 92 New = new (Context) AbiTagAttr(Range, Context, tags.data(), tagsSize, Spelling); 105 New = new (Context) AcquireCapabilityAttr(Range, Context, args.data(), argsSize, Spelling); 119 New = new (Context) AcquiredAfterAttr(Range, Context, args.data(), argsSize, Spelling) [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/google-benchmark/test/ |
complexity_test.cc | 54 state.SetComplexityN(state.range(0)); 56 BENCHMARK(BM_Complexity_O1)->Range(1, 1 << 18)->Complexity(benchmark::o1); 57 BENCHMARK(BM_Complexity_O1)->Range(1, 1 << 18)->Complexity(); 58 BENCHMARK(BM_Complexity_O1)->Range(1, 1 << 18)->Complexity([](int) { 94 auto v = ConstructRandomVector(state.range(0)); 96 state.range(0) * 2; // Test worst case scenario (item not in vector) 100 state.SetComplexityN(state.range(0)); 104 ->Range(1 << 10, 1 << 16) 108 ->Range(1 << 10, 1 << 16) 112 ->Range(1 << 10, 1 << 16 [all...] |
/external/libcxx/utils/google-benchmark/test/ |
complexity_test.cc | 54 state.SetComplexityN(state.range(0)); 56 BENCHMARK(BM_Complexity_O1)->Range(1, 1 << 18)->Complexity(benchmark::o1); 57 BENCHMARK(BM_Complexity_O1)->Range(1, 1 << 18)->Complexity(); 58 BENCHMARK(BM_Complexity_O1)->Range(1, 1 << 18)->Complexity([](int) { 94 auto v = ConstructRandomVector(state.range(0)); 96 state.range(0) * 2; // Test worst case scenario (item not in vector) 100 state.SetComplexityN(state.range(0)); 104 ->Range(1 << 10, 1 << 16) 108 ->Range(1 << 10, 1 << 16) 112 ->Range(1 << 10, 1 << 16 [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());
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/test/ |
complexity_test.cc | 54 state.SetComplexityN(state.range(0)); 56 BENCHMARK(BM_Complexity_O1)->Range(1, 1 << 18)->Complexity(benchmark::o1); 57 BENCHMARK(BM_Complexity_O1)->Range(1, 1 << 18)->Complexity(); 58 BENCHMARK(BM_Complexity_O1)->Range(1, 1 << 18)->Complexity([](int) { 94 auto v = ConstructRandomVector(state.range(0)); 96 state.range(0) * 2; // Test worst case scenario (item not in vector) 100 state.SetComplexityN(state.range(0)); 104 ->Range(1 << 10, 1 << 16) 108 ->Range(1 << 10, 1 << 16) 112 ->Range(1 << 10, 1 << 16 [all...] |
/frameworks/minikin/include/minikin/ |
MeasuredText.h | 28 #include "minikin/Range.h" 35 Run(const Range& range) : mRange(range) {} 51 virtual std::pair<float, MinikinRect> getBounds(const U16StringPiece& text, const Range& range, 63 const Range& /* hyphenPieceRange */, 70 inline const Range& getRange() const { return mRange; } 73 const Range mRange; 78 StyleRun(const Range& range, MinikinPaint&& paint, bool isRtl [all...] |
/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...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Tooling/Core/ |
Replacement.h | 41 /// \brief A source range independent of the \c SourceManager. 42 class Range { 44 Range() : Offset(0), Length(0) {} 45 Range(unsigned Offset, unsigned Length) : Offset(Offset), Length(Length) {} 53 /// \name Range Predicates 55 /// \brief Whether this range overlaps with \p RHS or not. 56 bool overlapsWith(Range RHS) const { 60 /// \brief Whether this range contains \p RHS or not. 61 bool contains(Range RHS) const { 66 /// \brief Whether this range equals to \p RHS or not [all...] |
/prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Tooling/Core/ |
Replacement.h | 41 /// \brief A source range independent of the \c SourceManager. 42 class Range { 44 Range() : Offset(0), Length(0) {} 45 Range(unsigned Offset, unsigned Length) : Offset(Offset), Length(Length) {} 53 /// \name Range Predicates 55 /// \brief Whether this range overlaps with \p RHS or not. 56 bool overlapsWith(Range RHS) const { 60 /// \brief Whether this range contains \p RHS or not. 61 bool contains(Range RHS) const { 66 /// \brief Whether this range equals to \p RHS or not [all...] |
/prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Tooling/Core/ |
Replacement.h | 41 /// \brief A source range independent of the \c SourceManager. 42 class Range { 44 Range() : Offset(0), Length(0) {} 45 Range(unsigned Offset, unsigned Length) : Offset(Offset), Length(Length) {} 53 /// \name Range Predicates 55 /// \brief Whether this range overlaps with \p RHS or not. 56 bool overlapsWith(Range RHS) const { 60 /// \brief Whether this range contains \p RHS or not. 61 bool contains(Range RHS) const { 66 /// \brief Whether this range equals to \p RHS or not [all...] |