HomeSort by relevance Sort by last modified time
    Searched defs:IsNull (Results 1 - 17 of 17) sorted by null

  /external/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/chrome/browser/sync/syncable/
syncable_id.h 70 inline bool IsNull() const {
  /external/chromium/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/chromium/chrome/browser/extensions/
extension_file_browser_private_api.h 97 bool IsNull() const { return listener_ == NULL; }
  /external/clang/lib/CodeGen/
CGVTables.cpp 197 llvm::Value *IsNull = CGF.Builder.CreateIsNull(ReturnValue);
198 CGF.Builder.CreateCondBr(IsNull, AdjustNull, AdjustNotNull);
387 if (!ResultType->isVoidType() && Slot.isNull())
ItaniumCXXABI.cpp 380 llvm::Value *IsNull = Builder.CreateICmpEQ(Src, Null, "memptr.isnull");
381 return Builder.CreateSelect(IsNull, Src, Dst);
448 llvm::Constant *IsNull =
457 return llvm::ConstantExpr::getSelect(IsNull, Null, Dst);
    [all...]
CGClass.cpp 175 llvm::Value *IsNull = Builder.CreateIsNull(Value);
176 Builder.CreateCondBr(IsNull, CastNull, CastNotNull);
247 llvm::Value *IsNull = Builder.CreateIsNull(Value);
248 Builder.CreateCondBr(IsNull, CastNull, CastNotNull);
    [all...]
CGExprCXX.cpp     [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) {
  /external/clang/lib/Sema/
SemaExprObjC.cpp 83 if (!Ty.isNull()) {
233 if (Ty.isNull())
    [all...]
  /external/clang/lib/AST/
Expr.cpp     [all...]
  /external/v8/src/
objects-inl.h 745 bool Object::IsNull() {
    [all...]
api.cc     [all...]
ast.h 870 bool IsNull() const {
872 return handle_->IsNull();
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-matchers.h 747 // Implements the polymorphic IsNull() matcher, which matches any raw or smart
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor.cc 236 inline bool IsNull() const { return type == NULL_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();
    [all...]

Completed in 251 milliseconds