PERCENT            65 Source/core/css/resolver/StyleResolverStats.cpp     output.append(String::format("  %u calls were made to findSharedStyle, %u found a candidate to share with (%.2f%%).\n", sharedStyleLookups, sharedStyleFound, PERCENT(sharedStyleFound, sharedStyleLookups)));
PERCENT            67 Source/core/css/resolver/StyleResolverStats.cpp         output.append(String::format("  %u candidates could have matched but were not in the list when searching (%.2f%%).\n", sharedStyleMissed, PERCENT(sharedStyleMissed, sharedStyleLookups)));
PERCENT            70 Source/core/css/resolver/StyleResolverStats.cpp         PERCENT(sharedStylesRejected, sharedStyleFound),
PERCENT            71 Source/core/css/resolver/StyleResolverStats.cpp         PERCENT(sharedStyleRejectedByUncommonAttributeRules, sharedStylesRejected),
PERCENT            72 Source/core/css/resolver/StyleResolverStats.cpp         PERCENT(sharedStyleRejectedBySiblingRules, sharedStylesRejected),
PERCENT            73 Source/core/css/resolver/StyleResolverStats.cpp         PERCENT(sharedStyleRejectedByParent, sharedStylesRejected)));
PERCENT            74 Source/core/css/resolver/StyleResolverStats.cpp     output.append(String::format("  %u of found styles were used for sharing (%.2f%%).\n", sharedStylesUsed, PERCENT(sharedStylesUsed, sharedStyleFound)));
PERCENT            75 Source/core/css/resolver/StyleResolverStats.cpp     output.append(String::format("  %.2f%% of calls to findSharedStyle returned a shared style.\n", PERCENT(sharedStylesUsed, sharedStyleLookups)));
PERCENT            80 Source/core/css/resolver/StyleResolverStats.cpp     output.append(String::format("  %u calls to applyMatchedProperties, %u hit the cache (%.2f%%).\n", matchedPropertyApply, matchedPropertyCacheHit, PERCENT(matchedPropertyCacheHit, matchedPropertyApply)));
PERCENT            81 Source/core/css/resolver/StyleResolverStats.cpp     output.append(String::format("  %u cache hits also shared the inherited style (%.2f%%).\n", matchedPropertyCacheInheritedHit, PERCENT(matchedPropertyCacheInheritedHit, matchedPropertyCacheHit)));
PERCENT            82 Source/core/css/resolver/StyleResolverStats.cpp     output.append(String::format("  %u styles created in applyMatchedProperties were added to the cache (%.2f%%).\n", matchedPropertyCacheAdded, PERCENT(matchedPropertyCacheAdded, matchedPropertyApply)));