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

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/mojo/common/test/
multiprocess_test_helper_unittest.cc 47 EXPECT_TRUE(helper.server_platform_handle.is_valid());
67 EXPECT_TRUE(helper.server_platform_handle.is_valid());
74 EXPECT_TRUE(IsNonBlocking(handle.get()));
78 EXPECT_TRUE(WriteByte(handle.get(), c));
82 EXPECT_TRUE(ReadByte(handle.get(), &d));
97 EXPECT_TRUE(IsNonBlocking(handle.get()));
101 EXPECT_TRUE(ReadByte(handle.get(), &c));
105 EXPECT_TRUE(WriteByte(handle.get(), c));
114 EXPECT_TRUE(helper.server_platform_handle.is_valid());
116 EXPECT_TRUE(helper.WaitForChildTestShutdown())
    [all...]
  /external/chromium_org/sql/
transaction_unittest.cc 45 EXPECT_TRUE(t.Begin());
46 EXPECT_TRUE(t.is_open());
48 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
63 EXPECT_TRUE(t.Begin());
64 EXPECT_TRUE(t.is_open());
66 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
75 EXPECT_TRUE(t2.Begin());
77 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
92 EXPECT_TRUE(outer.Begin());
98 EXPECT_TRUE(inner1.Begin())
    [all...]
  /external/chromium_org/chrome/browser/sync/sessions/
tab_node_pool_unittest.cc 49 EXPECT_TRUE(changes.empty());
51 EXPECT_TRUE(changes.empty());
53 EXPECT_TRUE(changes.empty());
58 EXPECT_TRUE(changes.empty());
60 EXPECT_TRUE(pool_.Empty());
69 EXPECT_TRUE(pool_.Empty());
70 EXPECT_TRUE(pool_.IsUnassociatedTabNode(1));
71 EXPECT_TRUE(pool_.IsUnassociatedTabNode(2));
73 EXPECT_TRUE(pool_.Empty());
78 EXPECT_TRUE(changes.empty())
    [all...]
  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_unittest.cc 50 EXPECT_TRUE(leveldb);
53 EXPECT_TRUE(status.ok());
58 EXPECT_TRUE(leveldb);
61 EXPECT_TRUE(status.ok());
62 EXPECT_TRUE(found);
77 EXPECT_TRUE(status.ok());
80 EXPECT_TRUE(status.ok());
81 EXPECT_TRUE(leveldb);
83 EXPECT_TRUE(status.ok());
98 EXPECT_TRUE(leveldb)
    [all...]
  /external/chromium_org/net/proxy/
proxy_bypass_rules_unittest.cc 24 EXPECT_TRUE(rules.Matches(GURL("http://www.google.com")));
25 EXPECT_TRUE(rules.Matches(GURL("ftp://www.google.com:99")));
26 EXPECT_TRUE(rules.Matches(GURL("https://www.google.com:81")));
44 EXPECT_TRUE(rules.Matches(GURL("http://www.google.com")));
45 EXPECT_TRUE(rules.Matches(GURL("ftp://www.google.com:99")));
46 EXPECT_TRUE(rules.Matches(GURL("https://a.google.com:81")));
47 EXPECT_TRUE(rules.Matches(GURL("http://foo.google.com/x/y?q")));
48 EXPECT_TRUE(rules.Matches(GURL("http://foo:bar@baz.google.com#x")));
62 EXPECT_TRUE(rules.Matches(GURL("http://www.google.com")));
63 EXPECT_TRUE(rules.Matches(GURL("ftp://www.google.com:80")))
    [all...]
  /external/chromium_org/mojo/system/
