Home
last modified time | relevance | path

Searched refs:IsNull (Results 1 – 25 of 72) sorted by relevance

123

/external/gtest/test/
Dgtest-unittest-api_test.cc140 AssertionResult IsNull(const char* str) { in IsNull() function
152 EXPECT_TRUE(IsNull(test_case->type_param())); in TEST()
162 EXPECT_TRUE(IsNull(tests[0]->value_param())); in TEST()
163 EXPECT_TRUE(IsNull(tests[0]->type_param())); in TEST()
168 EXPECT_TRUE(IsNull(tests[1]->value_param())); in TEST()
169 EXPECT_TRUE(IsNull(tests[1]->type_param())); in TEST()
174 EXPECT_TRUE(IsNull(tests[2]->value_param())); in TEST()
175 EXPECT_TRUE(IsNull(tests[2]->type_param())); in TEST()
180 EXPECT_TRUE(IsNull(tests[3]->value_param())); in TEST()
181 EXPECT_TRUE(IsNull(tests[3]->type_param())); in TEST()
[all …]
/external/google-breakpad/src/testing/gtest/test/
Dgtest-unittest-api_test.cc140 AssertionResult IsNull(const char* str) { in IsNull() function
152 EXPECT_TRUE(IsNull(test_case->type_param())); in TEST()
162 EXPECT_TRUE(IsNull(tests[0]->value_param())); in TEST()
163 EXPECT_TRUE(IsNull(tests[0]->type_param())); in TEST()
168 EXPECT_TRUE(IsNull(tests[1]->value_param())); in TEST()
169 EXPECT_TRUE(IsNull(tests[1]->type_param())); in TEST()
174 EXPECT_TRUE(IsNull(tests[2]->value_param())); in TEST()
175 EXPECT_TRUE(IsNull(tests[2]->type_param())); in TEST()
180 EXPECT_TRUE(IsNull(tests[3]->value_param())); in TEST()
181 EXPECT_TRUE(IsNull(tests[3]->type_param())); in TEST()
[all …]
/external/v8/test/mjsunit/compiler/
Dnull-compare.js28 function IsNull(x) { class
32 assertTrue(IsNull(null), "null == null");
33 assertTrue(IsNull(void 0), "void 0 == null");
34 assertFalse(IsNull(42), "42 != null");
/external/v8/src/base/platform/
Delapsed-timer.h45 DCHECK(started_ || start_ticks_.IsNull()); in IsStarted()
46 DCHECK(!started_ || !start_ticks_.IsNull()); in IsStarted()
47 return !start_ticks_.IsNull(); in IsStarted()
85 DCHECK(!now.IsNull()); in Now()
Dtime.cc235 if (IsNull()) { in ToFiletime()
284 if (IsNull()) { in ToTimespec()
316 if (IsNull()) { in ToTimeval()
346 if (IsNull()) { in ToJsTime()
503 DCHECK(!ticks.IsNull()); in Now()
511 DCHECK(!ticks.IsNull()); in HighResolutionNow()
Dtime-unittest.cc64 EXPECT_TRUE(null.IsNull()); in TEST()
80 EXPECT_TRUE(null.IsNull()); in TEST()
98 EXPECT_TRUE(null.IsNull()); in TEST()
Dtime.h179 bool IsNull() const { return us_ == 0; } in IsNull() function
326 bool IsNull() const { return ticks_ == 0; } in IsNull() function
/external/hamcrest/src/org/hamcrest/core/
DIsNull.java14 public class IsNull<T> extends BaseMatcher<T> { class
28 return new IsNull<T>(); in nullValue()
36 return not(IsNull.<T>nullValue()); in notNullValue()
/external/v8/src/libplatform/
Dtask-queue-unittest.cc11 using testing::IsNull;
29 virtual void Run() OVERRIDE { EXPECT_THAT(queue_->GetNext(), IsNull()); } in Run()
44 EXPECT_THAT(queue.GetNext(), IsNull()); in TEST()
Dworker-thread-unittest.cc11 using testing::IsNull;
/external/v8/src/
Dprototype.h101 return object_->IsNull() ||
106 return handle_->IsNull() ||
114 return object_->IsNull() || object_ == final_object; in IsAtEnd()
118 return handle_->IsNull() || *handle_ == *final_object; in IsAtEnd()
Dlookup-inl.h16 if (map->prototype()->IsNull()) return NULL; in NextHolder()
Dhydrogen-types.cc44 if (value->IsNull()) return HType::Null(); in FromValue()
Dtype-info.cc329 while (!map->prototype()->IsNull()) { in CanRetainOtherContext()
331 if (!constructor->IsNull()) { in CanRetainOtherContext()
344 if (constructor->IsNull()) return false; in CanRetainOtherContext()
Dlookup.cc49 CHECK(!root->IsNull()); in GetRoot()
155 DCHECK(!accessor->IsNull()); in TransitionToAccessorProperty()
/external/hamcrest/src/org/hamcrest/
DCoreMatchers.java134 return org.hamcrest.core.IsNull.nullValue(); in nullValue()
141 return org.hamcrest.core.IsNull.nullValue(type); in nullValue()
148 return org.hamcrest.core.IsNull.notNullValue(); in notNullValue()
155 return org.hamcrest.core.IsNull.notNullValue(type); in notNullValue()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
DITreeFixture.cs58 Assert.IsNull(t.Parent); in testSingleNode()
71 Assert.IsNull(r0.Parent); in test4Nodes()
85 Assert.IsNull(r0.Parent); in testList()
111 Assert.IsNull(root.Parent); in testList2()
139 Assert.IsNull(root.Parent); in testAddListToExistChildren()
166 Assert.IsNull(dup.Parent); in testDupTree()
/external/protobuf/src/google/protobuf/
Ddescriptor.cc262 inline bool IsNull() const { return type == NULL_SYMBOL; } in IsNull() function
709 if (result.IsNull() && pool->underlay_ != NULL) { in FindByNameHelper()
715 if (result.IsNull()) { in FindByNameHelper()
1051 if (!result.IsNull()) return result.GetFile(); in FindFileContainingSymbol()
1059 if (!result.IsNull()) return result.GetFile(); in FindFileContainingSymbol()
1214 if (!result.IsNull() && !result.field_descriptor->is_extension()) { in FindFieldByName()
1225 if (!result.IsNull()) { in FindOneofByName()
1236 if (!result.IsNull() && result.field_descriptor->is_extension()) { in FindExtensionByName()
1269 if (!result.IsNull()) { in FindNestedTypeByName()
1280 if (!result.IsNull()) { in FindEnumTypeByName()
[all …]
/external/v8/test/cctest/
Dtest-thread-termination.cc81 CHECK(try_catch.Exception()->IsNull()); in DoLoop()
98 CHECK(try_catch.Exception()->IsNull()); in DoLoopNoCall()
236 CHECK(try_catch.Exception()->IsNull()); in LoopGetProperty()
291 CHECK(try_catch.Exception()->IsNull()); in ReenterAfterTermination()
337 CHECK(try_catch.Exception()->IsNull()); in DoLoopCancelTerminate()
/external/hamcrest/library/src/org/hamcrest/
DMatchers.java134 return org.hamcrest.core.IsNull.nullValue(); in nullValue()
141 return org.hamcrest.core.IsNull.nullValue(type); in nullValue()
148 return org.hamcrest.core.IsNull.notNullValue(); in notNullValue()
155 return org.hamcrest.core.IsNull.notNullValue(type); in notNullValue()
/external/lldb/include/lldb/Utility/
DPythonPointer.h69 bool IsNull() { return ptr_ == NULL; } in IsNull() function
/external/opencv/cxcore/include/
Dcvwimage.h347 bool IsNull() const {return WImage<T>::image_ == NULL; } in IsNull() function
404 bool IsNull() const {return WImage<T>::image_ == NULL; } in IsNull() function
533 if (IsNull() || WImage<T>::Width() != width || in Allocate()
544 if (IsNull() || WImage<T>::Width() != width || WImage<T>::Height() != height) { in Allocate()
/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page_path.cpp31 if (m_Path.IsNull()) { in CalcBoundingBox()
/external/pdfium/core/src/fpdfapi/fpdf_render/
Dfpdf_render.cpp247 if (!pColorData || pColorData->m_FillColor.IsNull()) { in Initialize()
252 if (!pColorData || pColorData->m_StrokeColor.IsNull()) { in Initialize()
559 …->m_bColored || (m_pType3Char->m_bColored && (!pColorData || pColorData->m_FillColor.IsNull())))) { in GetFillArgb()
561 } else if (!pColorData || pColorData->m_FillColor.IsNull()) { in GetFillArgb()
588 …m_bColored || (m_pType3Char->m_bColored && (!pColorData || pColorData->m_StrokeColor.IsNull())))) { in GetStrokeArgb()
590 } else if (!pColorData || pColorData->m_StrokeColor.IsNull()) { in GetStrokeArgb()
616 if (ClipPath.IsNull()) { in ProcessClipPath()
617 if (m_LastClipPath.IsNull()) { in ProcessClipPath()
679 if (ClipPath.IsNull()) { in DrawClipPath()
932 if (!pObjColor->IsNull()) { in CloneObjStates()
/external/google-breakpad/src/testing/
DCHANGES37 * NotNull() and IsNull() now work with smart pointers.
67 * New feature: matchers Key(), Pair(), Args<...>(), AllArgs(), IsNull(),

123