Lines Matching defs:shared_path
5447 SkPath unique_path, shared_path;
5449 add_verbs(&shared_path, verbs);
5451 const SkPath copy = shared_path;
5453 REPORTER_ASSERT(reporter, shared_path == unique_path);
5454 REPORTER_ASSERT(reporter, shared_path == copy);
5457 uint32_t sID = shared_path.getGenerationID();
5465 SkPathPriv::ShrinkToFit(&shared_path);
5466 REPORTER_ASSERT(reporter, shared_path == unique_path);
5467 REPORTER_ASSERT(reporter, shared_path == copy);
5474 // but since shared_path has changed, and was not uniquely owned, it's gen ID needs to have
5478 REPORTER_ASSERT(reporter, sID != shared_path.getGenerationID());