Home | History | Annotate | Download | only in gm

Lines Matching defs:Expectations

46          * checksum within JSON expectations file, in the form
96 * Test expectations (allowed image results, etc.)
98 class Expectations {
101 * No expectations at all.
103 explicit Expectations(bool ignoreFailure=kDefaultIgnoreFailure);
109 explicit Expectations(const SkBitmap& bitmap, bool ignoreFailure=kDefaultIgnoreFailure);
114 explicit Expectations(const BitmapAndDigest& bitmapAndDigest);
117 * Create Expectations from a JSON element as found within the
121 * don't have any expectations.
123 explicit Expectations(Json::Value jsonElement);
126 * Returns true iff we want to ignore failed expectations.
158 * Return a JSON representation of the expectations.
171 * Abstract source of Expectations objects for individual tests.
177 virtual Expectations get(const char *testName) const = 0;
184 * Return Expectations based on individual image files on disk.
189 * Create an ExpectationsSource that will return Expectations based on
197 Expectations get(const char *testName) const SK_OVERRIDE ;
204 * Return Expectations based on JSON summary file.
209 * Create an ExpectationsSource that will return Expectations based on
216 Expectations get(const char *testName) const SK_OVERRIDE;