Searched refs:Expectation (Results 1 - 23 of 23) sorted by relevance

/external/skia/tools/skpbench/
H A D_hardware_pixel_c.py6 from _hardware import HardwareException, Expectation namespace
99 [Expectation(int, min_value=30, name='battery', sleeptime=30*60),
100 Expectation(str, exact_value='0-2', name='online cpus'),
101 Expectation(int, max_value=40000, name='skin temperature'),
102 Expectation(int, max_value=86000, name='cpu temperature'),
103 Expectation(int, max_value=87000, name='gpu temperature'),
104 Expectation(int, exact_value=0, name='cpu throttle'),
105 Expectation(int, exact_value=0, name='gpu throttle')] + \
106 [Expectation(int, exact_value=CPU_CLOCK_RATE,
109 [Expectation(st
[all...]
H A D_hardware_nexus_6p.py6 from _hardware import HardwareException, Expectation namespace
139 [Expectation(int, min_value=30, name='battery', sleeptime=30*60),
140 Expectation(str, exact_value='4-6', name='online cpus'),
141 Expectation(int, max_value=88, name='tsens_tz_sensor13'),
142 Expectation(int, max_value=88, name='tsens_tz_sensor14'),
143 Expectation(long, min_value=(GPU_CLOCK_RATE - 5000),
145 Expectation(long, min_value=647995000, max_value=648007500,
147 [Expectation(int, exact_value=CPU_CLOCK_RATE, name='cpu_%i clock rate' %i)
150 Expectation.check_all(expectations, result.splitlines())
H A D_hardware.py63 class Expectation: class in inherits:
/external/vogar/src/vogar/
H A 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) {
64 Expectation byName = getByNameOrPackage(name);
65 return byName != null ? byName : Expectation.SUCCESS;
77 public Expectation get(Outcome outcome) {
78 Expectation exactNameMatch = outcomes.get(outcome.getName());
83 for (Map.Entry<String, Expectation> entr
[all...]
H A DExpectation.java38 final class Expectation { class
45 static final Expectation SUCCESS = new Expectation(Result.SUCCESS, MATCH_ALL_PATTERN,
69 public Expectation(Result result, method in class:Expectation
128 return "Expectation[description=" + description + " pattern=" + pattern.pattern() + "]";
H A DAnnotatedOutcome.java39 private final Expectation expectation;
44 AnnotatedOutcome(Outcome outcome, Expectation expectation) {
H A DXmlReportPrinter.java104 Expectation expectation = expectationStore.get(outcome);
151 Expectation expectation = expectationStore.get(outcome);
H A DOutcome.java136 public ResultValue getResultValue(Expectation expectation) {
H A DDriver.java152 Expectation expectation = run.expectationStore.get(action.getName());
228 Expectation expectation = run.expectationStore.get(outcome);
H A DOutcomeStore.java72 Expectation expectation = expectationStore.get(outcome);
H A DConsole.java157 String outcomeName, Result result, ResultValue resultValue, Expectation expectation) {
/external/google-breakpad/src/testing/test/
H A Dgmock-spec-builders_test.cc51 // Helper class for testing the Expectation class template.
77 using testing::Expectation;
415 Expectation e = EXPECT_CALL(a, DoA(1))
442 Expectation e = EXPECT_CALL(a, DoA(1));
1364 // Tests Expectation.
1368 Expectation e1; // Default ctor.
1371 Expectation e2 = EXPECT_CALL(a, DoA(2));
1372 Expectation e3 = EXPECT_CALL(a, DoA(3)).With(_);
1375 Expectation e4 = EXPECT_CALL(a, DoA(4)).Times(1);
1376 Expectation e
[all...]
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-spec-builders.h79 class Expectation;
97 // Helper class for testing the Expectation class template.
220 // Returns an Expectation object that references and co-owns exp,
222 Expectation GetHandleOf(ExpectationBase* exp);
462 // Expectation e1 = EXPECT_CALL(...)...;
470 // - Constness is shallow: a const Expectation object itself cannot
479 class GTEST_API_ Expectation {
482 Expectation();
484 ~Expectation();
487 // Expectation
[all...]
/external/googletest/googlemock/include/gmock/
H A Dgmock-spec-builders.h83 class Expectation;
101 // Helper class for testing the Expectation class template.
224 // Returns an Expectation object that references and co-owns exp,
226 Expectation GetHandleOf(ExpectationBase* exp);
470 // Expectation e1 = EXPECT_CALL(...)...;
478 // - Constness is shallow: a const Expectation object itself cannot
487 class GTEST_API_ Expectation {
490 Expectation();
492 ~Expectation();
495 // Expectation
[all...]
/external/v8/testing/gmock/include/gmock/
H A Dgmock-spec-builders.h83 class Expectation;
101 // Helper class for testing the Expectation class template.
224 // Returns an Expectation object that references and co-owns exp,
226 Expectation GetHandleOf(ExpectationBase* exp);
470 // Expectation e1 = EXPECT_CALL(...)...;
478 // - Constness is shallow: a const Expectation object itself cannot
487 class GTEST_API_ Expectation {
490 Expectation();
492 ~Expectation();
495 // Expectation
[all...]
/external/googletest/googlemock/test/
H A Dgmock-spec-builders_test.cc51 // Helper class for testing the Expectation class template.
77 using testing::Expectation;
423 Expectation e = EXPECT_CALL(a, DoA(1))
450 Expectation e = EXPECT_CALL(a, DoA(1));
1407 // Tests Expectation.
1411 Expectation e1; // Default ctor.
1414 Expectation e2 = EXPECT_CALL(a, DoA(2));
1415 Expectation e3 = EXPECT_CALL(a, DoA(3)).With(_);
1418 Expectation e4 = EXPECT_CALL(a, DoA(4)).Times(1);
1419 Expectation e
[all...]
/external/v8/testing/gmock/test/
H A Dgmock-spec-builders_test.cc51 // Helper class for testing the Expectation class template.
77 using testing::Expectation;
423 Expectation e = EXPECT_CALL(a, DoA(1))
450 Expectation e = EXPECT_CALL(a, DoA(1));
1407 // Tests Expectation.
1411 Expectation e1; // Default ctor.
1414 Expectation e2 = EXPECT_CALL(a, DoA(2));
1415 Expectation e3 = EXPECT_CALL(a, DoA(3)).With(_);
1418 Expectation e4 = EXPECT_CALL(a, DoA(4)).Times(1);
1419 Expectation e
[all...]
/external/google-breakpad/src/testing/src/
H A Dgmock-spec-builders.cc437 // Returns an Expectation object that references and co-owns exp,
439 Expectation UntypedFunctionMockerBase::GetHandleOf(ExpectationBase* exp) {
444 return Expectation(*it);
449 return Expectation();
775 Expectation::Expectation() {} function in class:Expectation
777 Expectation::Expectation( function in class:Expectation
781 Expectation::~Expectation() {}
[all...]
/external/googletest/googlemock/src/
H A Dgmock-spec-builders.cc447 // Returns an Expectation object that references and co-owns exp,
449 Expectation UntypedFunctionMockerBase::GetHandleOf(ExpectationBase* exp) {
454 return Expectation(*it);
459 return Expectation();
785 Expectation::Expectation() {} function in class:Expectation
787 Expectation::Expectation( function in class:Expectation
791 Expectation::~Expectation() {}
[all...]
/external/v8/testing/gmock/src/
H A Dgmock-spec-builders.cc447 // Returns an Expectation object that references and co-owns exp,
449 Expectation UntypedFunctionMockerBase::GetHandleOf(ExpectationBase* exp) {
454 return Expectation(*it);
459 return Expectation();
785 Expectation::Expectation() {} function in class:Expectation
787 Expectation::Expectation( function in class:Expectation
791 Expectation::~Expectation() {}
[all...]
/external/fmtlib/test/
H A Dgmock-gtest-all.cc10887 // Returns an Expectation object that references and co-owns exp,
10889 Expectation UntypedFunctionMockerBase::GetHandleOf(ExpectationBase* exp) {
10894 return Expectation(*it);
10899 return Expectation();
11225 Expectation::Expectation() {}
11227 Expectation::Expectation(
11231 Expectation::~Expectation() {}
[all...]
/external/fmtlib/test/gmock/
H A Dgmock.h760 Expect(condition, file, line, "Expectation failed.");
8647 class Expectation;
8665 // Helper class for testing the Expectation class template.
8788 // Returns an Expectation object that references and co-owns exp,
8790 Expectation GetHandleOf(ExpectationBase* exp);
9034 // Expectation e1 = EXPECT_CALL(...)...;
9042 // - Constness is shallow: a const Expectation object itself cannot
9051 class GTEST_API_ Expectation {
9054 Expectation();
9056 ~Expectation();
[all...]
/external/guice/extensions/persist/lib/
H A Dhibernate3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/hibernate/AssertionFailure.class AssertionFailure. ...

Completed in 1036 milliseconds