| /external/chromium_org/v8/test/mjsunit/compiler/ |
| null-compare.js | 28 function IsNull(x) { 32 assertTrue(IsNull(null), "null == null"); 33 assertTrue(IsNull(void 0), "void 0 == null"); 34 assertFalse(IsNull(42), "42 != null");
|
| /external/chromium_org/content/common/indexed_db/ |
| indexed_db_key_path.h | 25 bool IsNull() const { return type_ == blink::WebIDBKeyPathTypeNull; }
|
| /external/hamcrest/src/org/hamcrest/core/ |
| IsNull.java | 14 public class IsNull<T> extends BaseMatcher<T> { 28 return new IsNull<T>(); 36 return not(IsNull.<T>nullValue());
|
| /art/runtime/ |
| gc_root.h | 42 bool IsNull() const {
|
| /external/chromium_org/media/base/ |
| callback_holder.h | 34 bool IsNull() const {
|
| /external/lldb/include/lldb/Utility/ |
| PythonPointer.h | 69 bool IsNull() { return ptr_ == NULL; }
|
| /external/chromium_org/sync/syncable/ |
| syncable_id.h | 68 inline bool IsNull() const {
|
| /external/chromium_org/testing/gtest/test/ |
| gtest-unittest-api_test.cc | 140 AssertionResult IsNull(const char* str) { 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(tests[3]->type_param())) [all...] |
| /external/gtest/test/ |
| gtest-unittest-api_test.cc | 140 AssertionResult IsNull(const char* str) { 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(tests[3]->type_param())) [all...] |
| /ndk/sources/third_party/googletest/googletest/test/ |
| gtest-unittest-api_test.cc | 140 AssertionResult IsNull(const char* str) { 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(tests[3]->type_param())) [all...] |
| /external/chromium_org/chrome/browser/history/android/ |
| sqlite_cursor.cc | 116 jboolean SQLiteCursor::IsNull(JNIEnv* env, jobject obj, jint column) {
|
| /external/chromium_org/gpu/command_buffer/service/ |
| context_group.cc | 261 bool IsNull(const base::WeakPtr<gles2::GLES2Decoder>& decoder) { 281 decoders_.erase(std::remove_if(decoders_.begin(), decoders_.end(), IsNull),
|
| /external/chromium_org/content/renderer/ |
| v8_value_converter_impl_unittest.cc | 104 bool IsNull(base::DictionaryValue* value, const std::string& key) { 113 bool IsNull(v8::Handle<v8::Object> value, const std::string& key) { 120 return child->IsNull(); 123 bool IsNull(base::ListValue* value, uint32 index) { 132 bool IsNull(v8::Handle<v8::Array> value, uint32 index) { 138 return child->IsNull(); 233 v8_object->Get(v8::String::NewFromUtf8(isolate_, "null"))->IsNull()); 312 // EXPECT_TRUE(IsNull(converted.get(), "foo")); 353 EXPECT_TRUE(IsNull(converted.get(), 0)); 469 EXPECT_TRUE(IsNull(object_result.get(), "obj")) [all...] |
| /external/chromium_org/v8/src/platform/ |
| time.h | 179 bool IsNull() const { return us_ == 0; } 319 bool IsNull() const { return ticks_ == 0; }
|
| /external/chromium_org/v8/src/ |
| unique.h | 86 inline bool IsNull() const {
|
| /external/clang/lib/CodeGen/ |
| CGVTables.cpp | 86 llvm::Value *IsNull = CGF.Builder.CreateIsNull(ReturnValue); 87 CGF.Builder.CreateCondBr(IsNull, AdjustNull, AdjustNotNull); 289 if (!ResultType->isVoidType() && Slot.isNull())
|
| CGExprCXX.cpp | 185 assert(ReturnValue.isNull() && "Destructor shouldn't have return value"); [all...] |
| CGClass.cpp | 195 llvm::Value *isNull = Builder.CreateIsNull(Value); 196 Builder.CreateCondBr(isNull, endBB, notNullBB); 259 llvm::Value *IsNull = Builder.CreateIsNull(Value); 260 Builder.CreateCondBr(IsNull, CastNull, CastNotNull); [all...] |
| ItaniumCXXABI.cpp | 537 llvm::Value *isNull = Builder.CreateICmpEQ(src, null, "memptr.isnull"); 538 return Builder.CreateSelect(isNull, src, dst); [all...] |
| /external/llvm/tools/bugpoint/ |
| Miscompilation.cpp | [all...] |
| /external/opencv/cxcore/include/ |
| cvwimage.h | 347 bool IsNull() const {return WImage<T>::image_ == NULL; } 404 bool IsNull() const {return WImage<T>::image_ == NULL; } 533 if (IsNull() || WImage<T>::Width() != width || 544 if (IsNull() || WImage<T>::Width() != width || WImage<T>::Height() != height) {
|
| /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.1/ |
| hamcrest-core-1.1.jar | |
| /external/pdfium/core/include/fpdfapi/ |
| fpdf_resource.h | 693 FX_BOOL IsNull() const
|
| /external/pdfium/core/include/fxcrt/ |
| fx_basic.h | 1370 FX_BOOL IsNull() const
[all...] |
| /external/chromium_org/third_party/libjingle/source/talk/media/base/ |
| videoframe_unittest.h | 378 static bool IsNull(const cricket::VideoFrame& frame) { 384 return !IsNull(frame) && 471 return !IsNull(frame) && 484 EXPECT_TRUE(IsNull(frame)); [all...] |