Searched refs:ScopedProperty (Results 1 – 3 of 3) sorted by relevance
24 TEST(ScopedProperty, simpleBool) { in TEST() argument27 ScopedProperty<bool> debugOverdraw(Properties::debugOverdraw, true); in TEST()32 ScopedProperty<bool> debugOverdraw(Properties::debugOverdraw, false); in TEST()
157 ScopedProperty<bool> prop(Properties::debugOverdraw, true); in RENDERTHREAD_SKIA_PIPELINE_TEST()
100 class ScopedProperty {102 ScopedProperty(T& property, T newValue) : mPropertyPtr(&property), mOldValue(property) { in ScopedProperty() function105 ~ScopedProperty() { *mPropertyPtr = mOldValue; } in ~ScopedProperty()