/external/easymock/src/org/easymock/internal/matchers/ |
NotNull.java | 22 public class NotNull implements IArgumentMatcher, Serializable {
26 public static final NotNull NOT_NULL = new NotNull();
28 private NotNull() {
37 buffer.append("notNull()");
|
/external/chromium/chrome/browser/chromeos/ |
customization_document_unittest.cc | 114 using ::testing::NotNull; 120 EXPECT_CALL(mock_system_access, GetMachineStatistic(_, NotNull())) 123 GetMachineStatistic(std::string("hwid"), NotNull())) 151 GetMachineStatistic(std::string("hwid"), NotNull())) 155 GetMachineStatistic(std::string("initial_locale"), NotNull())) 159 GetMachineStatistic(std::string("initial_timezone"), NotNull())) 163 GetMachineStatistic(std::string("keyboard_layout"), NotNull()))
|
/external/chromium/webkit/glue/media/ |
buffered_data_source_unittest.cc | 25 using ::testing::NotNull; 109 EXPECT_CALL(*loader_, Start(NotNull(), NotNull(), NotNull())) 244 EXPECT_CALL(*loader_, Read(position, size, NotNull(), NotNull())) 266 EXPECT_CALL(*loader_, Read(position, size, NotNull(), NotNull())); 289 EXPECT_CALL(*loader_, Read(position, size, NotNull(), NotNull())) [all...] |
simple_data_source_unittest.cc | 24 using ::testing::NotNull;
|
buffered_resource_loader_unittest.cc | 28 using ::testing::NotNull;
|
/external/chromium/net/url_request/ |
url_request_job_tracker_unittest.cc | 24 using testing::NotNull; 165 EXPECT_CALL(observer, OnJobAdded(NotNull())); 166 EXPECT_CALL(observer, OnBytesRead(NotNull(), 169 EXPECT_CALL(observer, OnJobDone(NotNull(), 171 EXPECT_CALL(observer, OnJobRemoved(NotNull()));
|
/external/chromium/chrome/browser/profiles/ |
profile_manager_unittest.cc | 169 EXPECT_CALL(mock_observer, OnProfileCreated(testing::NotNull())).Times(1); 209 EXPECT_CALL(mock_observer, OnProfileCreated(testing::NotNull())).Times(2);
|
/external/chromium/chrome/browser/printing/ |
print_dialog_cloud_unittest.cc | 34 using testing::NotNull; 340 EXPECT_THAT(mock_flow_handler_.get(), NotNull());
|
/external/llvm/lib/Analysis/ |
LazyValueInfo.cpp | 614 bool NotNull = false; 617 NotNull = true; 621 NotNull = true; 632 if (NotNull) { 660 if (NotNull) { [all...] |
/external/chromium/base/debug/ |
trace_event_win_unittest.cc | 29 using testing::NotNull;
|
/external/chromium/chrome/browser/safe_browsing/ |
client_side_detection_host_unittest.cc | 33 using ::testing::NotNull; 184 EXPECT_CALL(*csd_service_, GetValidCachedResult(url, NotNull()))
|
/external/chromium/testing/gmock/test/ |
gmock_link_test.h | 71 // NotNull 159 using testing::NotNull; 505 // Tests the linkage of the NotNull matcher. 509 ON_CALL(mock, VoidFromString(NotNull())).WillByDefault(Return());
|
gmock-matchers_test.cc | 105 using testing::NotNull; 889 // Tests that NotNull() matches any non-NULL pointer of any type. 891 Matcher<int*> m1 = NotNull(); 897 Matcher<const char*> m2 = NotNull(); 904 const Matcher<linked_ptr<int> > m = NotNull(); 913 const Matcher<const linked_ptr<double>&> m = NotNull(); 922 const Matcher<const scoped_ptr<double>&> m = NotNull(); 930 // Tests that NotNull() describes itself properly. 932 Matcher<int*> m = NotNull(); [all...] |
/external/llvm/lib/Transforms/Utils/ |
LowerInvoke.cpp | 551 Value *NotNull = new ICmpInst(*UnwindHandler, ICmpInst::ICMP_NE, BufPtr, 553 "notnull"); 554 BranchInst::Create(UnwindBlock, TermBlock, NotNull, UnwindHandler);
|
/external/easymock/src/org/easymock/ |
EasyMock.java | [all...] |
/external/chromium/testing/gmock/include/gmock/ |
gmock-matchers.h | 306 // than one type, e.g. Eq(n) and NotNull()). 315 // See the definition of NotNull() for a complete example. 763 // Implements the polymorphic NotNull() matcher, which matches any raw or smart [all...] |
/external/chromium/testing/ |
gmock_mutant.h | [all...] |