options_validation_unittest.cc 37 EXPECT_TRUE(IsOptionsStructPointerAndSizeValid<TestOptions>(&kOptions1));
38 EXPECT_TRUE(HAS_OPTIONS_STRUCT_MEMBER(TestOptions, flags, &kOptions1));
39 EXPECT_TRUE(HAS_OPTIONS_STRUCT_MEMBER(TestOptions, member1, &kOptions1));
40 EXPECT_TRUE(HAS_OPTIONS_STRUCT_MEMBER(TestOptions, member2, &kOptions1));
45 EXPECT_TRUE(IsOptionsStructPointerAndSizeValid<TestOptions>(&kOptions2));
53 EXPECT_TRUE(IsOptionsStructPointerAndSizeValid<TestOptions>(&kOptions3));
54 EXPECT_TRUE(HAS_OPTIONS_STRUCT_MEMBER(TestOptions, flags, &kOptions3));
61 EXPECT_TRUE(IsOptionsStructPointerAndSizeValid<TestOptions>(options));
62 EXPECT_TRUE(HAS_OPTIONS_STRUCT_MEMBER(TestOptions, flags, options));
63 EXPECT_TRUE(HAS_OPTIONS_STRUCT_MEMBER(TestOptions, member1, options))
    [all...]
  /external/chromium_org/base/i18n/
break_iterator_unittest.cc 30 EXPECT_TRUE(iter.Advance());
33 EXPECT_TRUE(iter.Advance());
34 EXPECT_TRUE(iter.IsWord());
36 EXPECT_TRUE(iter.Advance());
39 EXPECT_TRUE(iter.Advance());
40 EXPECT_TRUE(iter.IsWord());
42 EXPECT_TRUE(iter.Advance());
45 EXPECT_TRUE(iter.Advance());
48 EXPECT_TRUE(iter.Advance());
51 EXPECT_TRUE(iter.Advance())
    [all...]
  /external/llvm/unittests/IR/
DominatorTreeTest.cpp 59 EXPECT_TRUE(DT->isReachableFromEntry(BB0));
60 EXPECT_TRUE(DT->isReachableFromEntry(BB1));
61 EXPECT_TRUE(DT->isReachableFromEntry(BB2));
63 EXPECT_TRUE(DT->isReachableFromEntry(BB4));
66 EXPECT_TRUE(DT->dominates(BB0, BB0));
67 EXPECT_TRUE(DT->dominates(BB0, BB1));
68 EXPECT_TRUE(DT->dominates(BB0, BB2));
69 EXPECT_TRUE(DT->dominates(BB0, BB3));
70 EXPECT_TRUE(DT->dominates(BB0, BB4));
73 EXPECT_TRUE(DT->dominates(BB1, BB1))
    [all...]
  /external/chromium_org/base/json/
json_writer_unittest.cc 16 EXPECT_TRUE(JSONWriter::Write(root, &output_js));
22 EXPECT_TRUE(JSONWriter::Write(root, &output_js));
28 EXPECT_TRUE(JSONWriter::Write(root, &output_js));
34 EXPECT_TRUE(JSONWriter::Write(root, &output_js));
40 EXPECT_TRUE(JSONWriter::Write(root, &output_js));
46 EXPECT_TRUE(JSONWriter::Write(root, &output_js));
52 EXPECT_TRUE(JSONWriter::Write(root, &output_js));
58 EXPECT_TRUE(JSONWriter::Write(root, &output_js));
64 EXPECT_TRUE(JSONWriter::Write(root, &output_js));
86 EXPECT_TRUE(JSONWriter::Write(&root_dict, &output_js))
    [all...]
  /external/chromium_org/chrome/browser/extensions/
active_tab_unittest.cc 177 EXPECT_TRUE(IsBlocked(extension, google));
178 EXPECT_TRUE(IsBlocked(another_extension, google));
179 EXPECT_TRUE(IsBlocked(extension_without_active_tab, google));
191 EXPECT_TRUE(IsAllowed(extension, google));
192 EXPECT_TRUE(IsBlocked(another_extension, google));
193 EXPECT_TRUE(IsBlocked(extension_without_active_tab, google));
197 EXPECT_TRUE(IsAllowed(extension, mail_google, PERMITTED_CAPTURE_ONLY));
198 EXPECT_TRUE(IsBlocked(another_extension, mail_google));
199 EXPECT_TRUE(IsBlocked(extension_without_active_tab, mail_google));
204 EXPECT_TRUE(IsBlocked(extension, google))
    [all...]
  /external/chromium_org/chrome/installer/util/
