Lines Matching defs:unique_path
5447 SkPath unique_path, shared_path;
5448 add_verbs(&unique_path, verbs);
5453 REPORTER_ASSERT(reporter, shared_path == unique_path);
5456 uint32_t uID = unique_path.getGenerationID();
5462 size_t before = PathTest_Private::GetFreeSpace(unique_path);
5464 SkPathPriv::ShrinkToFit(&unique_path);
5466 REPORTER_ASSERT(reporter, shared_path == unique_path);
5469 // since the unique_path is "unique", it's genID need not have changed even though
5470 // unique_path has changed (been shrunk)
5471 REPORTER_ASSERT(reporter, uID == unique_path.getGenerationID());
5481 size_t after = PathTest_Private::GetFreeSpace(unique_path);
5485 size_t after2 = PathTest_Private::GetFreeSpace(unique_path);