Searched refs:Range (Results 251 - 275 of 489) sorted by relevance

<<11121314151617181920

/external/libvpx/libvpx/test/
H A Dlevel_test.cc146 ::testing::Range(0, 9));
/external/llvm/test/MC/COFF/
H A Dcv-def-range.s84 # CHECK: Range: 0xF
/external/protobuf/gtest/test/
H A Dgtest_repeat_test.cc137 testing::Range(0, kNumberOfParamTests));
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h168 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
176 /// Range - A pair of iterators representing the range of case values to be
178 CaseRange Range; member in struct:llvm::SelectionDAGBuilder::CaseRec
275 First(F), Range(R), SValue(SV), Reg(Rg), RegVT(RgVT), Emitted(E),
278 APInt Range; member in struct:llvm::SelectionDAGBuilder::BitTestBlock
/external/v8/src/compiler/
H A Dtype-cache.h148 return Type::Range(min, max, zone());
/external/v8/testing/gtest/test/
H A Dgtest_repeat_test.cc137 testing::Range(0, kNumberOfParamTests));
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
H A Dgtest_repeat_test.cc137 testing::Range(0, kNumberOfParamTests));
/external/llvm/lib/Analysis/
H A DLazyValueInfo.cpp92 ConstantRange Range; member in class:__anon12481::LVILatticeVal
95 LVILatticeVal() : Tag(undefined), Val(nullptr), Range(1, true) {}
139 return Range;
190 bool changed = Range != NewR;
191 Range = std::move(NewR);
200 Range = std::move(NewR);
213 Range = RHS.Range;
271 ConstantRange NewR = Range.unionWith(RHS.getConstantRange());
353 ConstantRange Range local
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DSCCP.cpp475 std::pair<ItTy, ItTy> Range = UsersOfOverdefinedPHIs.equal_range(PN); local
476 for (ItTy It = Range.first, E = Range.second; It != E;) {
490 std::pair<ItTy, ItTy> Range = UsersOfOverdefinedPHIs.equal_range(PN); local
491 for (ItTy J = Range.first, E = Range.second; J != E; ++J)
708 std::pair<ItTy, ItTy> Range = UsersOfOverdefinedPHIs.equal_range(&PN); local
710 if (Range.first == Range.second)
714 for (ItTy I = Range
[all...]
/external/clang/include/clang/Basic/
H A DPartialDiagnostic.h303 for (const CharSourceRange &Range : DiagStorage->DiagRanges)
304 DB.AddSourceRange(Range);
/external/google-breakpad/src/processor/
H A Dmap_serializers-inl.h125 typename std::map<Address, Range>::const_iterator iter;
157 typename std::map<Address, Range>::const_iterator iter;
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DContractionsAndExpansions.java59 Iterator<Trie2.Range> trieIterator = data.trie.iterator();
60 Trie2.Range range;
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DContractionsAndExpansions.java55 Iterator<Trie2.Range> trieIterator = data.trie.iterator();
56 Trie2.Range range;
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.h62 void addRange(RangeSpan Range) { Ranges.push_back(Range); } argument
H A DDwarfCompileUnit.cpp231 void DwarfCompileUnit::addRange(RangeSpan Range) { argument
240 &Range.getEnd()->getSection())) {
241 CURanges.push_back(Range);
245 CURanges.back().setEnd(Range.getEnd());
393 SmallVector<RangeSpan, 2> Range) {
401 RangeSpanList List(Asm->createTempSymbol("debug_ranges"), std::move(Range));
392 addScopeRangeList(DIE &ScopeDIE, SmallVector<RangeSpan, 2> Range) argument
/external/llvm/lib/CodeGen/
H A DSafeStackColoring.cpp259 LiveRange &Range = LiveRanges[AllocaNo]; local
260 dbgs() << " " << AllocaNo << ": " << Range << "\n"; local
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DLowerSwitch.cpp221 uint64_t Range = cast<ConstantInt>(Leaf.High)->getSExtValue() - local
223 for (uint64_t j = 0; j < Range; ++j) {
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DAggressiveAntiDepBreaker.cpp525 Range = State->GetRegRefs().equal_range(Reg);
527 AggressiveAntiDepState::RegisterReference>::iterator Q = Range.first,
528 QE = Range.second; Q != QE; ++Q) {
919 Range = RegRefs.equal_range(CurrReg);
922 Q = Range.first, QE = Range.second; Q != QE; ++Q) {
/external/clang/lib/Parse/
H A DParseExprCXX.cpp58 SourceRange Range; local
59 Range.setBegin(DigraphToken.getLocation());
60 Range.setEnd(ColonToken.getLocation());
63 << FixItHint::CreateReplacement(Range, "< ::");
794 Intro.Range.setBegin(T.getOpenLocation());
1025 Intro.Range.setEnd(T.getCloseLocation());
1112 SourceLocation LambdaBeginLoc = Intro.Range.getBegin();
1199 SourceRange Range; local
1200 TrailingReturnType = ParseTrailingReturnType(Range);
1201 if (Range
1268 SourceRange Range; local
[all...]
/external/clang/lib/Sema/
H A DSemaStmt.cpp1963 SourceLocation ColonLoc, Expr *Range,
1969 if (Range && ObjCEnumerationCollection(Range))
1970 return ActOnObjCForCollectionStmt(ForLoc, First, Range, RParenLoc);
1981 if (LoopVar->isInvalidDecl() || !Range ||
1982 DiagnoseUnexpandedParameterPack(Range, UPPC_Expression)) {
1989 ExprResult Coawait = ActOnCoawaitExpr(S, CoawaitLoc, Range);
1991 Range = Coawait.get();
1995 SourceLocation RangeLoc = Range->getLocStart();
1999 if (FinishForRangeVarDecl(*this, RangeVar, Range, RangeLo
1961 ActOnCXXForRangeStmt(Scope *S, SourceLocation ForLoc, SourceLocation CoawaitLoc, Stmt *First, SourceLocation ColonLoc, Expr *Range, SourceLocation RParenLoc, BuildForRangeKind Kind) argument
2114 RebuildForRangeWithDereference(Sema &SemaRef, Scope *S, SourceLocation ForLoc, SourceLocation CoawaitLoc, Stmt *LoopVarDecl, SourceLocation ColonLoc, Expr *Range, SourceLocation RangeLoc, SourceLocation RParenLoc) argument
2223 Expr *Range = RangeVar->getInit(); local
2318 Expr *Range = BEFFailure ? EndRangeRef.get() : BeginRangeRef.get(); local
[all...]
/external/swiftshader/third_party/LLVM/lib/TableGen/
H A DRecord.cpp462 ProfileBitsInit(FoldingSetNodeID &ID, ArrayRef<Init *> Range) { argument
463 ID.AddInteger(Range.size());
465 for (ArrayRef<Init *>::iterator i = Range.begin(),
466 iend = Range.end();
472 BitsInit *BitsInit::get(ArrayRef<Init *> Range) { argument
477 ProfileBitsInit(ID, Range);
483 BitsInit *I = new BitsInit(Range);
587 ArrayRef<Init *> Range,
589 ID.AddInteger(Range.size());
592 for (ArrayRef<Init *>::iterator i = Range
586 ProfileListInit(FoldingSetNodeID &ID, ArrayRef<Init *> Range, RecTy *EltTy) argument
599 get(ArrayRef<Init *> Range, RecTy *EltTy) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_text.c1091 decl.Range.First = brackets[0].first;
1092 decl.Range.Last = brackets[0].last;
1094 decl.Range.First = brackets[1].first;
1095 decl.Range.Last = brackets[1].last;
1268 (decl.Range.Last + 1));
1270 for (i = 0; i <= decl.Range.Last; ++i) {
1278 if (i != decl.Range.Last) {
/external/clang/lib/Lex/
H A DLexer.cpp831 static CharSourceRange makeRangeFromFileLocs(CharSourceRange Range, argument
834 SourceLocation Begin = Range.getBegin();
835 SourceLocation End = Range.getEnd();
837 if (Range.isTokenRange()) {
858 CharSourceRange Lexer::makeFileCharRange(CharSourceRange Range, argument
861 SourceLocation Begin = Range.getBegin();
862 SourceLocation End = Range.getEnd();
867 return makeRangeFromFileLocs(Range, SM, LangOpts);
872 Range.setBegin(Begin);
873 return makeRangeFromFileLocs(Range, S
922 getSourceText(CharSourceRange Range, const SourceManager &SM, const LangOptions &LangOpts, bool *Invalid) argument
1424 maybeDiagnoseIDCharCompat(DiagnosticsEngine &Diags, uint32_t C, CharSourceRange Range, bool IsFirst) argument
[all...]
/external/mesa3d/src/gallium/drivers/radeon/
H A Dradeon_setup_tgsi_llvm.c214 for (idx = decl->Range.First; idx <= decl->Range.Last; idx++) {
232 for (idx = decl->Range.First; idx <= decl->Range.Last; idx++) {
241 for (idx = decl->Range.First; idx <= decl->Range.Last; idx++) {
250 for (idx = decl->Range.First; idx <= decl->Range.Last; idx++) {
260 decl->Range.Last + 1);
/external/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp376 void SDiagsWriter::AddCharSourceRangeToRecord(CharSourceRange Range, argument
379 AddLocToRecord(Range.getBegin(), Record, &SM);
381 if (Range.isTokenRange())
382 TokSize = Lexer::MeasureTokenLength(Range.getEnd(),
385 AddLocToRecord(Range.getEnd(), Record, &SM, TokSize);

Completed in 1420 milliseconds

<<11121314151617181920