/external/gtest/test/ |
D | gtest-unittest-api_test.cc | 140 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/ |
D | gtest-unittest-api_test.cc | 140 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/ |
D | null-compare.js | 28 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/ |
D | elapsed-timer.h | 45 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()
|
D | time.cc | 235 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()
|
D | time-unittest.cc | 64 EXPECT_TRUE(null.IsNull()); in TEST() 80 EXPECT_TRUE(null.IsNull()); in TEST() 98 EXPECT_TRUE(null.IsNull()); in TEST()
|
D | time.h | 179 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/ |
D | IsNull.java | 14 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/ |
D | task-queue-unittest.cc | 11 using testing::IsNull; 29 virtual void Run() OVERRIDE { EXPECT_THAT(queue_->GetNext(), IsNull()); } in Run() 44 EXPECT_THAT(queue.GetNext(), IsNull()); in TEST()
|
D | worker-thread-unittest.cc | 11 using testing::IsNull;
|
/external/v8/src/ |
D | prototype.h | 101 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()
|
D | lookup-inl.h | 16 if (map->prototype()->IsNull()) return NULL; in NextHolder()
|
D | hydrogen-types.cc | 44 if (value->IsNull()) return HType::Null(); in FromValue()
|
D | type-info.cc | 329 while (!map->prototype()->IsNull()) { in CanRetainOtherContext() 331 if (!constructor->IsNull()) { in CanRetainOtherContext() 344 if (constructor->IsNull()) return false; in CanRetainOtherContext()
|
D | lookup.cc | 49 CHECK(!root->IsNull()); in GetRoot() 155 DCHECK(!accessor->IsNull()); in TransitionToAccessorProperty()
|
/external/hamcrest/src/org/hamcrest/ |
D | CoreMatchers.java | 134 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/ |
D | ITreeFixture.cs | 58 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/ |
D | descriptor.cc | 262 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/ |
D | test-thread-termination.cc | 81 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/ |
D | Matchers.java | 134 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/ |
D | PythonPointer.h | 69 bool IsNull() { return ptr_ == NULL; } in IsNull() function
|
/external/opencv/cxcore/include/ |
D | cvwimage.h | 347 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/ |
D | fpdf_page_path.cpp | 31 if (m_Path.IsNull()) { in CalcBoundingBox()
|
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
D | fpdf_render.cpp | 247 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/ |
D | CHANGES | 37 * NotNull() and IsNull() now work with smart pointers. 67 * New feature: matchers Key(), Pair(), Args<...>(), AllArgs(), IsNull(),
|