| /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/ |
| ASTSelectionRequirements.cpp | 18 Expected<SourceRange> Range = 20 if (!Range) 21 return Range.takeError(); 24 findSelectedASTNodes(Context.getASTContext(), *Range); 27 Range->getBegin(), diag::err_refactor_selection_invalid_ast);
|
| /src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/ |
| RewriteRule.cpp | 39 Expected<CharSourceRange> Range = E.TargetRange(Result); 40 if (!Range) 41 return Range.takeError(); 43 tooling::getRangeForEdit(*Range, *Result.Context); 50 // produces a bad range, whereas the latter will simply ignore A. 61 T.Range = *EditRange; 84 Expected<CharSourceRange> Range = Anchor(Result); 85 if (!Range) 86 return Range.takeError(); 87 // In case the range is inside a macro expansion, map the location back to [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/ |
| DWARFLocationExpression.h | 23 /// The address range in which this expression is valid. None denotes a 26 Optional<DWARFAddressRange> Range; 34 return L.Range == R.Range && L.Expr == R.Expr;
|
| DWARFDebugAranges.h | 35 struct Range { 36 explicit Range(uint64_t LowPC, uint64_t HighPC, uint64_t CUOffset) 52 bool operator<(const Range &other) const { 56 uint64_t LowPC; /// Start of address range. 57 uint64_t Length; /// End of address range (not including this address). 74 using RangeColl = std::vector<Range>;
|
| /src/external/gpl3/gcc/dist/contrib/unicode/ |
| gen-combining-chars.py | 27 class Range: 34 return f'Range({self.start:x}, {self.end:x}, {self.value})' 38 for code_point in range(0x10FFFF): 43 # Extend current range 46 # Start a new range 47 ranges.append(Range(code_point, code_point, value))
|
| gen-printable-chars.py | 29 class Range: 36 return f'Range({self.start:x}, {self.end:x}, {self.value})' 40 for code_point in range(0x10FFFF): 45 # Extend current range 48 # Start a new range 49 ranges.append(Range(code_point, code_point, value))
|
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_range.h | 9 // Contais Range and related utilities. 21 struct Range { 26 inline bool operator==(const Range &lhs, const Range &rhs) { 30 inline bool operator!=(const Range &lhs, const Range &rhs) { 35 void Intersect(ArrayRef<Range> a, ArrayRef<Range> b, 36 InternalMmapVectorNoCtor<Range> &output);
|
| /src/external/apache2/llvm/dist/clang/include/clang/Parse/ |
| LoopHint.h | 21 // Source range of the directive. 22 SourceRange Range;
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| ada-unicode.py | 29 class Range: 36 # The start of the range. 41 # The end of the range. 63 # The current range we are processing. If None, then we're outside of a range. 64 current_range: Range | None = None 67 all_ranges: list[Range] = [] 102 current_range = Range(val, updelta, lowdelta) 107 for c in range(0, 0x10FFFF):
|
| /src/external/gpl3/gdb/dist/gdb/ |
| ada-unicode.py | 29 class Range: 36 # The start of the range. 41 # The end of the range. 63 # The current range we are processing. If None, then we're outside of a range. 64 current_range: Range | None = None 67 all_ranges: list[Range] = [] 102 current_range = Range(val, updelta, lowdelta) 107 for c in range(0, 0x10FFFF):
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/ |
| MPIBugReporter.cpp | 37 SourceRange Range = RequestRegion->sourceRange(); 39 if (Range.isValid()) 40 Report->addRange(Range); 59 SourceRange Range = RequestRegion->sourceRange(); 60 if (Range.isValid()) 61 Report->addRange(Range); 80 SourceRange Range = RequestRegion->sourceRange(); 81 if (Range.isValid()) 82 Report->addRange(Range);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Testing/Support/ |
| Annotations.h | 23 /// void err() { [["hello" == 42]]; } // [[this is a range]] 31 /// llvm::Range R = Example.range("fail"); // find named ranges 49 /// represents a half-open range. 50 struct Range { 54 friend bool operator==(const Range &L, const Range &R) { 57 friend bool operator!=(const Range &L, const Range &R) { return !(L == R); } 74 /// Returns the location of the range marked by [[ ]] (or $name[[ ]]) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/MCA/Stages/ |
| EntryStage.cpp | 61 auto Range = make_range(&Instructions[NumRetired], Instructions.end()); 62 auto It = find_if(Range, [](const std::unique_ptr<Instruction> &I) {
|
| /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/ |
| gtest-param-test.h | 81 // Range(begin, end [, step]) - Yields values {begin, begin+step, 86 // ValuesIn(begin,end) container, or an iterator range [begin, end). 205 // Range() returns generators providing sequences of values in a range. 208 // Range(start, end) 211 // Range(start, end, step) 215 // * The generated sequences never include end. For example, Range(1, 5) 216 // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2) 229 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) { 235 internal::ParamGenerator<T> Range(T start, T end) [all...] |
| /src/external/bsd/zstd/dist/contrib/pzstd/utils/ |
| Range.h | 11 * A subset of `folly/Range.h`. 50 class Range { 62 constexpr Range() : b_(), e_() {} 63 constexpr Range(Iter begin, Iter end) : b_(begin), e_(end) {} 65 constexpr Range(Iter begin, size_type size) : b_(begin), e_(begin + size) {} 68 /* implicit */ Range(Iter str) : b_(str), e_(str + std::strlen(str)) {} 71 /* implicit */ Range(const std::string& str) 74 // Allow implicit conversion from Range<From> to Range<To> if From is 82 constexpr /* implicit */ Range(const Range<OtherIter>& other [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| PointerIterationChecker.cpp | 43 auto Range = MarkedStmt->getSourceRange(); 54 OS.str(), Location, Range);
|
| PointerSortingChecker.cpp | 43 auto Range = MarkedStmt->getSourceRange(); 54 OS.str(), Location, Range);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/ |
| FunctionInfo.h | 16 #include "llvm/DebugInfo/GSYM/Range.h" 28 /// address range. If a function has discontiguous address ranges, they will 90 AddressRange Range; 96 : Range(Addr, Addr + Size), Name(N) {} 101 /// range and name. When converting information from a symbol table and from 103 /// same range and we need to be able to tell which one is the better object 173 uint64_t startAddress() const { return Range.Start; } 174 uint64_t endAddress() const { return Range.End; } 175 uint64_t size() const { return Range.size(); } 176 void setStartAddress(uint64_t Addr) { Range.Start = Addr; [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/ |
| InlineInfo.cpp | 25 for (auto Range : II.Ranges) { 30 OS << Range; 105 /// \param BaseAddr The address that the relative address range offsets are 122 // The address range is contained within this InlineInfo, add the source 252 "child range not contained in parent");
|
| /src/external/gpl3/binutils/dist/gprofng/src/ |
| Symbol.h | 27 class Range 30 Range (uint64_t _low, uint64_t _high) 60 Vector<Range *> *ranges, Vector<Symbol *> *symbols = NULL);
|
| /src/external/gpl3/binutils.old/dist/gprofng/src/ |
| Symbol.h | 27 class Range 30 Range (uint64_t _low, uint64_t _high) 60 Vector<Range *> *ranges, Vector<Symbol *> *symbols = NULL);
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| RawCommentList.h | 107 SourceRange getSourceRange() const LLVM_READONLY { return Range; } 108 SourceLocation getBeginLoc() const LLVM_READONLY { return Range.getBegin(); } 109 SourceLocation getEndLoc() const LLVM_READONLY { return Range.getEnd(); } 147 SourceRange Range; 166 Range(SR), RawTextValid(false), BriefTextValid(false), Kind(K),
|
| /src/external/apache2/llvm/dist/clang/lib/Format/ |
| AffectedRangeManager.cpp | 61 const CharSourceRange &Range) { 65 if (!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(), I->getBegin()) && 66 !SourceMgr.isBeforeInTranslationUnit(I->getEnd(), Range.getBegin())) 80 CharSourceRange Range = CharSourceRange::getCharRange(Start, End); 81 return affectsCharSourceRange(Range);
|
| NamespaceEndCommentsFixer.cpp | 147 auto Range = CharSourceRange::getCharRange(EndLoc, EndLoc); 148 auto Err = Fixes->add(tooling::Replacement(SourceMgr, Range, EndCommentText)); 160 auto Range = CharSourceRange::getCharRange(Comment->getStartOfNonWhitespace(), 162 auto Err = Fixes->add(tooling::Replacement(SourceMgr, Range, EndCommentText));
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| SafeStackLayout.h | 30 StackLifetime::LiveRange Range; 33 const StackLifetime::LiveRange &Range) 34 : Start(Start), End(End), Range(Range) {} 43 StackLifetime::LiveRange Range; 59 const StackLifetime::LiveRange &Range);
|