HomeSort by relevance Sort by last modified time
    Searched refs:EXPECT_TRUE (Results 226 - 250 of 4085) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/libjingle/source/talk/session/media/
channel_unittest.cc 594 EXPECT_TRUE(media_channel1_->codecs().empty());
595 EXPECT_TRUE(media_channel1_->recv_streams().empty());
596 EXPECT_TRUE(media_channel1_->rtp_packets().empty());
597 EXPECT_TRUE(media_channel1_->rtcp_packets().empty());
606 EXPECT_TRUE(channel1_->SetLocalContent(&content, CA_OFFER, NULL));
608 EXPECT_TRUE(channel1_->SetRemoteContent(&content, CA_ANSWER, NULL));
610 EXPECT_TRUE(CodecMatches(content.codecs()[0],
619 EXPECT_TRUE(channel1_->SetLocalContent(&content, CA_OFFER, NULL));
622 EXPECT_TRUE(channel1_->SetRemoteContent(&content, CA_ANSWER, NULL));
624 EXPECT_TRUE(CodecMatches(content.codecs()[0]
    [all...]
  /external/chromium_org/ash/system/chromeos/session/
tray_session_length_limit_unittest.cc 83 EXPECT_TRUE(notification);
87 EXPECT_TRUE(notification->rich_notification_data().
93 EXPECT_TRUE(notification);
104 EXPECT_TRUE(notification);
107 EXPECT_TRUE(notification->rich_notification_data().
113 EXPECT_TRUE(notification);
116 EXPECT_TRUE(notification->rich_notification_data().
129 EXPECT_TRUE(GetNotification());
143 EXPECT_TRUE(notification);
144 EXPECT_TRUE(notification->rich_notification_data()
    [all...]
  /external/chromium_org/base/test/expectations/
expectation_unittest.cc 13 EXPECT_TRUE(ResultFromString("Failure", &result));
16 EXPECT_TRUE(ResultFromString("Timeout", &result));
19 EXPECT_TRUE(ResultFromString("Crash", &result));
22 EXPECT_TRUE(ResultFromString("Skip", &result));
25 EXPECT_TRUE(ResultFromString("Pass", &result));
37 EXPECT_TRUE(ConfigurationFromString("Debug", &config));
40 EXPECT_TRUE(ConfigurationFromString("Release", &config));
54 EXPECT_TRUE(PlatformFromString("Win", &platform));
58 EXPECT_TRUE(PlatformFromString("Mac-10.6", &platform));
62 EXPECT_TRUE(PlatformFromString("ChromeOS", &platform))
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
drive_integration_service_browsertest.cc 21 EXPECT_TRUE(DriveIntegrationServiceFactory::FindForProfile(
36 EXPECT_TRUE(integration_service);
37 EXPECT_TRUE(integration_service->is_enabled());
  /external/chromium_org/chrome/browser/media/
webrtc_browsertest_perf.cc 31 EXPECT_TRUE(pc_dict.GetString(Statistic("bytesReceived", ssrc), &value));
34 EXPECT_TRUE(pc_dict.GetString(Statistic("packetsLost", ssrc), &value));
49 EXPECT_TRUE(pc_dict.GetString(Statistic("bytesSent", ssrc), &value));
52 EXPECT_TRUE(pc_dict.GetString(Statistic("googJitterReceived", ssrc), &value));
55 EXPECT_TRUE(pc_dict.GetString(Statistic("googRtt", ssrc), &value));
74 EXPECT_TRUE(pc_dict.GetString(Statistic("googFrameRateInput", ssrc), &value));
78 EXPECT_TRUE(pc_dict.GetString(Statistic("bytesSent", ssrc), &value));
82 EXPECT_TRUE(pc_dict.GetString(Statistic("googFirsReceived", ssrc), &value));
85 EXPECT_TRUE(pc_dict.GetString(Statistic("googNacksReceived", ssrc), &value));
89 EXPECT_TRUE(pc_dict.GetString(Statistic("googFrameWidthSent", ssrc), &value))
    [all...]
  /external/chromium_org/chrome/browser/ui/
browser_command_controller_browsertest.cc 19 EXPECT_TRUE(chrome::IsCommandEnabled(browser(), IDC_FIND));
31 EXPECT_TRUE(chrome::IsCommandEnabled(browser(), IDC_FIND));
40 EXPECT_TRUE(chrome::IsCommandEnabled(browser(), IDC_FIND));
  /external/chromium_org/chrome/installer/util/
create_dir_work_item_unittest.cc 44 EXPECT_TRUE(work_item->Do());
46 EXPECT_TRUE(base::PathExists(dir_to_create));
52 EXPECT_TRUE(base::PathExists(parent_dir));
64 EXPECT_TRUE(work_item->Do());
66 EXPECT_TRUE(base::PathExists(dir_to_create));
72 EXPECT_TRUE(base::PathExists(dir_to_create));
88 EXPECT_TRUE(work_item->Do());
90 EXPECT_TRUE(base::PathExists(dir_to_create_3));
104 EXPECT_TRUE(base::PathExists(dir_to_create_2));
105 EXPECT_TRUE(base::PathExists(dir_to_create_4))
    [all...]
self_cleaning_temp_dir_unittest.cc 52 EXPECT_TRUE(base_dir.empty());
70 EXPECT_TRUE(work_dir.CreateUniqueTempDir());
75 EXPECT_TRUE(temp_dir.Initialize(parent_temp_dir, L"Three"));
77 EXPECT_TRUE(base::DirectoryExists(temp_dir.path()));
78 EXPECT_TRUE(temp_dir.Delete());
82 EXPECT_TRUE(base::DirectoryExists(parent_temp_dir.DirName().DirName()));
83 EXPECT_TRUE(work_dir.Delete());
91 EXPECT_TRUE(work_dir.CreateUniqueTempDir());
98 EXPECT_TRUE(temp_dir1.Initialize(parent_temp_dir, L"Three"));
100 EXPECT_TRUE(temp_dir2.Initialize(parent_temp_dir, L"Three"))
    [all...]
  /external/chromium_org/chromeos/app_mode/
kiosk_oem_manifest_parser_unittest.cc 22 EXPECT_TRUE(KioskOemManifestParser::Load(kiosk_oem_file, &manifest));
23 EXPECT_TRUE(manifest.enterprise_managed);
25 EXPECT_TRUE(manifest.keyboard_driven_oobe);
  /external/chromium_org/chromeos/ime/
ime_keyboard_x11_unittest.cc 68 EXPECT_TRUE(ImeKeyboard::CheckLayoutNameForTesting("ab-c_12"));
75 EXPECT_TRUE(ImeKeyboard::CheckLayoutNameForTesting(std::string(3, c)));
80 EXPECT_TRUE(ImeKeyboard::CheckLayoutNameForTesting(std::string(3, c)));
84 EXPECT_TRUE(ImeKeyboard::CheckLayoutNameForTesting("us(dvorak)"));
85 EXPECT_TRUE(ImeKeyboard::CheckLayoutNameForTesting("jp"));
98 EXPECT_TRUE(xkey_->CapsLockIsEnabled());
105 EXPECT_TRUE(xkey_->CapsLockIsEnabled());
138 EXPECT_TRUE(ImeKeyboard::GetAutoRepeatRateForTesting(&rate));
143 EXPECT_TRUE(xkey_->SetAutoRepeatRate(tmp));
144 EXPECT_TRUE(ImeKeyboard::GetAutoRepeatRateForTesting(&tmp))
    [all...]
  /external/chromium_org/extensions/common/manifest_handlers/
externally_connectable_unittest.cc 42 EXPECT_TRUE(extension->permissions_data()->HasAPIPermission(
55 EXPECT_TRUE(info->matches.MatchesURL(GURL("http://example.com")));
56 EXPECT_TRUE(info->matches.MatchesURL(GURL("http://example.com/")));
59 EXPECT_TRUE(info->matches.MatchesURL(GURL("http://google.com")));
60 EXPECT_TRUE(info->matches.MatchesURL(GURL("http://google.com/")));
61 EXPECT_TRUE(info->matches.MatchesURL(GURL("http://google.com/index.html")));
62 EXPECT_TRUE(info->matches.MatchesURL(GURL("http://www.google.com")));
63 EXPECT_TRUE(info->matches.MatchesURL(GURL("http://www.google.com/")));
64 EXPECT_TRUE(info->matches.MatchesURL(GURL("https://google.com")));
65 EXPECT_TRUE(info->matches.MatchesURL(GURL("https://google.com/")))
    [all...]
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
module_tests.py 10 EXPECT_TRUE = test_support.EXPECT_TRUE
22 return EXPECT_TRUE(ModulesAreEqual(BuildTestModule(), BuildTestModule()))
  /external/chromium_org/sync/js/
js_event_details_unittest.cc 17 EXPECT_TRUE(details.Get().empty());
31 EXPECT_TRUE(dict.empty());
32 EXPECT_TRUE(details.Get().Equals(dict_copy.get()));
  /external/chromium_org/testing/gtest/samples/
sample6_unittest.cc 117 EXPECT_TRUE(this->table_->IsPrime(2));
118 EXPECT_TRUE(this->table_->IsPrime(3));
119 EXPECT_TRUE(this->table_->IsPrime(5));
120 EXPECT_TRUE(this->table_->IsPrime(7));
121 EXPECT_TRUE(this->table_->IsPrime(11));
122 EXPECT_TRUE(this->table_->IsPrime(131));
181 EXPECT_TRUE(this->table_->IsPrime(2));
182 EXPECT_TRUE(this->table_->IsPrime(3));
183 EXPECT_TRUE(this->table_->IsPrime(5));
184 EXPECT_TRUE(this->table_->IsPrime(7))
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
localaudiosource_unittest.cc 60 EXPECT_TRUE(source->options().echo_cancellation.Get(&value));
62 EXPECT_TRUE(source->options().experimental_aec.Get(&value));
63 EXPECT_TRUE(value);
64 EXPECT_TRUE(source->options().auto_gain_control.Get(&value));
65 EXPECT_TRUE(value);
66 EXPECT_TRUE(source->options().experimental_agc.Get(&value));
67 EXPECT_TRUE(value);
68 EXPECT_TRUE(source->options().noise_suppression.Get(&value));
70 EXPECT_TRUE(source->options().highpass_filter.Get(&value));
71 EXPECT_TRUE(value)
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
thread_unittest.cc 27 EXPECT_TRUE(thread->Stop());
46 EXPECT_TRUE(thread->Stop());
49 EXPECT_TRUE(flag);
  /external/llvm/unittests/ADT/
SmallPtrSetTest.cpp 38 EXPECT_TRUE(s1.count(&buf[i]));
110 EXPECT_TRUE(s1.count(&buf[i]));
118 EXPECT_TRUE(s2.count(&buf[i]));
127 EXPECT_TRUE(s1.count(&buf[i]));
133 EXPECT_TRUE(s1.empty());
136 EXPECT_TRUE(s3.count(&buf[i]));
148 EXPECT_TRUE(s3.empty());
150 EXPECT_TRUE(s1.count(&buf[i]));
157 EXPECT_TRUE(s3.count(&buf[i]));
174 EXPECT_TRUE(a.count(&buf[2]))
    [all...]
  /external/protobuf/gtest/samples/
sample6_unittest.cc 117 EXPECT_TRUE(this->table_->IsPrime(2));
118 EXPECT_TRUE(this->table_->IsPrime(3));
119 EXPECT_TRUE(this->table_->IsPrime(5));
120 EXPECT_TRUE(this->table_->IsPrime(7));
121 EXPECT_TRUE(this->table_->IsPrime(11));
122 EXPECT_TRUE(this->table_->IsPrime(131));
181 EXPECT_TRUE(this->table_->IsPrime(2));
182 EXPECT_TRUE(this->table_->IsPrime(3));
183 EXPECT_TRUE(this->table_->IsPrime(5));
184 EXPECT_TRUE(this->table_->IsPrime(7))
    [all...]
  /external/qemu/android/filesystems/
fstab_parser_unittest.cpp 30 EXPECT_TRUE(android_parseFstabPartitionFormat(kFstab, kFstabSize,
35 EXPECT_TRUE(android_parseFstabPartitionFormat(kFstab, kFstabSize,
40 EXPECT_TRUE(android_parseFstabPartitionFormat(kFstab, kFstabSize,
  /ndk/sources/third_party/googletest/googletest/samples/
sample6_unittest.cc 117 EXPECT_TRUE(this->table_->IsPrime(2));
118 EXPECT_TRUE(this->table_->IsPrime(3));
119 EXPECT_TRUE(this->table_->IsPrime(5));
120 EXPECT_TRUE(this->table_->IsPrime(7));
121 EXPECT_TRUE(this->table_->IsPrime(11));
122 EXPECT_TRUE(this->table_->IsPrime(131));
181 EXPECT_TRUE(this->table_->IsPrime(2));
182 EXPECT_TRUE(this->table_->IsPrime(3));
183 EXPECT_TRUE(this->table_->IsPrime(5));
184 EXPECT_TRUE(this->table_->IsPrime(7))
    [all...]
  /external/chromium_org/chrome/browser/local_discovery/
privet_http_unittest.cc 259 EXPECT_TRUE(fetcher);
277 EXPECT_TRUE(fetcher);
292 EXPECT_TRUE(fetcher);
311 EXPECT_TRUE(fetcher);
471 EXPECT_TRUE(SuccessfulResponseToURL(GURL("http://10.0.0.8:6006/privet/info"),
476 EXPECT_TRUE(SuccessfulResponseToURL(
546 EXPECT_TRUE(fetcher);
568 EXPECT_TRUE(SuccessfulResponseToURL(
572 EXPECT_TRUE(SuccessfulResponseToURL(
581 EXPECT_TRUE(SuccessfulResponseToURL
    [all...]
  /external/chromium_org/ui/wm/core/
cursor_manager_unittest.cc 86 EXPECT_TRUE(cursor_manager_.IsCursorVisible());
98 EXPECT_TRUE(cursor_manager_.IsCursorVisible());
101 EXPECT_TRUE(cursor_manager_.IsCursorVisible());
103 EXPECT_TRUE(cursor_manager_.IsCursorVisible());
117 EXPECT_TRUE(cursor_manager_.IsCursorVisible());
122 EXPECT_TRUE(cursor_manager_.IsCursorVisible());
137 EXPECT_TRUE(cursor_manager_.IsMouseEventsEnabled());
149 EXPECT_TRUE(cursor_manager_.IsMouseEventsEnabled());
152 EXPECT_TRUE(cursor_manager_.IsMouseEventsEnabled());
154 EXPECT_TRUE(cursor_manager_.IsMouseEventsEnabled())
    [all...]
  /external/safe-iop/src/
safe_iop.c 171 #define EXPECT_TRUE(cmd) ({ \
172 printf("%s: EXPECT_TRUE(" #cmd ") => ", __func__); \
186 a=10; b=11; EXPECT_TRUE(safe_add(NULL, a, b));
187 a=-10; b=-11; EXPECT_TRUE(safe_add(NULL, a, b));
188 a=SCHAR_MIN; b=SCHAR_MAX; EXPECT_TRUE(safe_add(NULL, a, b));
189 a=SCHAR_MIN+1; b=-1; EXPECT_TRUE(safe_add(NULL, a, b));
190 a=SCHAR_MAX/2; b=SCHAR_MAX/2; EXPECT_TRUE(safe_add(NULL, a, b));
199 a=10; b=11; EXPECT_TRUE(safe_add(NULL, a, b));
200 a=SHRT_MIN; b=SHRT_MAX; EXPECT_TRUE(safe_add(NULL, a, b));
201 a=SHRT_MAX/2; b=SHRT_MAX/2; EXPECT_TRUE(safe_add(NULL, a, b))
    [all...]
  /external/chromium_org/chrome/browser/chromeos/accessibility/
accessibility_manager_browsertest.cc 298 EXPECT_TRUE(IsLargeCursorEnabled());
303 EXPECT_TRUE(IsSpokenFeedbackEnabled());
308 EXPECT_TRUE(IsHighContrastEnabled());
313 EXPECT_TRUE(IsAutoclickEnabled());
322 EXPECT_TRUE(IsVirtualKeyboardEnabled());
331 EXPECT_TRUE(IsSpokenFeedbackEnabled());
350 EXPECT_TRUE(IsLargeCursorEnabled());
355 EXPECT_TRUE(IsSpokenFeedbackEnabled());
360 EXPECT_TRUE(IsHighContrastEnabled());
365 EXPECT_TRUE(IsAutoclickEnabled())
    [all...]
  /external/chromium_org/chrome/browser/ui/website_settings/
permission_bubble_manager_unittest.cc 127 EXPECT_TRUE(PermissionBubbleManager::Enabled());
135 EXPECT_TRUE(view_.delegate_ == manager_.get());
136 EXPECT_TRUE(view_.shown_);
142 EXPECT_TRUE(request1_.granted());
150 EXPECT_TRUE(view_.delegate_ == manager_.get());
151 EXPECT_TRUE(view_.shown_);
157 EXPECT_TRUE(request1_.granted());
166 EXPECT_TRUE(view_.delegate_ == manager_.get());
167 EXPECT_TRUE(view_.shown_);
175 EXPECT_TRUE(request1_.granted())
    [all...]

Completed in 507 milliseconds

1 2 3 4 5 6 7 8 91011>>