HomeSort by relevance Sort by last modified time
    Searched defs:Expectation (Results 1 - 5 of 5) sorted by null

  /cts/libs/vogar-expect/src/vogar/
Expectation.java 37 public final class Expectation {
39 /** Justification for this expectation */
57 public Expectation(Result result, Pattern pattern, Set<String> tags, String description, long bug) {
87 * Set the current status of this expectation's bug. When a bug is open,
95 * Returns true if {@code outcome} matches this expectation.
106 return "Expectation[description=" + description + " pattern=" + pattern.pattern() + "]";
  /external/skia/tools/
image_expectations.h 18 * The digest of an image (either an image we have generated locally, or an image expectation).
93 * This is just an ImageDigest (or lack thereof, if there is no expectation) and a boolean
96 class Expectation {
99 * No expectation at all.
101 explicit Expectation(bool ignoreFailure=kDefaultIgnoreFailure);
106 explicit Expectation(const SkString &hashType, uint64_t hashValue,
112 explicit Expectation(const SkBitmap& bitmap,
130 * If this expectation DOES contain an image, and imageDigest doesn't match it,
195 * Returns the Expectation for this test.
203 Expectation getExpectation(const char *sourceName, const int *tileNumber=NULL)
    [all...]
image_expectations.cpp 99 // Expectation class...
105 Expectation::Expectation(bool ignoreFailure) :
108 Expectation::Expectation(const SkString &hashType, uint64_t hashValue, bool ignoreFailure) :
111 Expectation::Expectation(const SkBitmap& bitmap, bool ignoreFailure) :
114 bool Expectation::ignoreFailure() const { return this->fIgnoreFailure; }
116 bool Expectation::empty() const { return this->fIsEmpty; }
118 bool Expectation::matches(ImageDigest &imageDigest)
167 Expectation expectation = this->getExpectation(sourceName, tileNumber); local
    [all...]
  /external/vogar/src/vogar/
Expectation.java 38 final class Expectation {
44 /** The expectation of a general successful run. */
45 static final Expectation SUCCESS = new Expectation(Result.SUCCESS, MATCH_ALL_PATTERN,
48 /** Justification for this expectation */
66 /** True if the expectation was read from an expectation file */
69 public Expectation(Result result,
109 * Set the current status of this expectation's bug. When a bug is open,
117 * Returns true if {@code outcome} matches this expectation
    [all...]
  /external/google-breakpad/src/testing/src/
gmock-spec-builders.cc 87 // Explicitly specifies the cardinality of this expectation. Used by
94 // Retires all pre-requisites of this expectation.
98 // We can take this short-cut as we never retire an expectation
113 // Returns true iff all pre-requisites of this expectation have been
127 // Adds unsatisfied pre-requisites of this expectation to 'result'.
149 // expectation has occurred.
160 // Describes the state of the expectation (e.g. is it satisfied?
332 // No expectation is set on this mock method - we have an
407 // In case the action deletes a piece of the expectation, we
422 // No expectation matches this call - reports a failure
    [all...]

Completed in 2032 milliseconds