channel_info_unittest.cc 27 EXPECT_TRUE(ci.GetChannelName(&channel));
30 EXPECT_TRUE(ci.GetChannelName(&channel));
34 EXPECT_TRUE(ci.GetChannelName(&channel));
37 EXPECT_TRUE(ci.GetChannelName(&channel));
40 EXPECT_TRUE(ci.GetChannelName(&channel));
44 EXPECT_TRUE(ci.GetChannelName(&channel));
47 EXPECT_TRUE(ci.GetChannelName(&channel));
50 EXPECT_TRUE(ci.GetChannelName(&channel));
54 EXPECT_TRUE(ci.GetChannelName(&channel));
57 EXPECT_TRUE(ci.GetChannelName(&channel))
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcpassthroughrender_unittest.cc 80 EXPECT_TRUE(stream != NULL);
81 EXPECT_TRUE(HasIncomingRenderStream(stream_id1));
84 EXPECT_TRUE(stream == NULL);
86 EXPECT_TRUE(stream != NULL);
87 EXPECT_TRUE(HasIncomingRenderStream(stream_id2));
90 EXPECT_TRUE(DeleteIncomingRenderStream(stream_id2));
91 EXPECT_TRUE(!HasIncomingRenderStream(stream_id2));
94 EXPECT_TRUE(stream != NULL);
95 EXPECT_TRUE(HasIncomingRenderStream(stream_id2));
107 EXPECT_TRUE(stream1 != NULL)
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_suppressions_test.cc 27 EXPECT_TRUE(MyMatch("foobar$", "foobar"));
29 EXPECT_TRUE(MyMatch("foobar", "foobar"));
30 EXPECT_TRUE(MyMatch("*foobar*", "foobar"));
31 EXPECT_TRUE(MyMatch("foobar", "prefix_foobar_postfix"));
32 EXPECT_TRUE(MyMatch("*foobar*", "prefix_foobar_postfix"));
33 EXPECT_TRUE(MyMatch("foo*bar", "foo_middle_bar"));
34 EXPECT_TRUE(MyMatch("foo*bar", "foobar"));
35 EXPECT_TRUE(MyMatch("foo*bar*baz", "foo_middle_bar_another_baz"));
36 EXPECT_TRUE(MyMatch("foo*bar*baz", "foo_middle_barbaz"));
37 EXPECT_TRUE(MyMatch("^foobar", "foobar"))
    [all...]
  /external/chromium_org/chrome/app/
delay_load_hook_unittest_win.cc 52 EXPECT_TRUE(__pfnDliNotifyHook2 == ChromeDelayLoadHook);
53 EXPECT_TRUE(__pfnDliFailureHook2 == ChromeDelayLoadHook);
85 EXPECT_TRUE(ChromeDelayLoadHook(dliNoteStartProcessing, &info_) == NULL);
86 EXPECT_TRUE(ChromeDelayLoadHook(dliNotePreGetProcAddress, &info_) == NULL);
87 EXPECT_TRUE(ChromeDelayLoadHook(dliNoteEndProcessing, &info_) == NULL);
88 EXPECT_TRUE(ChromeDelayLoadHook(dliFailLoadLib, &info_) == NULL);
89 EXPECT_TRUE(ChromeDelayLoadHook(dliFailGetProc, &info_) == NULL);
  /external/chromium_org/chrome/browser/nacl_host/test/
nacl_gdb_browsertest.cc 30 EXPECT_TRUE(PathService::Get(base::DIR_EXE, &mock_nacl_gdb));
33 EXPECT_TRUE(base::CreateTemporaryFile(&script_));
53 EXPECT_TRUE(base::CreateTemporaryFile(&mock_nacl_gdb_file));
58 EXPECT_TRUE(base::ReadFileToString(mock_nacl_gdb_file, &content));
60 EXPECT_TRUE(base::DeleteFile(mock_nacl_gdb_file, false));
63 EXPECT_TRUE(base::ReadFileToString(script_, &content));
65 EXPECT_TRUE(base::DeleteFile(script_, false));
  /external/chromium_org/components/sync_driver/
