Lines Matching refs:fRandom
358 int texIdx = d->fRandom->nextBool() ? GrProcessorUnitTest::kSkiaPMTextureIdx in TestCreate()
362 domain.fLeft = d->fRandom->nextRangeScalar(0, proxy->width()); in TestCreate()
363 domain.fRight = d->fRandom->nextRangeScalar(domain.fLeft, proxy->width()); in TestCreate()
364 domain.fTop = d->fRandom->nextRangeScalar(0, proxy->height()); in TestCreate()
365 domain.fBottom = d->fRandom->nextRangeScalar(domain.fTop, proxy->height()); in TestCreate()
367 (GrTextureDomain::Mode) d->fRandom->nextULessThan(GrTextureDomain::kModeCount); in TestCreate()
369 (GrTextureDomain::Mode) d->fRandom->nextULessThan(GrTextureDomain::kModeCount); in TestCreate()
370 const SkMatrix& matrix = GrTest::TestMatrix(d->fRandom); in TestCreate()
372 d->fRandom->nextBool() : false; in TestCreate()
489 int texIdx = d->fRandom->nextBool() ? GrProcessorUnitTest::kSkiaPMTextureIdx in TestCreate()
493 subset.fLeft = d->fRandom->nextULessThan(proxy->width() - 1); in TestCreate()
494 subset.fRight = d->fRandom->nextRangeU(subset.fLeft, proxy->width()); in TestCreate()
495 subset.fTop = d->fRandom->nextULessThan(proxy->height() - 1); in TestCreate()
496 subset.fBottom = d->fRandom->nextRangeU(subset.fTop, proxy->height()); in TestCreate()
498 pt.fX = d->fRandom->nextULessThan(2048); in TestCreate()
499 pt.fY = d->fRandom->nextULessThan(2048); in TestCreate()