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

12345

/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/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/platform/
H A Delapsed-timer.h45 ASSERT(started_ || start_ticks_.IsNull());
46 ASSERT(!started_ || !start_ticks_.IsNull());
47 return !start_ticks_.IsNull();
85 ASSERT(!now.IsNull());
H A Dtime.cc233 if (IsNull()) {
282 if (IsNull()) {
314 if (IsNull()) {
344 if (IsNull()) {
503 ASSERT(!ticks.IsNull());
511 ASSERT(!ticks.IsNull());
/external/chromium_org/media/filters/
H A Daudio_decoder_selector_unittest.cc17 using ::testing::IsNull;
129 EXPECT_CALL(*this, OnDecoderSelected(IsNull(), IsNull()));
165 EXPECT_CALL(*this, OnDecoderSelected(IsNull(), IsNull()));
178 EXPECT_CALL(*this, OnDecoderSelected(decoder_1_, IsNull()));
205 EXPECT_CALL(*this, OnDecoderSelected(decoder_2_, IsNull()));
232 EXPECT_CALL(*this, OnDecoderSelected(decoder_1_, IsNull()));
253 EXPECT_CALL(*this, OnDecoderSelected(IsNull(), IsNull()));
[all...]
H A Dvideo_decoder_selector_unittest.cc17 using ::testing::IsNull;
125 EXPECT_CALL(*this, OnDecoderSelected(IsNull(), IsNull()));
163 EXPECT_CALL(*this, OnDecoderSelected(IsNull(), IsNull()));
176 EXPECT_CALL(*this, OnDecoderSelected(decoder_1_, IsNull()));
203 EXPECT_CALL(*this, OnDecoderSelected(decoder_2_, IsNull()));
230 EXPECT_CALL(*this, OnDecoderSelected(decoder_1_, IsNull()));
251 EXPECT_CALL(*this, OnDecoderSelected(IsNull(), IsNull()));
[all...]
H A Dfake_video_decoder.cc39 DCHECK(reset_cb_.IsNull()) << "No reinitialization during pending reset.";
60 DCHECK(reset_cb_.IsNull());
91 DCHECK(reset_cb_.IsNull());
106 if (!init_cb_.IsNull())
110 if (!reset_cb_.IsNull())
135 DCHECK(reset_cb_.IsNull());
159 if (!reset_cb_.IsNull() && held_decode_callbacks_.empty())
208 if (!reset_cb_.IsNull()) {
240 DCHECK(!reset_cb_.IsNull());
H A Ddecrypting_demuxer_stream_unittest.cc20 using ::testing::IsNull;
140 EXPECT_CALL(*this, BufferReady(status, IsNull()));
415 EXPECT_CALL(*this, BufferReady(DemuxerStream::kAborted, IsNull()));
427 EXPECT_CALL(*this, BufferReady(DemuxerStream::kAborted, IsNull()));
437 EXPECT_CALL(*this, BufferReady(DemuxerStream::kAborted, IsNull()));
467 EXPECT_CALL(*this, BufferReady(DemuxerStream::kAborted, IsNull()));
497 EXPECT_CALL(*this, BufferReady(DemuxerStream::kConfigChanged, IsNull()));
537 EXPECT_CALL(*this, BufferReady(DemuxerStream::kAborted, IsNull()));
546 EXPECT_CALL(*this, BufferReady(DemuxerStream::kAborted, IsNull()));
555 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/mojo/bindings/js/
H A Dhandle.cc28 if (val->IsNull()) {
H A Dhandle.h59 if (val->IsNull()) {
/external/lldb/include/lldb/Utility/
H A DPythonPointer.h69 bool IsNull() { return ptr_ == NULL; } function in class:lldb_private::PythonPointer
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DV8Callback.h64 if (value->IsNull() && (acceptedValues & CallbackAllowNull))
/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
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8SQLTransactionSyncCustom.cpp80 if (value.IsEmpty() || value->IsNull())
H A DV8ElementCustom.cpp172 if (info[0]->IsNull()) {
192 if (info[0]->IsNull() && info[1]->IsObject()) {
197 if (info[0]->IsNull()) {
/external/chromium_org/v8/src/
H A Dhydrogen-types.cc43 if (value->IsNull()) return HType::Null();
/external/chromium_org/v8/test/cctest/
H A Dtest-time.cc82 CHECK(null.IsNull());
98 CHECK(null.IsNull());
116 CHECK(null.IsNull());
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
H A DITreeFixture.cs58 Assert.IsNull(t.Parent);
71 Assert.IsNull(r0.Parent);
85 Assert.IsNull(r0.Parent);
111 Assert.IsNull(root.Parent);
139 Assert.IsNull(root.Parent);
166 Assert.IsNull(dup.Parent);

Completed in 785 milliseconds

12345