non_blocking_data_type_controller_unittest.cc 220 EXPECT_TRUE(processor_.IsPreferred());
221 EXPECT_TRUE(processor_.IsConnected());
224 EXPECT_TRUE(processor_.IsPreferred());
236 EXPECT_TRUE(processor_.IsPreferred());
237 EXPECT_TRUE(processor_.IsConnected());
240 EXPECT_TRUE(processor_.IsPreferred());
250 EXPECT_TRUE(processor_.IsPreferred());
251 EXPECT_TRUE(processor_.IsConnected());
267 EXPECT_TRUE(processor_.IsPreferred());
268 EXPECT_TRUE(processor_.IsConnected())
    [all...]
  /external/chromium_org/extensions/common/
user_script_unittest.cc 26 EXPECT_TRUE(script.MatchesURL(GURL("http://mail.google.com")));
27 EXPECT_TRUE(script.MatchesURL(GURL("http://mail.google.com/foo")));
28 EXPECT_TRUE(script.MatchesURL(GURL("https://mail.google.com/foo")));
29 EXPECT_TRUE(script.MatchesURL(GURL("ftp://mail.google.com/foo")));
30 EXPECT_TRUE(script.MatchesURL(GURL("http://woo.mail.google.com/foo")));
31 EXPECT_TRUE(script.MatchesURL(GURL("http://mail.yahoo.com/bar")));
32 EXPECT_TRUE(script.MatchesURL(GURL("http://mail.msn.com/baz")));
36 EXPECT_TRUE(script.MatchesURL(GURL("http://mail.google.com")));
44 EXPECT_TRUE(script.MatchesURL(GURL("http://mail.google.com")));
45 EXPECT_TRUE(script.MatchesURL(GURL("http://mail.google.com/")))
    [all...]
  /external/chromium_org/net/spdy/
write_blocked_list_test.cc 20 EXPECT_TRUE(list.HasWriteBlockedStreams());
23 EXPECT_TRUE(list.HasWriteBlockedStreams());
30 EXPECT_TRUE(list.HasWriteBlockedStreamsGreaterThanPriority(5));
33 EXPECT_TRUE(list.HasWriteBlockedStreamsGreaterThanPriority(3));
41 EXPECT_TRUE(list.HasWriteBlockedStreams());
44 EXPECT_TRUE(list.HasWriteBlockedStreams());
53 EXPECT_TRUE(list.HasWriteBlockedStreams());
  /external/llvm/unittests/ADT/
SparseSetTest.cpp 22 EXPECT_TRUE(Set.empty());
23 EXPECT_TRUE(Set.begin() == Set.end());
29 EXPECT_TRUE(Set.find(0) == Set.end());
30 EXPECT_TRUE(Set.find(9) == Set.end());
34 EXPECT_TRUE(CSet.empty());
35 EXPECT_TRUE(CSet.begin() == CSet.end());
37 EXPECT_TRUE(CSet.find(0) == CSet.end());
39 EXPECT_TRUE(I == CSet.end());
47 EXPECT_TRUE(IP.second);
48 EXPECT_TRUE(IP.first == Set.begin())
    [all...]
  /external/chromium_org/base/win/
scoped_bstr_unittest.cc 20 EXPECT_TRUE(b == NULL);
24 EXPECT_TRUE(b == NULL);
25 EXPECT_TRUE(b.Release() == NULL);
28 EXPECT_TRUE(b2 == NULL);
46 EXPECT_TRUE(tmp != NULL);
48 EXPECT_TRUE(b2 == NULL);
52 EXPECT_TRUE(b2 != NULL);
54 EXPECT_TRUE(b2.AllocateBytes(100) != NULL);
63 EXPECT_TRUE(b1.Allocate(kTestString2) != NULL);
  /external/chromium_org/gpu/command_buffer/service/
