Home
last modified time | relevance | path

Searched refs:Expectation (Results 1 – 19 of 19) sorted by relevance

/external/vogar/src/vogar/
DExpectationStore.java52 private final Map<String, Expectation> outcomes = new LinkedHashMap<String, Expectation>();
53 private final Map<String, Expectation> failures = new LinkedHashMap<String, Expectation>();
63 public Expectation get(String name) { in get()
64 Expectation byName = getByNameOrPackage(name); in get()
65 return byName != null ? byName : Expectation.SUCCESS; in get()
77 public Expectation get(Outcome outcome) { in get()
78 Expectation exactNameMatch = outcomes.get(outcome.getName()); in get()
83 for (Map.Entry<String, Expectation> entry : failures.entrySet()) { in get()
89 Expectation byName = getByNameOrPackage(outcome.getName()); in get()
90 return byName != null ? byName : Expectation.SUCCESS; in get()
[all …]
DExpectation.java38 final class Expectation { class
45 static final Expectation SUCCESS = new Expectation(Result.SUCCESS, MATCH_ALL_PATTERN,
69 public Expectation(Result result, in Expectation() method in Expectation
DAnnotatedOutcome.java39 private final Expectation expectation;
44 AnnotatedOutcome(Outcome outcome, Expectation expectation) { in AnnotatedOutcome()
DXmlReportPrinter.java104 Expectation expectation = expectationStore.get(outcome); in testsToSuites()
151 Expectation expectation = expectationStore.get(outcome); in print()
DDriver.java152 Expectation expectation = run.expectationStore.get(action.getName()); in enqueueActionTasks()
228 Expectation expectation = run.expectationStore.get(outcome); in recordOutcome()
DOutcome.java136 public ResultValue getResultValue(Expectation expectation) { in getResultValue()
DOutcomeStore.java72 Expectation expectation = expectationStore.get(outcome); in read()
DConsole.java157 String outcomeName, Result result, ResultValue resultValue, Expectation expectation) { in printResult()
/external/google-breakpad/src/testing/include/gmock/
Dgmock-spec-builders.h79 class Expectation; variable
222 Expectation GetHandleOf(ExpectationBase* exp);
479 class GTEST_API_ Expectation {
482 Expectation();
484 ~Expectation();
495 Expectation(internal::ExpectationBase& exp); // NOLINT
501 bool operator==(const Expectation& rhs) const {
505 bool operator!=(const Expectation& rhs) const { return !(*this == rhs); }
522 bool operator()(const Expectation& lhs, const Expectation& rhs) const { in operator()
527 typedef ::std::set<Expectation, Less> Set;
[all …]
/external/gmock/include/gmock/
Dgmock-spec-builders.h83 class Expectation; variable
226 Expectation GetHandleOf(ExpectationBase* exp);
487 class GTEST_API_ Expectation {
490 Expectation();
492 ~Expectation();
503 Expectation(internal::ExpectationBase& exp); // NOLINT
509 bool operator==(const Expectation& rhs) const {
513 bool operator!=(const Expectation& rhs) const { return !(*this == rhs); }
530 bool operator()(const Expectation& lhs, const Expectation& rhs) const { in operator()
535 typedef ::std::set<Expectation, Less> Set;
[all …]
/external/gmock/test/
Dgmock-spec-builders_test.cc77 using testing::Expectation;
415 Expectation e = EXPECT_CALL(a, DoA(1)) in TEST()
442 Expectation e = EXPECT_CALL(a, DoA(1)); in TEST()
1402 Expectation e1; // Default ctor. in TEST()
1405 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()
1406 Expectation e3 = EXPECT_CALL(a, DoA(3)).With(_); in TEST()
1409 Expectation e4 = EXPECT_CALL(a, DoA(4)).Times(1); in TEST()
1410 Expectation e5 = EXPECT_CALL(a, DoA(5)).InSequence(s); in TEST()
1412 Expectation e6 = EXPECT_CALL(a, DoA(6)).After(e2); in TEST()
1413 Expectation e7 = EXPECT_CALL(a, DoA(7)).WillOnce(Return()); in TEST()
[all …]
/external/google-breakpad/src/testing/test/
Dgmock-spec-builders_test.cc77 using testing::Expectation;
415 Expectation e = EXPECT_CALL(a, DoA(1)) in TEST()
442 Expectation e = EXPECT_CALL(a, DoA(1)); in TEST()
1368 Expectation e1; // Default ctor. in TEST()
1371 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()
1372 Expectation e3 = EXPECT_CALL(a, DoA(3)).With(_); in TEST()
1375 Expectation e4 = EXPECT_CALL(a, DoA(4)).Times(1); in TEST()
1376 Expectation e5 = EXPECT_CALL(a, DoA(5)).InSequence(s); in TEST()
1378 Expectation e6 = EXPECT_CALL(a, DoA(6)).After(e2); in TEST()
1379 Expectation e7 = EXPECT_CALL(a, DoA(7)).WillOnce(Return()); in TEST()
[all …]
/external/gmock/src/
Dgmock-spec-builders.cc439 Expectation UntypedFunctionMockerBase::GetHandleOf(ExpectationBase* exp) { in GetHandleOf()
444 return Expectation(*it); in GetHandleOf()
449 return Expectation(); in GetHandleOf()
775 Expectation::Expectation() {} in Expectation() function in testing::Expectation
777 Expectation::Expectation( in Expectation() function in testing::Expectation
781 Expectation::~Expectation() {} in ~Expectation()
784 void Sequence::AddExpectation(const Expectation& expectation) const { in AddExpectation()
/external/google-breakpad/src/testing/src/
Dgmock-spec-builders.cc439 Expectation UntypedFunctionMockerBase::GetHandleOf(ExpectationBase* exp) { in GetHandleOf()
444 return Expectation(*it); in GetHandleOf()
449 return Expectation(); in GetHandleOf()
775 Expectation::Expectation() {} in Expectation() function in testing::Expectation
777 Expectation::Expectation( in Expectation() function in testing::Expectation
781 Expectation::~Expectation() {} in ~Expectation()
784 void Sequence::AddExpectation(const Expectation& expectation) const { in AddExpectation()
/external/autotest/client/site_tests/policy_URLBlacklist/
Dcontrol33 environment, signing in with the specified username and password. Expectation
/external/autotest/client/site_tests/policy_ImagesBlockedForUrls/
Dcontrol33 environment, signing in with the specified username and password. Expectation
/external/webrtc/webrtc/examples/objc/AppRTCDemo/tests/
DARDAppClientTest.mm87 NSAssert(NO, @"Expectation timed out.");
/external/opencv3/modules/ml/doc/
Dml_intro.markdown299 Expectation Maximization {#ml_intro_em}
302 The Expectation Maximization(EM) algorithm estimates the parameters of the multivariate probability
323 (Expectation step or E-step), you find a probability \f$p_{i,k}\f$ (denoted \f$\alpha_{i,k}\f$ in
/external/guice/extensions/persist/lib/
Dhibernate3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/ ...