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

  /external/chromium_org/content/test/gpu/gpu_tests/
gpu_process_expectations.py 5 from telemetry.page import test_expectations as expectations namespace
21 class GpuProcessExpectations(expectations.TestExpectations):
hardware_accelerated_feature_expectations.py 5 from telemetry.page import test_expectations as expectations namespace
21 class HardwareAcceleratedFeatureExpectations(expectations.TestExpectations):
screenshot_sync_expectations.py 5 from telemetry.page import test_expectations as expectations namespace
21 class ScreenshotSyncExpectations(expectations.TestExpectations):
gpu_process.py 4 import gpu_process_expectations as expectations namespace
41 return expectations.GpuProcessExpectations()
hardware_accelerated_feature.py 4 import hardware_accelerated_feature_expectations as expectations namespace
53 return expectations.HardwareAcceleratedFeatureExpectations()
screenshot_sync.py 6 import screenshot_sync_expectations as expectations namespace
52 return expectations.ScreenshotSyncExpectations()
  /external/chromium_org/third_party/libaddressinput/chromium/
chrome_rule_test.cc 24 } expectations[] = { local
48 const size_t num_cases = sizeof(expectations) / sizeof(expectations[0]);
50 const std::string input(base::WideToUTF8(expectations[i].input));
51 const std::string expected_output(base::WideToUTF8(expectations[i].output));
  /external/chromium_org/third_party/ocmock/OCMock/
OCMockObject.h 13 NSMutableArray *expectations; variable
  /external/chromium_org/chrome/browser/extensions/
startup_helper_browsertest.cc 33 std::vector<std::pair<base::FilePath, bool> > expectations; local
34 expectations.push_back(
36 expectations.push_back(
38 expectations.push_back(
40 expectations.push_back(
44 expectations.begin();
45 i != expectations.end(); ++i) {
  /external/skia/dm/
DMExpectations.h 9 struct Expectations {
10 virtual ~Expectations() {}
16 class NoExpectations : public Expectations {
22 class JsonExpectations : public Expectations {
29 const skiagm::Expectations expectations = fGMExpectations.get(filename.c_str()); variable
31 if (expectations.ignoreFailure() || expectations.empty()) {
37 return expectations.match(digest);
  /external/chromium_org/base/mac/
libdispatch_task_runner_unittest.cc 31 // VerifyTaskOrder takes the expectations from TaskOrderMarkers and compares
33 void VerifyTaskOrder(const char* const expectations[],
39 EXPECT_LE(i, actual_size) << "Expected " << expectations[i];
43 EXPECT_EQ(expectations[i], task_order_[i]);
94 const char* const expectations[] = { local
98 VerifyTaskOrder(expectations, arraysize(expectations));
108 const char* const expectations[] = { local
114 VerifyTaskOrder(expectations, arraysize(expectations));
124 const char* const expectations[] = { local
142 const char* const expectations[] = { local
167 const char* const expectations[] = { local
193 const char* const expectations[] = { local
217 const char* const expectations[] = { local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/input_method/
textinput_browsertest.cc 244 InputTypeExpectation expectations[] = { local
256 for (size_t i = 0; i < arraysize(expectations); ++i) {
259 helper.WaitForTextInputStateChanged(expectations[i].type);
260 EXPECT_EQ(expectations[i].type, helper.GetTextInputType());
263 for (size_t i = 0; i < arraysize(expectations); ++i) {
264 helper.ClickElement(expectations[i].node_id, tab);
266 helper.WaitForTextInputStateChanged(expectations[i].type);
267 EXPECT_EQ(expectations[i].type, helper.GetTextInputType());
  /libcore/luni/src/test/java/libcore/java/security/
MessageDigestTest.java 83 private static final Map<String, Map<String, byte[]>> EXPECTATIONS
87 Map<String, byte[]> expectations = EXPECTATIONS.get(algorithm); local
88 if (expectations == null) {
89 expectations = new HashMap<String, byte[]>();
90 EXPECTATIONS.put(algorithm, expectations);
92 expectations.put(inputName, expected);
96 Map<String, byte[]> expectations = EXPECTATIONS.get(algorithm) local
    [all...]
  /cts/common/host-side/xml-plan-generator/src/com/android/compatibility/common/xmlgenerator/
XmlPlanGenerator.java 58 private XmlPlanGenerator(ExpectationStore expectations, String appNameSpace,
61 mExpectations = expectations;
175 final String expectations = argsMap.get("-e"); local
192 if (expectations != null) {
193 expectationFiles.add(new File(expectations));
213 "[-t TEST_TYPE] [-j JAR_PATH] [-i INSTRUMENTATION] [-m MANIFEST] [-e EXPECTATIONS]" +
  /external/chromium_org/chrome/installer/util/
installation_validator.cc 31 SwitchExpectations* expectations) const {
42 SwitchExpectations* expectations) const {
50 expectations->push_back(
68 SwitchExpectations* expectations) const {
70 expectations->push_back(std::make_pair(std::string(switches::kChromeFrame),
73 expectations->push_back(std::make_pair(std::string(switches::kChrome),
79 SwitchExpectations* expectations) const {
81 expectations->push_back(std::make_pair(std::string(switches::kChromeFrame),
84 expectations->push_back(std::make_pair(std::string(switches::kChrome),
102 SwitchExpectations* expectations) const
340 CommandExpectations expectations; local
629 CommandExpectations expectations; local
    [all...]
google_update_settings_unittest.cc 94 static struct Expectations {
97 } expectations[] = { local
118 for (size_t j = 0; j < arraysize(expectations); ++j) {
121 ap += expectations[j].ap_value;
123 const wchar_t* channel = expectations[j].channel;
    [all...]
  /external/chromium_org/media/filters/
audio_decoder_unittest.cc 52 const DecodedBufferExpectations* expectations; member in struct:media::DecoderTestData
260 const DecodedBufferExpectations& sample_info = GetParam().expectations[i];
  /cts/tools/utils/
CollectAllTests.java 173 ExpectationStore[] expectations = new ExpectationStore[] { local
218 addToTests(expectations, architecture, testCases, klass);
229 addToTests(expectations, architecture, testCases, klass);
366 private static void addToTests(ExpectationStore[] expectations,
398 addToTests(expectations, architecture, testCases, testClass, testName);
402 private static void addToTests(ExpectationStore[] expectations,
417 } else if (VogarUtils.isVogarKnownFailure(expectations,
426 expectations,
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_controller_browsertest.cc 721 std::vector<base::string16> expectations; local
724 expectations.push_back(base::string16());
735 expectations.push_back(expectation);
747 EXPECT_EQ(expectations[i], view->GetTextContentsOfInput(inputs[i].type));
    [all...]
  /external/chromium_org/third_party/skia/gm/
gmmain.cpp 786 * Compares actual hash digest to expectations, returning the set of errors
793 * @param expectations what expectations to compare actualBitmap against
805 ErrorCombination compare_to_expectations(Expectations expectations,
818 if (expectations.empty()) {
821 // Write out the "actuals" for any tests without expectations, if we have
830 } else if (!expectations.match(actualBitmapAndDigest.fDigest)) {
962 Expectations expectations = expectationsSource->get(nameWithExtension.c_str()); local
    [all...]
  /external/skia/gm/
gmmain.cpp 785 * Compares actual hash digest to expectations, returning the set of errors
792 * @param expectations what expectations to compare actualBitmap against
804 ErrorCombination compare_to_expectations(Expectations expectations,
817 if (expectations.empty()) {
820 // Write out the "actuals" for any tests without expectations, if we have
829 } else if (!expectations.match(actualBitmapAndDigest.fDigest)) {
961 Expectations expectations = expectationsSource->get(nameWithExtension.c_str()); local
    [all...]

Completed in 743 milliseconds