id_manager_unittest.cc 32 EXPECT_TRUE(manager_.AddMapping(kClientId1, kServiceId1));
35 EXPECT_TRUE(manager_.GetServiceId(kClientId1, &service_id));
38 EXPECT_TRUE(manager_.GetClientId(kServiceId1, &client_id));
48 EXPECT_TRUE(manager_.AddMapping(kClientId2, kServiceId2));
51 EXPECT_TRUE(manager_.GetServiceId(kClientId1, &service_id));
53 EXPECT_TRUE(manager_.GetServiceId(kClientId2, &service_id));
56 EXPECT_TRUE(manager_.GetClientId(kServiceId1, &client_id));
58 EXPECT_TRUE(manager_.GetClientId(kServiceId2, &client_id));
61 EXPECT_TRUE(manager_.RemoveMapping(kClientId1, kServiceId1));
  /external/chromium_org/third_party/libjingle/source/talk/base/
linux_unittest.cc 40 EXPECT_TRUE(proc_info.LoadFromSystem());
43 EXPECT_TRUE(proc_info.GetNumCpus(&out_cpus));
48 EXPECT_TRUE(proc_info.GetNumPhysicalCpus(&out_cpus_phys));
54 EXPECT_TRUE(proc_info.GetCpuFamily(&out_family));
60 EXPECT_TRUE(proc_info.GetSectionStringValue(0, "Processor", &out_processor));
68 EXPECT_TRUE(proc_info.GetSectionIntValue(0, "model", &out_model));
72 EXPECT_TRUE(proc_info.GetSectionIntValue(0, "stepping", &out_stepping));
76 EXPECT_TRUE(proc_info.GetSectionIntValue(0, "processor", &out_processor));
81 EXPECT_TRUE(proc_info.GetSectionStringValue(0, "vendor_id", &out_str));
  /external/chromium_org/third_party/webrtc/base/
linux_unittest.cc 23 EXPECT_TRUE(proc_info.LoadFromSystem());
26 EXPECT_TRUE(proc_info.GetNumCpus(&out_cpus));
31 EXPECT_TRUE(proc_info.GetNumPhysicalCpus(&out_cpus_phys));
37 EXPECT_TRUE(proc_info.GetCpuFamily(&out_family));
43 EXPECT_TRUE(proc_info.GetSectionStringValue(0, "Processor", &out_processor));
51 EXPECT_TRUE(proc_info.GetSectionIntValue(0, "model", &out_model));
55 EXPECT_TRUE(proc_info.GetSectionIntValue(0, "stepping", &out_stepping));
59 EXPECT_TRUE(proc_info.GetSectionIntValue(0, "processor", &out_processor));
64 EXPECT_TRUE(proc_info.GetSectionStringValue(0, "vendor_id", &out_str));
  /external/chromium_org/third_party/webrtc/video_engine/test/libvietest/testbed/
tb_interfaces.cc 30 EXPECT_TRUE(video_engine != NULL);
36 EXPECT_TRUE(base != NULL);
41 EXPECT_TRUE(capture != NULL);
44 EXPECT_TRUE(rtp_rtcp != NULL);
47 EXPECT_TRUE(render != NULL);
50 EXPECT_TRUE(codec != NULL);
53 EXPECT_TRUE(network != NULL);
56 EXPECT_TRUE(image_process != NULL);
75 EXPECT_TRUE(webrtc::VideoEngine::Delete(video_engine)) <<
  /frameworks/compile/mclinker/unittests/
SectionDataTest.cpp 47 EXPECT_TRUE(s->getSection().name() == "test" && \
57 EXPECT_TRUE(s->empty());
64 EXPECT_TRUE(5 == s->size());
68 EXPECT_TRUE(Fragment::Alignment == iter->getKind());
70 EXPECT_TRUE(Fragment::Alignment == iter->getKind());
72 EXPECT_TRUE(Fragment::Region == iter->getKind());
74 EXPECT_TRUE(Fragment::Fillment == iter->getKind());
76 EXPECT_TRUE(Fragment::Target == iter->getKind());
78 EXPECT_TRUE(iter == s->end());

Completed in 1415 milliseconds

1 2 3 4 5 6 7 891011>>