Home
last modified time | relevance | path

Searched refs:range_ (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/flang/lib/Parser/
H A Dprovenance.cpp148 AllSources::AllSources() : range_{1, 1} { in AllSources()
152 origin_.emplace_back(range_, std::string{'?'});
202 ProvenanceRange covers{range_.NextAfter(), source.bytes()}; in AddIncludedFile()
203 CHECK(range_.AnnexIfPredecessor(covers)); in AddIncludedFile()
211 ProvenanceRange covers{range_.NextAfter(), expansion.size()}; in AddMacroCall()
212 CHECK(range_.AnnexIfPredecessor(covers)); in AddMacroCall()
219 ProvenanceRange covers{range_.NextAfter(), text.size()}; in AddCompilerInsertion()
220 CHECK(range_.AnnexIfPredecessor(covers)); in AddCompilerInsertion()
418 CHECK(range_.Contains(at)); in MapToOrigin()
509 DumpRange(o, range_); in Dump()
/llvm-project-15.0.7/flang/lib/Evaluate/
H A Dtarget.cpp150 : targetCharacteristics_{targetCharacteristics}, precision_{p}, range_{ in SelectedRealKindVisitor()
155 if (Scalar<T>::PRECISION >= precision_ && Scalar<T>::RANGE >= range_ && in Test()
165 std::int64_t precision_, range_; member in Fortran::evaluate::SelectedRealKindVisitor
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dprovenance.h144 std::size_t size() const { return range_.size(); } in size()
164 bool IsValid(Provenance at) const { return range_.Contains(at); } in IsValid()
166 return range.size() > 0 && range_.Contains(range); in IsValid()
212 ProvenanceRange range_; variable
/llvm-project-15.0.7/third-party/benchmark/include/benchmark/
H A Dbenchmark.h732 assert(range_.size() > pos);
733 return range_[pos];
778 std::vector<int64_t> range_; variable
/llvm-project-15.0.7/third-party/benchmark/src/
H A Dbenchmark.cc146 range_(ranges), in State()