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

123

/external/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/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/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/webkit/Source/WebCore/bindings/v8/
H A DV8Collection.cpp42 if (value->IsNull() || value->IsUndefined()) {
H A DV8Utilities.cpp56 if (cache->IsNull() || cache->IsUndefined()) {
93 if (!newValue->IsNull() && !newValue->IsUndefined())
H A DScriptValue.h115 return m_value->IsNull();
H A DV8Utilities.h76 if (value->IsNull() && (acceptedValues & CallbackAllowNull))
H A DV8Binding.h296 if (object()->IsNull()) {
306 if (object()->IsNull() || object()->IsUndefined()) {
H A DIDBBindingUtilities.cpp43 if (value->IsNull())
H A DScriptValue.cpp82 if (value->IsNull() || value->IsUndefined())
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8DirectoryEntryCustom.cpp77 if (args.Length() > 2 && !args[2]->IsNull() && !args[2]->IsUndefined()) {
83 if (args.Length() > 3 && !args[3]->IsNull() && !args[3]->IsUndefined()) {
120 if (args.Length() > 2 && !args[2]->IsNull() && !args[2]->IsUndefined()) {
126 if (args.Length() > 3 && !args[3]->IsNull() && !args[3]->IsUndefined()) {
H A DV8SQLTransactionSyncCustom.cpp79 if (value.IsEmpty() || value->IsNull())
H A DV8DataViewCustom.cpp44 if (args[0]->IsNull() || !V8ArrayBuffer::HasInstance(args[0]))
H A DV8SQLTransactionCustom.cpp79 if (value.IsEmpty() || value->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/chromium/chrome/browser/sync/syncable/
H A Dsyncable_id.h70 inline bool IsNull() const { function in class:syncable::Id
/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);
/external/chromium/base/
H A Dcallback_unittest.cc95 TEST_F(CallbackTest, IsNull) {
/external/chromium/chrome/browser/sync/engine/
H A Dprocess_updates_command.cc108 if (local_id.IsNull()) {
/external/chromium/chrome/browser/ui/views/
H A Dfile_manager_dialogs.cc94 if (!callback.IsNull())
/external/v8/test/cctest/
H A Dtest-thread-termination.cc83 CHECK(try_catch.Exception()->IsNull());
100 CHECK(try_catch.Exception()->IsNull());
294 CHECK(try_catch.Exception()->IsNull());
345 CHECK(try_catch.Exception()->IsNull());
/external/protobuf/src/google/protobuf/
H A Ddescriptor.cc236 inline bool IsNull() const { return type == NULL_SYMBOL; } function in struct:google::protobuf::__anon10671::Symbol
341 // Find symbols. This returns a null Symbol (symbol.IsNull() is true)
439 // Find symbols. These return a null Symbol (symbol.IsNull() is true)
578 if (result.IsNull() && pool->underlay_ != NULL) {
584 if (result.IsNull()) {
889 if (!result.IsNull()) return result.GetFile();
897 if (!result.IsNull()) return result.GetFile();
1042 if (!result.IsNull() && !result.field_descriptor->is_extension()) {
1053 if (!result.IsNull() && result.field_descriptor->is_extension()) {
1086 if (!result.IsNull()) {
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_file_browser_private_api.h97 bool IsNull() const { return listener_ == NULL; } function in class:FileDialogFunction::Callback
/external/opencv/cxcore/include/
H A Dcvwimage.h347 bool IsNull() const {return WImage<T>::image_ == NULL; } function in class:cv::WImageBuffer
404 bool IsNull() const {return WImage<T>::image_ == NULL; } function in class:cv::WImageBufferC
533 if (IsNull() || WImage<T>::Width() != width ||
544 if (IsNull() || WImage<T>::Width() != width || WImage<T>::Height() != height) {

Completed in 457 milliseconds

123