Home
last modified time | relevance | path

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

12

/external/skqp/tools/skpbench/
D_hardware_pixel_c.py6 from _hardware import HardwareException, Expectation
70 [Expectation(int, min_value=30, name='battery', sleeptime=30*60),
71 Expectation(str, exact_value='0-2', name='online cpus'),
72 Expectation(int, max_value=40000, name='skin temperature'),
73 Expectation(int, max_value=86000, name='cpu temperature'),
74 Expectation(int, max_value=87000, name='gpu temperature'),
75 Expectation(int, exact_value=0, name='cpu throttle'),
76 Expectation(int, exact_value=0, name='gpu throttle')] + \
77 [Expectation(int, exact_value=CPU_CLOCK_RATE,
80 [Expectation(str, exact_value=GPU_EMC_PROFILE, name='gpu/emc profile')]
[all …]
D_hardware_nexus_6p.py6 from _hardware import HardwareException, Expectation
87 [Expectation(int, min_value=30, name='battery', sleeptime=30*60),
88 Expectation(str, exact_value='4-6', name='online cpus'),
89 Expectation(int, max_value=88, name='tsens_tz_sensor13'),
90 Expectation(int, max_value=88, name='tsens_tz_sensor14'),
91 Expectation(long, min_value=(GPU_CLOCK_RATE - 5000),
93 Expectation(long, min_value=647995000, max_value=648007500,
95 [Expectation(int, exact_value=CPU_CLOCK_RATE, name='cpu_%i clock rate' %i)
98 Expectation.check_all(expectations, result.splitlines())
D_hardware_pixel.py6 from _hardware import HardwareException, Expectation
96 [Expectation(int, min_value=30, name='battery', sleeptime=30*60),
97 Expectation(str, exact_value='2-3', name='online cpus')] + \
98 [Expectation(int, exact_value=CPU_CLOCK_RATE, name='cpu_%i clock rate' %i)
100 [Expectation(int, exact_value=2, name='gpu thermal power level'),
101 Expectation(long, min_value=(GPU_CLOCK_RATE - 5000),
104 Expectation(long, min_value=902390000, max_value=902409999,
106 Expectation(int, max_value=41000, name='pm8994_tz temperature'),
107 Expectation(int, max_value=40, name='msm_therm temperature')] + \
110 Expectation.check_all(expectations, result.splitlines())
[all …]
/external/skia/tools/skpbench/
D_hardware_pixel_c.py6 from _hardware import HardwareException, Expectation
70 [Expectation(int, min_value=30, name='battery', sleeptime=30*60),
71 Expectation(str, exact_value='0-2', name='online cpus'),
72 Expectation(int, max_value=40000, name='skin temperature'),
73 Expectation(int, max_value=86000, name='cpu temperature'),
74 Expectation(int, max_value=87000, name='gpu temperature'),
75 Expectation(int, exact_value=0, name='cpu throttle'),
76 Expectation(int, exact_value=0, name='gpu throttle')] + \
77 [Expectation(int, exact_value=CPU_CLOCK_RATE,
80 [Expectation(str, exact_value=GPU_EMC_PROFILE, name='gpu/emc profile')]
[all …]
D_hardware_nexus_6p.py6 from _hardware import HardwareException, Expectation
81 [Expectation(int, min_value=30, name='battery', sleeptime=30*60),
82 Expectation(str, exact_value='4-6', name='online cpus'),
83 Expectation(int, max_value=88, name='tsens_tz_sensor13'),
84 Expectation(int, max_value=88, name='tsens_tz_sensor14'),
85 Expectation(long, min_value=(GPU_CLOCK_RATE - 5000),
87 Expectation(long, min_value=647995000, max_value=648007500,
89 [Expectation(int, exact_value=CPU_CLOCK_RATE, name='cpu_%i clock rate' %i)
92 Expectation.check_all(expectations, result.splitlines())
D_hardware_pixel.py6 from _hardware import HardwareException, Expectation
91 [Expectation(int, min_value=30, name='battery', sleeptime=30*60),
92 Expectation(str, exact_value='2-3', name='online cpus')] + \
93 [Expectation(int, exact_value=CPU_CLOCK_RATE, name='cpu_%i clock rate' %i)
95 [Expectation(int, exact_value=2, name='gpu thermal power level'),
96 Expectation(long, min_value=(GPU_CLOCK_RATE - 5000),
99 Expectation(long, min_value=902390000, max_value=902409999,
101 Expectation(int, max_value=41000, name='pm8994_tz temperature'),
102 Expectation(int, max_value=40, name='msm_therm temperature')] + \
105 Expectation.check_all(expectations, result.splitlines())
[all …]
/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()
223 Expectation expectation = run.expectationStore.get(outcome); in recordOutcome()
/external/chromium-trace/catapult/common/py_utils/py_utils/
Dexpectations_parser_unittest.py27 expectations_parser.Expectation(
29 expectations_parser.Expectation(
64 expectations_parser.Expectation(
79 expectations_parser.Expectation(
89 expectations_parser.Expectation(
99 expectations_parser.Expectation(
110 expectations_parser.Expectation(
150 expectations_parser.Expectation(
161 expectations_parser.Expectation(
Dexpectations_parser.py12 class Expectation(object): class
116 return Expectation(reason, test, conditions, [r for r in results.split()])
/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/googletest/googlemock/include/gmock/
Dgmock-spec-builders.h83 class Expectation; variable
225 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/v8/testing/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/v8/testing/gmock/test/
Dgmock-spec-builders_test.cc77 using testing::Expectation;
423 Expectation e = EXPECT_CALL(a, DoA(1)) in TEST()
450 Expectation e = EXPECT_CALL(a, DoA(1)); in TEST()
1411 Expectation e1; // Default ctor. in TEST()
1414 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()
1415 Expectation e3 = EXPECT_CALL(a, DoA(3)).With(_); in TEST()
1418 Expectation e4 = EXPECT_CALL(a, DoA(4)).Times(1); in TEST()
1419 Expectation e5 = EXPECT_CALL(a, DoA(5)).InSequence(s); in TEST()
1421 Expectation e6 = EXPECT_CALL(a, DoA(6)).After(e2); in TEST()
1422 Expectation e7 = EXPECT_CALL(a, DoA(7)).WillOnce(Return()); in TEST()
[all …]
/external/googletest/googlemock/test/
Dgmock-spec-builders_test.cc77 using testing::Expectation;
425 Expectation e = EXPECT_CALL(a, DoA(1)) in TEST()
452 Expectation e = EXPECT_CALL(a, DoA(1)); in TEST()
1468 Expectation e1; // Default ctor. in TEST()
1471 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST()
1472 Expectation e3 = EXPECT_CALL(a, DoA(3)).With(_); in TEST()
1475 Expectation e4 = EXPECT_CALL(a, DoA(4)).Times(1); in TEST()
1476 Expectation e5 = EXPECT_CALL(a, DoA(5)).InSequence(s); in TEST()
1478 Expectation e6 = EXPECT_CALL(a, DoA(6)).After(e2); in TEST()
1479 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/v8/testing/gmock/src/
Dgmock-spec-builders.cc449 Expectation UntypedFunctionMockerBase::GetHandleOf(ExpectationBase* exp) { in GetHandleOf()
454 return Expectation(*it); in GetHandleOf()
459 return Expectation(); in GetHandleOf()
785 Expectation::Expectation() {} in Expectation() function in testing::Expectation
787 Expectation::Expectation( in Expectation() function in testing::Expectation
791 Expectation::~Expectation() {} in ~Expectation()
794 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/googletest/googlemock/src/
Dgmock-spec-builders.cc448 Expectation UntypedFunctionMockerBase::GetHandleOf(ExpectationBase* exp) { in GetHandleOf()
453 return Expectation(*it); in GetHandleOf()
458 return Expectation(); in GetHandleOf()
792 Expectation::Expectation() {} in Expectation() function in testing::Expectation
794 Expectation::Expectation( in Expectation() function in testing::Expectation
798 Expectation::~Expectation() {} in ~Expectation()
801 void Sequence::AddExpectation(const Expectation& expectation) const { in AddExpectation()
/external/tensorflow/tensorflow/contrib/lite/testing/
Dtflite_driver.cc57 class TfLiteDriver::Expectation { class in tflite::testing::TfLiteDriver
59 Expectation() { data_.raw = nullptr; } in Expectation() function in tflite::testing::TfLiteDriver::Expectation
60 ~Expectation() { delete[] data_.raw; } in ~Expectation()
210 expected_output_[id].reset(new Expectation); in SetExpectation()
Dtflite_driver.h51 class Expectation;
56 std::map<int, std::unique_ptr<Expectation>> expected_output_;
/external/tensorflow/tensorflow/contrib/factorization/g3doc/
Dgmm.md8 Typically an EM (Expectation Maximization) algorithm is used to estimate these

12