Lines Matching refs:sample_text
36 dh_.reset(BlockHash::CreateDictionaryHash(sample_text, in BlockHashTest()
37 strlen(sample_text))); in BlockHashTest()
38 th_.reset(BlockHash::CreateTargetHash(sample_text, strlen(sample_text), 0)); in BlockHashTest()
127 MakeEachLetterABlock(sample_text_without_spaces, &sample_text); in SetUpTestCase()
156 delete[] sample_text; in TearDownTestCase()
215 static const char* sample_text; member in open_vcdiff::BlockHashTest
297 const char* BlockHashTest::sample_text = NULL; member in open_vcdiff::BlockHashTest
549 th_->AddOneIndexHash(i, RollingHash<kBlockSize>::Hash(&sample_text[i])); in TEST_F()
705 th_->AddAllBlocksThroughIndex(StringLengthAsInt(sample_text)); in TEST_F()
726 BlockHash zero_sized_hash(sample_text, 0, 0); in TEST_F()
738 BlockHash bh(sample_text, strlen(sample_text), 0); in TEST_F()
744 BlockHash bh(sample_text, strlen(sample_text), 0); in TEST_F()
750 EXPECT_DEBUG_DEATH(th_->AddAllBlocksThroughIndex(strlen(sample_text) + 1), in TEST_F()
774 BlockHash th2(sample_text, strlen(sample_text), 0x10000); in TEST_F()
929 EXPECT_DEBUG_DEATH(th_->AddOneIndexHash(StringLengthAsInt(sample_text), in TEST_F()