Home
last modified time | relevance | path

Searched defs:Range (Results 1 – 25 of 354) sorted by relevance

12345678910>>...15

/external/swiftshader/third_party/LLVM/lib/DebugInfo/
DDWARFDebugAranges.h22 struct Range { struct
44 bool isValidRange() const { return Length > 0; } in isValidRange() argument
46 static bool SortedOverlapCheck(const Range &curr_range, in SortedOverlapCheck() argument
53 bool contains(const Range &range) const { in contains() argument
73 const Range *rangeAtIndex(uint32_t idx) const { in rangeAtIndex() argument
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugAranges.h35 struct Range { struct
57 bool operator<(const Range &other) const { argument
79 using RangeColl = std::vector<Range>; argument
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugAranges.h34 struct Range { struct
54 bool operator<(const Range &other) const { argument
77 typedef std::vector<Range> RangeColl; argument
/external/skia/tools/
DRegistry.h45 struct Range { struct
46 struct Iterator {
52 Iterator begin() const { return Iterator{Registry::Head()}; } in begin()
53 Iterator end() const { return Iterator{nullptr}; } in end()
/external/skqp/tools/
DRegistry.h45 struct Range { struct
46 struct Iterator {
52 Iterator begin() const { return Iterator{Registry::Head()}; } in begin()
53 Iterator end() const { return Iterator{nullptr}; } in end()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DStatisticTest.cpp24 extractCounters(const std::vector<std::pair<StringRef, unsigned>> &Range, in extractCounters()
91 const auto Range = GetStatistics(); in TEST() local
110 auto &Range = GetStatistics(); in TEST() local
119 auto &Range = GetStatistics(); in TEST() local
135 auto &Range = GetStatistics(); in TEST() local
DSTLExtrasTest.cpp144 struct Range : CanMove<Moveable>, CanCopy<Copyable> { struct
145 explicit Range(int &C, int &M, int &D) : C(C), M(M), D(D) {} in Range() function
146 Range(const Range &R) : CanCopy<Copyable>(R), C(R.C), M(R.M), D(R.D) { ++C; } in Range() argument
147 Range(Range &&R) : CanMove<Moveable>(std::move(R)), C(R.C), M(R.M), D(R.D) { in Range() argument
150 ~Range() { ++D; } in ~Range()
152 int &C;
153 int &M;
154 int &D;
156 int *begin() { return nullptr; } in begin()
157 int *end() { return nullptr; } in end()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/MIRParser/
DMILexer.cpp68 MIToken &MIToken::reset(TokenKind Kind, StringRef Range) { in reset()
162 auto Range = C; in lexName() local
254 auto Range = C; in maybeLexIdentifier() local
268 auto Range = C; in maybeLexMachineBasicBlock() local
302 auto Range = C; in maybeLexIndex() local
315 auto Range = C; in maybeLexIndexAndName() local
388 auto Range = C; in lexVirtualRegister() local
404 Cursor Range = C; in lexNamedVirtualRegister() local
429 auto Range = C; in maybeLexRegister() local
445 auto Range = C; in maybeLexGlobalValue() local
[all …]
/external/llvm/lib/CodeGen/MIRParser/
DMILexer.cpp62 MIToken &MIToken::reset(TokenKind Kind, StringRef Range) { in reset()
156 auto Range = C; in lexName() local
179 auto Range = C; in maybeLexIntegerType() local
236 auto Range = C; in maybeLexIdentifier() local
250 auto Range = C; in maybeLexMachineBasicBlock() local
281 auto Range = C; in maybeLexIndex() local
294 auto Range = C; in maybeLexIndexAndName() local
359 auto Range = C; in lexVirtualRegister() local
374 auto Range = C; in maybeLexRegister() local
390 auto Range = C; in maybeLexGlobalValue() local
[all …]
/external/easymock/src/org/easymock/internal/
DRange.java20 public class Range implements Serializable { class
28 public Range(int count) { in Range() method in Range
32 public Range(int minimum, int maximum) { in Range() method in Range
/external/perf_data_converter/src/quipper/
Daddress_mapper_test.cc19 struct Range { struct
20 uint64_t addr;
21 uint64_t size;
22 uint64_t id;
23 uint64_t base_offset;
25 Range() : addr(0), size(0), id(0), base_offset(0) {} in Range() function
27 Range(uint64_t addr, uint64_t size, uint64_t id, uint64_t base_offset) in Range() argument
30 bool contains(const uint64_t check_addr) const { in contains()
/external/bcc/src/cc/
Dsyms.h93 struct Range { struct
94 uint64_t start;
95 uint64_t end;
96 uint64_t file_offset;
97 Range(uint64_t s, uint64_t e, uint64_t f) in Range() function
/external/bcc/src/cc/includes/
Dsyms.h93 struct Range { struct
94 uint64_t start;
95 uint64_t end;
96 uint64_t file_offset;
97 Range(uint64_t s, uint64_t e, uint64_t f) in Range() argument
/external/cldr/tools/java/org/unicode/cldr/tool/
DGeneratedPluralSamples.java50 static class Range implements Comparable<Range> { class in GeneratedPluralSamples
60 public Range(FixedDecimal start, FixedDecimal end) { in Range() method in GeneratedPluralSamples.Range
74 public Range(Range other) { in Range() method in GeneratedPluralSamples.Range
/external/libchrome/ui/gfx/range/
Drange.h40 constexpr Range() : Range(0) {} in Range() function
43 constexpr Range(uint32_t start, uint32_t end) : start_(start), end_(end) {} in Range() function
46 constexpr explicit Range(uint32_t position) : Range(position, position) {} in Range() function
/external/clang/include/clang/Tooling/Core/
DReplacement.h40 Range() : Offset(0), Length(0) {} in Range() function
41 Range(unsigned Offset, unsigned Length) : Offset(Offset), Length(Length) {} in Range() function
246 const CharSourceRange Range = in Replacement() local
/external/clang/unittests/Lex/
DPPCallbacksTest.cpp148 StringRef GetSourceString(CharSourceRange Range) { in GetSourceString()
245 CharSourceRange Range = in TEST_F() local
255 CharSourceRange Range = in TEST_F() local
266 CharSourceRange Range = in TEST_F() local
277 CharSourceRange Range = in TEST_F() local
288 CharSourceRange Range = in TEST_F() local
300 CharSourceRange Range = in TEST_F() local
310 CharSourceRange Range = in TEST_F() local
321 CharSourceRange Range = in TEST_F() local
/external/clang/lib/Lex/
DPreprocessingRecord.cpp30 SourceRange Range) in InclusionDirective()
49 PreprocessingRecord::getPreprocessedEntitiesInRange(SourceRange Range) { in getPreprocessedEntitiesInRange()
127 PreprocessingRecord::getPreprocessedEntitiesInRangeSlow(SourceRange Range) { in getPreprocessedEntitiesInRangeSlow()
193 SourceRange Range = PPE->getSourceRange(); in getLoc() local
371 SourceRange Range) { in addMacroExpansion()
401 SourceRange Range) { in Defined()
408 void PreprocessingRecord::SourceRangeSkipped(SourceRange Range) { in SourceRangeSkipped()
414 SourceRange Range, in MacroExpands()
/external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
DMPIBugReporter.cpp38 SourceRange Range = RequestRegion->sourceRange(); in reportDoubleNonblocking() local
60 SourceRange Range = RequestRegion->sourceRange(); in reportMissingWait() local
81 SourceRange Range = RequestRegion->sourceRange(); in reportUnmatchedWait() local
/external/clang/include/clang/Lex/
DPreprocessingRecord.h79 SourceRange Range; variable
82 PreprocessedEntity(EntityKind Kind, SourceRange Range) in PreprocessedEntity()
125 PreprocessingDirective(EntityKind Kind, SourceRange Range) in PreprocessingDirective()
142 SourceRange Range) in MacroDefinitionRecord()
164 MacroExpansion(IdentifierInfo *BuiltinName, SourceRange Range) in MacroExpansion()
168 MacroExpansion(MacroDefinitionRecord *Definition, SourceRange Range) in MacroExpansion()
515 SourceRange Range; member
/external/clang/lib/Sema/
DSemaStmtAttr.cpp27 SourceRange Range) { in handleFallThroughAttr()
227 SourceRange Range) { in handleOpenCLUnrollHint()
273 SourceRange Range) { in ProcessStmtAttribute()
296 SourceRange Range) { in ProcessStmtAttributes()
/external/clang/unittests/Tooling/
DRefactoringTest.cpp439 TEST(Range, overlaps) { in TEST() argument
448 TEST(Range, contains) { in TEST() argument
455 TEST(Range, CalculateRangesOfReplacements) { in TEST() argument
472 TEST(Range, RangesAfterReplacements) { in TEST() argument
479 TEST(Range, RangesBeforeReplacements) { in TEST() argument
486 TEST(Range, NotAffectedByReplacements) { in TEST() argument
496 TEST(Range, RangesWithNonOverlappingReplacements) { in TEST() argument
506 TEST(Range, RangesWithOverlappingReplacements) { in TEST() argument
517 TEST(Range, MergeIntoOneRange) { in TEST() argument
524 TEST(Range, ReplacementsStartingAtRangeOffsets) { in TEST() argument
[all …]
/external/clang/lib/AST/
DMicrosoftMangle.cpp1476 SourceRange Range) { in mangleArgumentType()
1547 void MicrosoftCXXNameMangler::mangleType(QualType T, SourceRange Range, in mangleType()
1614 SourceRange Range) { in mangleType()
1800 SourceRange Range; in mangleFunctionType() local
2030 Qualifiers, SourceRange Range) { in mangleType()
2163 SourceRange Range) { in mangleType()
2179 Qualifiers, SourceRange Range) { in mangleType()
2188 Qualifiers, SourceRange Range) { in mangleType()
2200 SourceRange Range) { in mangleType()
2207 Qualifiers Quals, SourceRange Range) { in mangleType()
[all …]
/external/llvm/lib/CodeGen/
DSafeStackLayout.h25 StackColoring::LiveRange Range; member
36 StackColoring::LiveRange Range; member
DLiveRegMatrix.cpp104 const LiveRange &Range) { in assign()
121 const LiveRange &Range) { in unassign()
164 const LiveRange &Range) { in checkRegUnitInterference()

12345678910>>...15