Searched defs:IsNull (Results 1 - 17 of 17) sorted by relevance

/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/chrome/browser/sync/syncable/
H A Dsyncable_id.h70 inline bool IsNull() const { function in class:syncable::Id
/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/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/clang/lib/CodeGen/
H A DCGVTables.cpp195 llvm::Value *IsNull = CGF.Builder.CreateIsNull(ReturnValue); local
196 CGF.Builder.CreateCondBr(IsNull, AdjustNull, AdjustNotNull);
H A DCGClass.cpp174 llvm::Value *IsNull = Builder.CreateIsNull(Value); local
175 Builder.CreateCondBr(IsNull, CastNull, CastNotNull);
246 llvm::Value *IsNull = Builder.CreateIsNull(Value); local
247 Builder.CreateCondBr(IsNull, CastNull, CastNotNull);
H A DCGExprCXX.cpp1531 llvm::Value *IsNull = Builder.CreateIsNull(Ptr, "isnull"); local
1533 Builder.CreateCondBr(IsNull, DeleteEnd, DeleteNotNull);
1602 llvm::Value *IsNull = CGF.Builder.CreateIsNull(ThisPtr); local
1603 CGF.Builder.CreateCondBr(IsNull, BadTypeidBlock, EndBlock);
1743 llvm::Value *IsNull = CGF.Builder.CreateIsNull(Value); local
1744 CGF.Builder.CreateCondBr(IsNull, BadCastBlock, CastEnd);
1789 llvm::Value *IsNull = Builder.CreateIsNull(Value); local
1790 Builder.CreateCondBr(IsNull, CastNull, CastNotNull);
/external/llvm/tools/bugpoint/
H A DMiscompilation.cpp865 Value *IsNull = new ICmpInst(*EntryBB, ICmpInst::ICMP_EQ, CachedVal, local
867 BranchInst::Create(LookupBB, DoCallBB, IsNull, EntryBB);
/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) {
/external/chromium/testing/gmock/include/gmock/
H A Dgmock-matchers.h747 // Implements the polymorphic IsNull() matcher, which matches any raw or smart
2637 inline PolymorphicMatcher<internal::IsNullMatcher > IsNull() { function in namespace:testing
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp2235 bool IsNull = Receiver->isNullPointerConstant(Context, local
2238 IsNull ? CK_NullToPointer : CK_IntegralToPointer).take();
/external/protobuf/src/google/protobuf/
H A Ddescriptor.cc236 inline bool IsNull() const { return type == NULL_SYMBOL; } function in struct:google::protobuf::__anon8735::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/v8/src/
H A Dast.h1231 bool IsNull() const { function in class:v8::internal::Literal
1233 return handle_->IsNull();
H A Dobjects-inl.h780 bool Object::IsNull() { function in class:v8::internal::Object
3326 ASSERT(value->IsNull() || value->IsJSReceiver());
4558 if (proto->IsNull()) return GetHeap()->undefined_value();
H A Dapi.cc2102 bool Value::IsNull() const { function in class:v8::Value
2103 if (IsDeadCheck(i::Isolate::Current(), "v8::Value::IsNull()")) return false;
2104 return Utils::OpenHandle(this)->IsNull();

Completed in 484 milliseconds