Home
last modified time | relevance | path

Searched refs:Ranges (Results 1 - 25 of 71) sorted by relevance

123

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DUnicodeCharRanges.h45 /// Array pointed by \p Ranges should have the lifetime at least as long as
55 constexpr UnicodeCharSet(CharRanges Ranges) : Ranges(Ranges) {} in UnicodeCharSet() argument
57 UnicodeCharSet(CharRanges Ranges) : Ranges(Ranges) { in UnicodeCharSet() argument
65 return std::binary_search(Ranges.begin(), Ranges.end(), C); in contains()
73 for (CharRanges::const_iterator I = Ranges in rangesAreValid()
95 const CharRanges Ranges; global() member in llvm::sys::UnicodeCharSet
[all...]
H A DSourceMgr.h193 ArrayRef<SMRange> Ranges = None,
199 ArrayRef<SMRange> Ranges = None,
216 ArrayRef<SMRange> Ranges = None,
269 std::vector<std::pair<unsigned, unsigned>> Ranges; member in llvm::SMDiagnostic
283 ArrayRef<std::pair<unsigned,unsigned>> Ranges,
294 ArrayRef<std::pair<unsigned, unsigned>> getRanges() const { return Ranges; } in getRanges()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/
H A DRange.cpp24 auto It = llvm::upper_bound(Ranges, Range); in insert()
26 while (It2 != Ranges.end() && It2->Start < Range.End) in insert()
30 It = Ranges.erase(It, It2); in insert()
32 if (It != Ranges.begin() && Range.Start < It[-1].End) in insert()
35 Ranges.insert(It, Range); in insert()
40 Ranges.begin(), Ranges.end(), in contains()
42 return It != Ranges.begin() && Addr < It[-1].End; in contains()
49 Ranges.begin(), Ranges in contains()
[all...]
H A DInlineInfo.cpp25 for (auto Range : II.Ranges) { in operator <<()
41 if (II.Ranges.contains(Addr)) { in getInlineStackHelper()
112 Inline.Ranges.decode(Data, BaseAddr, Offset); in lookup()
113 if (Inline.Ranges.empty()) in lookup()
117 if (!Inline.Ranges.contains(Addr)) { in lookup()
131 const auto ChildBaseAddr = Inline.Ranges[0].Start; in lookup()
181 Inline.Ranges.decode(Data, BaseAddr, Offset); in decode()
182 if (Inline.Ranges.empty()) in decode()
204 const auto ChildBaseAddr = Inline.Ranges[0].Start; in decode()
209 // InlineInfo with empty Ranges terminte in decode()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DStringRange.java90 Relation<Integer,Ranges> lengthToArrays = Relation.of(new TreeMap<Integer,Set<Ranges>>(), TreeSet.class); in compact()
92 Ranges item = new Ranges(s); in compact()
96 for (Entry<Integer, Set<Ranges>> entry : lengthToArrays.keyValuesSet()) { in compact()
97 LinkedList<Ranges> compacted = compact(entry.getKey(), entry.getValue()); in compact()
98 for (Ranges ranges : compacted) { in compact()
115 private static LinkedList<Ranges> compact(int size, Set<Ranges> inputRanges) { in compact()
116 LinkedList<Ranges> range in compact()
163 static final class Ranges implements Comparable<Ranges> { global() class in StringRange
165 public Ranges(String s) { Ranges() method in StringRange.Ranges
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DStringRange.java97 Relation<Integer,Ranges> lengthToArrays = Relation.of(new TreeMap<Integer,Set<Ranges>>(), TreeSet.class); in compact()
99 Ranges item = new Ranges(s); in compact()
103 for (Entry<Integer, Set<Ranges>> entry : lengthToArrays.keyValuesSet()) { in compact()
104 LinkedList<Ranges> compacted = compact(entry.getKey(), entry.getValue()); in compact()
105 for (Ranges ranges : compacted) { in compact()
122 private static LinkedList<Ranges> compact(int size, Set<Ranges> inputRanges) { in compact()
123 LinkedList<Ranges> range in compact()
170 static final class Ranges implements Comparable<Ranges> { global() class in StringRange
172 public Ranges(String s) { Ranges() method in StringRange.Ranges
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/GSYM/
H A DRange.h86 Collection Ranges;
88 void clear() { Ranges.clear(); } in clear()
89 bool empty() const { return Ranges.empty(); } in empty()
93 size_t size() const { return Ranges.size(); } in size()
95 return Ranges == RHS.Ranges; in operator ==()
98 assert(i < Ranges.size()); in operator []()
99 return Ranges[i]; in operator []()
101 Collection::const_iterator begin() const { return Ranges.begin(); }
102 Collection::const_iterator end() const { return Ranges
[all...]
H A DInlineInfo.h43 /// address of the containing parent InlineInfo's first "Ranges" member. This
49 /// - The AddressRanges member "Ranges" is encoded using an approriate base
66 AddressRanges Ranges; member
73 Ranges.clear(); in clear()
76 bool isValid() const { return !Ranges.empty(); } in isValid()
173 LHS.CallLine == RHS.CallLine && LHS.Ranges == RHS.Ranges && in operator ==()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFVerifier.h42 std::vector<DWARFAddressRange> Ranges; member
51 DieRangeInfo(std::vector<DWARFAddressRange> Ranges) in DieRangeInfo()
52 : Ranges(std::move(Ranges)) {} in DieRangeInfo()
67 auto Begin = Ranges.begin(); in findRange()
68 auto End = Ranges.end(); in findRange()
331 return std::tie(LHS.Ranges, LHS.Die) < std::tie(RHS.Ranges, RHS.Die); in operator <()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DSourceMgr.cpp165 ArrayRef<SMRange> Ranges, in GetMessage()
197 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) { in GetMessage()
198 SMRange R = Ranges[i]; in GetMessage()
244 const Twine &Msg, ArrayRef<SMRange> Ranges, in PrintMessage()
246 PrintMessage(OS, GetMessage(Loc, Kind, Msg, Ranges, FixIts), ShowColors); in PrintMessage()
250 const Twine &Msg, ArrayRef<SMRange> Ranges, in PrintMessage()
252 PrintMessage(errs(), Loc, Kind, Msg, Ranges, FixIts, ShowColors); in PrintMessage() local
262 ArrayRef<std::pair<unsigned,unsigned>> Ranges, in SMDiagnostic()
265 Message(Msg), LineContents(LineStr), Ranges(Ranges in SMDiagnostic()
163 GetMessage(SMLoc Loc, SourceMgr::DiagKind Kind, const Twine &Msg, ArrayRef<SMRange> Ranges, ArrayRef<SMFixIt> FixIts) const GetMessage() argument
242 PrintMessage(raw_ostream &OS, SMLoc Loc, SourceMgr::DiagKind Kind, const Twine &Msg, ArrayRef<SMRange> Ranges, ArrayRef<SMFixIt> FixIts, bool ShowColors) const PrintMessage() argument
249 PrintMessage(SMLoc Loc, SourceMgr::DiagKind Kind, const Twine &Msg, ArrayRef<SMRange> Ranges, ArrayRef<SMFixIt> FixIts, bool ShowColors) const PrintMessage() argument
259 SMDiagnostic(const SourceMgr &sm, SMLoc L, StringRef FN, int Line, int Col, SourceMgr::DiagKind Kind, StringRef Msg, StringRef LineStr, ArrayRef<std::pair<unsigned,unsigned>> Ranges, ArrayRef<SMFixIt> Hints) SMDiagnostic() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DSourceMgr.h158 ArrayRef<SMRange> Ranges = None,
164 ArrayRef<SMRange> Ranges = None,
181 ArrayRef<SMRange> Ranges = None,
235 std::vector<std::pair<unsigned, unsigned> > Ranges; member in llvm::SMDiagnostic
251 ArrayRef<std::pair<unsigned,unsigned> > Ranges,
263 return Ranges; in getRanges()
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/mapper/
H A DPluralRangesMapper.java36 "//supplementalData/plurals/pluralRanges[@locales=*]", (m, p) -> m.new Ranges(p))
37 .addValueAction("pluralRange[@start=*][@end=*]", Ranges::visitRange);
69 private final class Ranges { class in PluralRangesMapper
72 Ranges(CldrPath prefix) { in Ranges() method in PluralRangesMapper.Ranges
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Testing/Support/
H A DAnnotations.cpp51 Ranges[OpenRanges.back().first].push_back(R); in Annotations()
80 auto I = Ranges.find(Name); in range()
81 require(I != Ranges.end() && I->getValue().size() == 1, in range()
88 auto R = Ranges.lookup(Name); in ranges()
/third_party/benchmark/test/
H A Dmultiple_ranges_test.cc78 ->Ranges({{1, 2}, {3, 7}, {5, 15}})
88 BENCHMARK(BM_CheckDefaultArgument)->Ranges({{1, 5}, {6, 10}});
94 BENCHMARK(BM_MultipleRanges)->Ranges({{5, 5}, {6, 6}});
H A Doptions_test.cc34 BENCHMARK(BM_basic)->Ranges({{64, 512}, {64, 512}});
51 BENCHMARK(BM_basic)->Ranges({{-64, 1}, {-8, -1}});
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H A DDWARFVerifier.cpp31 auto Begin = Ranges.begin(); in insert()
32 auto End = Ranges.end(); in insert()
45 Ranges.insert(Pos, R); in insert()
46 return Ranges.end(); in insert()
63 auto I1 = Ranges.begin(), E1 = Ranges.end(); in contains()
64 auto I2 = RHS.Ranges.begin(), E2 = RHS.Ranges.end(); in contains()
87 auto I1 = Ranges.begin(), E1 = Ranges in intersects()
377 DWARFAddressRangesVector Ranges = RangesOrError.get(); verifyDieRanges() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp153 SmallVector<MemsetRange, 8> Ranges;
162 const_iterator begin() const { return Ranges.begin(); } in begin()
163 const_iterator end() const { return Ranges.end(); } in end()
164 bool empty() const { return Ranges.empty(); } in empty()
199 Ranges, [=](const MemsetRange &O) { return O.End < Start; }); in addRange()
204 if (I == Ranges.end() || End < I->Start) { in addRange()
205 MemsetRange &R = *Ranges.insert(I, MemsetRange()); in addRange()
240 while (++NextI != Ranges.end() && End >= NextI->Start) { in addRange()
245 Ranges.erase(NextI); in addRange()
314 MemsetRanges Ranges(D in tryMergingIntoMemset()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
H A DMCFragment.h494 SmallVector<std::pair<const MCSymbol *, const MCSymbol *>, 2> Ranges; member in llvm::MCCVDefRangeFragment
503 ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges, in MCCVDefRangeFragment()
506 Ranges(Ranges.begin(), Ranges.end()), in MCCVDefRangeFragment()
510 return Ranges; in getRanges()
502 MCCVDefRangeFragment( ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges, StringRef FixedSizePortion, MCSection *Sec = nullptr) MCCVDefRangeFragment() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerCompileUnit.h81 : OrigUnit(OrigUnit), ID(ID), Ranges(RangeAlloc), in CompileUnit()
136 const FunctionIntervals &getFunctionRanges() const { return Ranges; } in getFunctionRanges()
282 FunctionIntervals Ranges; member in llvm::CompileUnit
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h66 SmallVectorImpl<InsnRange> &getRanges() { return Ranges; } in getRanges()
94 Ranges.push_back(InsnRange(FirstInsn, LastInsn)); in closeInsnRange()
129 SmallVector<InsnRange, 4> Ranges; member in llvm::LexicalScope
H A DMachineMemOperand.h175 const MDNode *Ranges; member in llvm::MachineMemOperand
186 const MDNode *Ranges = nullptr,
238 const MDNode *getRanges() const { return Ranges; } in getRanges()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H A DMCAsmStreamer.cpp266 ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges);
269 ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges,
273 ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges,
277 ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges,
281 ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges,
1435 ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges) {
1437 for (std::pair<const MCSymbol *, const MCSymbol *> Range : Ranges) {
1446 ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges,
1448 PrintCVDefRangePrefix(Ranges);
1456 ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges,
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
H A DTGParser.cpp671 bool TGParser::ParseRangePiece(SmallVectorImpl<unsigned> &Ranges, in ParseRangePiece() argument
689 Ranges.push_back(Start); in ParseRangePiece()
716 Ranges.push_back(Start); in ParseRangePiece()
719 Ranges.push_back(Start); in ParseRangePiece()
747 bool TGParser::ParseOptionalRangeList(SmallVectorImpl<unsigned> &Ranges) { in ParseOptionalRangeList() argument
755 ParseRangeList(Ranges); in ParseOptionalRangeList()
756 if (Ranges.empty()) return true; in ParseOptionalRangeList()
769 bool TGParser::ParseOptionalBitList(SmallVectorImpl<unsigned> &Ranges) { in ParseOptionalBitList() argument
777 ParseRangeList(Ranges); in ParseOptionalBitList()
778 if (Ranges in ParseOptionalBitList()
2167 SmallVector<unsigned, 16> Ranges; ParseValue() local
2190 SmallVector<unsigned, 16> Ranges; ParseValue() local
2499 SmallVector<unsigned, 16> Ranges; ParseForeachDeclaration() local
[all...]
H A DTGParser.h254 bool ParseOptionalRangeList(SmallVectorImpl<unsigned> &Ranges);
255 bool ParseOptionalBitList(SmallVectorImpl<unsigned> &Ranges);
257 bool ParseRangePiece(SmallVectorImpl<unsigned> &Ranges,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64StackTagging.cpp84 SmallVector<Range, 4> Ranges; member in __anon24394::InitializerBuilder
98 Ranges.begin(), Ranges.end(), Start, in addRange()
100 if (I != Ranges.end() && End > I->Start) { in addRange()
104 Ranges.insert(I, {Start, End, Inst}); in addRange()
186 if (Ranges.empty()) { in generate()
217 for (const auto &R : Ranges) { in generate()

Completed in 18 milliseconds

123