Searched refs:IsNull (Results 1 - 25 of 129) sorted by relevance

123456

/external/chromium_org/v8/test/mjsunit/compiler/
H A Dnull-compare.js28 function IsNull(x) { function
32 assertTrue(IsNull(null), "null == null");
33 assertTrue(IsNull(void 0), "void 0 == null");
34 assertFalse(IsNull(42), "42 != null");
/external/chromium_org/media/base/
H A Dcallback_holder_unittest.cc23 EXPECT_TRUE(cb.IsNull());
29 EXPECT_FALSE(cb.IsNull());
34 EXPECT_FALSE(cb.IsNull());
36 EXPECT_TRUE(cb.IsNull());
42 EXPECT_TRUE(cb.IsNull());
46 EXPECT_FALSE(cb.IsNull());
52 EXPECT_FALSE(cb.IsNull());
54 EXPECT_TRUE(cb.IsNull());
60 EXPECT_TRUE(cb.IsNull());
64 EXPECT_FALSE(cb.IsNull());
[all...]
H A Dcallback_holder.h34 bool IsNull() const { function in class:media::CallbackHolder
/external/chromium_org/v8/src/libplatform/
H A Dtask-queue-unittest.cc11 using testing::IsNull;
29 virtual void Run() OVERRIDE { EXPECT_THAT(queue_->GetNext(), IsNull()); }
44 EXPECT_THAT(queue.GetNext(), IsNull());
H A Dworker-thread-unittest.cc11 using testing::IsNull;
/external/hamcrest/src/org/hamcrest/core/
H A DIsNull.java14 public class IsNull<T> extends BaseMatcher<T> { class in inherits:BaseMatcher
28 return new IsNull<T>();
36 return not(IsNull.<T>nullValue());
/external/chromium_org/testing/gtest/test/
H A Dgtest-unittest-api_test.cc140 AssertionResult IsNull(const char* str) { function in namespace:testing::internal
152 EXPECT_TRUE(IsNull(test_case->type_param()));
162 EXPECT_TRUE(IsNull(tests[0]->value_param()));
163 EXPECT_TRUE(IsNull(tests[0]->type_param()));
168 EXPECT_TRUE(IsNull(tests[1]->value_param()));
169 EXPECT_TRUE(IsNull(tests[1]->type_param()));
174 EXPECT_TRUE(IsNull(tests[2]->value_param()));
175 EXPECT_TRUE(IsNull(tests[2]->type_param()));
180 EXPECT_TRUE(IsNull(tests[3]->value_param()));
181 EXPECT_TRUE(IsNull(test
[all...]
/external/gtest/test/
H A Dgtest-unittest-api_test.cc140 AssertionResult IsNull(const char* str) { function in namespace:testing::internal
152 EXPECT_TRUE(IsNull(test_case->type_param()));
162 EXPECT_TRUE(IsNull(tests[0]->value_param()));
163 EXPECT_TRUE(IsNull(tests[0]->type_param()));
168 EXPECT_TRUE(IsNull(tests[1]->value_param()));
169 EXPECT_TRUE(IsNull(tests[1]->type_param()));
174 EXPECT_TRUE(IsNull(tests[2]->value_param()));
175 EXPECT_TRUE(IsNull(tests[2]->type_param()));
180 EXPECT_TRUE(IsNull(tests[3]->value_param()));
181 EXPECT_TRUE(IsNull(test
[all...]
/external/chromium_org/v8/src/base/platform/
H A Delapsed-timer.h45 DCHECK(started_ || start_ticks_.IsNull());
46 DCHECK(!started_ || !start_ticks_.IsNull());
47 return !start_ticks_.IsNull();
85 DCHECK(!now.IsNull());
H A Dtime.cc235 if (IsNull()) {
284 if (IsNull()) {
316 if (IsNull()) {
346 if (IsNull()) {
503 DCHECK(!ticks.IsNull());
511 DCHECK(!ticks.IsNull());
/external/chromium_org/media/filters/
H A Daudio_decoder_selector_unittest.cc18 using ::testing::IsNull;
149 EXPECT_CALL(*this, OnDecoderSelected(IsNull(), IsNull()));
187 EXPECT_CALL(*this, OnDecoderSelected(IsNull(), IsNull()));
200 EXPECT_CALL(*this, OnDecoderSelected(decoder_1_, IsNull()));
225 EXPECT_CALL(*this, OnDecoderSelected(decoder_2_, IsNull()));
250 EXPECT_CALL(*this, OnDecoderSelected(decoder_1_, IsNull()));
269 EXPECT_CALL(*this, OnDecoderSelected(IsNull(), IsNull()));
[all...]
H A Dvideo_decoder_selector_unittest.cc17 using ::testing::IsNull;
145 EXPECT_CALL(*this, OnDecoderSelected(IsNull(), IsNull()));
183 EXPECT_CALL(*this, OnDecoderSelected(IsNull(), IsNull()));
196 EXPECT_CALL(*this, OnDecoderSelected(decoder_1_, IsNull()));
221 EXPECT_CALL(*this, OnDecoderSelected(decoder_2_, IsNull()));
246 EXPECT_CALL(*this, OnDecoderSelected(decoder_1_, IsNull()));
265 EXPECT_CALL(*this, OnDecoderSelected(IsNull(), IsNull()));
[all...]
H A Dfake_video_decoder.cc33 if (!init_cb_.IsNull())
37 if (!reset_cb_.IsNull())
55 DCHECK(reset_cb_.IsNull()) << "No reinitialization during pending reset.";
76 DCHECK(reset_cb_.IsNull());
108 DCHECK(reset_cb_.IsNull());
138 DCHECK(reset_cb_.IsNull());
162 if (!reset_cb_.IsNull() && held_decode_callbacks_.empty())
211 if (!reset_cb_.IsNull()) {
244 DCHECK(!reset_cb_.IsNull());
H A Ddecrypting_demuxer_stream_unittest.cc20 using ::testing::IsNull;
156 EXPECT_CALL(*this, BufferReady(status, IsNull()));
417 EXPECT_CALL(*this, BufferReady(DemuxerStream::kAborted, IsNull()));
429 EXPECT_CALL(*this, BufferReady(DemuxerStream::kAborted, IsNull()));
439 EXPECT_CALL(*this, BufferReady(DemuxerStream::kAborted, IsNull()));
469 EXPECT_CALL(*this, BufferReady(DemuxerStream::kAborted, IsNull()));
498 EXPECT_CALL(*this, BufferReady(DemuxerStream::kConfigChanged, IsNull()));
535 EXPECT_CALL(*this, BufferReady(DemuxerStream::kAborted, IsNull()));
543 EXPECT_CALL(*this, BufferReady(DemuxerStream::kAborted, IsNull()));
551 EXPECT_CALL(*this, BufferReady(DemuxerStream::kAborted, IsNull()));
[all...]
/external/chromium_org/content/common/indexed_db/
H A Dindexed_db_key_path.h25 bool IsNull() const { return type_ == blink::WebIDBKeyPathTypeNull; } function in class:content::IndexedDBKeyPath
/external/chromium_org/v8/src/
H A Dprototype.h101 return object_->IsNull() ||
106 return handle_->IsNull() ||
114 return object_->IsNull() || object_ == final_object;
118 return handle_->IsNull() || *handle_ == *final_object;
/external/lldb/include/lldb/Utility/
H A DPythonPointer.h69 bool IsNull() { return ptr_ == NULL; } function in class:lldb_private::PythonPointer
/external/chromium_org/mojo/system/
H A Dmemory_unittest.cc28 // |UserPointer<>::IsNull()|:
29 EXPECT_FALSE(my_char_ptr.IsNull());
30 EXPECT_FALSE(my_int32_ptr.IsNull());
31 EXPECT_FALSE(my_int64_array_ptr.IsNull());
50 EXPECT_FALSE(other.IsNull());
55 EXPECT_FALSE(other.IsNull());
60 EXPECT_TRUE(other.IsNull());
72 EXPECT_TRUE(other.IsNull());
82 EXPECT_TRUE(other.IsNull());
H A Ddata_pipe_consumer_dispatcher.cc63 DVLOG_IF(2, !elements.IsNull())
71 DVLOG_IF(2, !elements.IsNull())
H A Dlocal_message_pipe_endpoint.cc74 const uint32_t max_bytes = num_bytes.IsNull() ? 0 : num_bytes.Get();
86 if (!num_bytes.IsNull())
/external/chromium_org/mojo/bindings/js/
H A Dhandle.cc51 if (val->IsNull()) {
H A Dhandle.h67 if (val->IsNull()) {
/external/hamcrest/src/org/hamcrest/
H A DCoreMatchers.java134 return org.hamcrest.core.IsNull.nullValue();
141 return org.hamcrest.core.IsNull.nullValue(type);
148 return org.hamcrest.core.IsNull.notNullValue();
155 return org.hamcrest.core.IsNull.notNullValue(type);
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_path.cpp31 if (m_Path.IsNull()) {
/external/chromium_org/sync/syncable/
H A Dsyncable_id.h68 inline bool IsNull() const { function in class:syncer::syncable::Id

Completed in 546 milliseconds

123456