Searched defs:isNull (Results 76 - 100 of 105) sorted by relevance

12345

/external/webkit/Source/JavaScriptCore/wtf/text/
H A DWTFString.h123 bool isNull() const { return !m_impl; } function in class:WTF::String
387 inline bool operator!(const String& str) { return str.isNull(); }
/external/webkit/Source/WebKit/chromium/src/
H A DWebURLResponse.cpp86 bool WebURLResponse::isNull() const function in class:WebKit::WebURLResponse
88 return !m_private || m_private->m_resourceResponse->isNull();
224 if (name.isNull() || value.isNull())
/external/android-mock/src/com/google/android/testing/mocking/
H A DAndroidMock.java1692 * {@link #isNull()}.
2127 public static <T> T isNull() { method in class:AndroidMock
2128 return (T) EasyMock.isNull();
/external/clang/include/clang/AST/
H A DCanonicalType.h84 operator bool() const { return !isNull(); }
86 bool isNull() const { function in class:clang::CanQual
87 return Stored.isNull();
737 assert((Other.isNull() || Other.isCanonical()) && "Type is not canonical!");
738 assert((Other.isNull() || isa<T>(Other.getTypePtr())) &&
748 if (Stored.isNull())
760 assert(!Stored.isNull() && isa<U>(Stored.getTypePtr()));
H A DTemplateBase.h234 bool isNull() const { return Kind == Null; } function in class:clang::TemplateArgument
H A DTypeLoc.h69 bool isNull() const { return !Ty; } function in class:clang::TypeLoc
H A DType.h505 assert(!isNull() && "Cannot retrieve a NULL type pointer");
559 /// isNull - Return true if this QualType doesn't point to a type yet.
560 bool isNull() const { function in class:clang::QualType
561 return Value.getPointer().isNull();
1013 canon.isNull() ? QualType(this_(), 0) : canon),
1306 canon.isNull() ? QualType(this_(), 0) : canon) {
3487 : Type(Auto, DeducedType.isNull() ? QualType(this, 0) : DeducedType,
3488 /*Dependent=*/DeducedType.isNull(),
3489 /*InstantiationDependent=*/DeducedType.isNull(),
3491 assert((DeducedType.isNull() || !DeducedTyp
[all...]
/external/clang/lib/CodeGen/
H A DCGCall.h297 bool isNull() const { return !getValue(); } function in class:clang::CodeGen::ReturnValueSlot
H A DItaniumCXXABI.cpp375 llvm::Value *isNull = Builder.CreateICmpEQ(src, null, "memptr.isnull"); local
376 return Builder.CreateSelect(isNull, src, dst);
H A DCGCall.cpp1595 llvm::Value *isNull = CGF.Builder.CreateIsNull(srcAddr, "icr.isnull"); local
1596 CGF.Builder.CreateCondBr(isNull, contBB, writebackBB);
1669 llvm::Value *isNull = CGF.Builder.CreateIsNull(srcAddr, "icr.isnull"); local
1671 finalArgument = CGF.Builder.CreateSelect(isNull,
1680 CGF.Builder.CreateCondBr(isNull, contBB, copyBB);
H A DCGExprCXX.cpp1217 llvm::Value *isNull = Builder.CreateIsNull(allocation, "new.isnull"); local
1218 Builder.CreateCondBr(isNull, contBB, notNullBB);
H A DCGObjCMac.cpp1453 llvm::Value *isNull = CGF.Builder.CreateIsNull(receiver); local
1454 CGF.Builder.CreateCondBr(isNull, NullBB, callBB);
/external/skia/include/core/
H A DSkBitmap.h94 bool isNull() const { return NULL == fPixels && NULL == fPixelRef; } function in class:SkBitmap
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptvalue_p.h99 inline bool isNull();
365 bool QScriptValuePrivate::isNull() function in class:QScriptValuePrivate
715 if (isObject() && prototype->isValid() && (prototype->isObject() || prototype->isNull())) {
741 return other->isUndefined() || other->isNull();
/external/llvm/lib/VMCore/
H A DConstantFold.cpp1918 bool isNull = true; local
1921 isNull = false;
1924 if (isNull) {
/external/webkit/Source/WebCore/platform/
H A DKURLGoogle.cpp246 // will produce an isNull URL, and calling setUtf8 will produce an empty
294 if (utf8String().isNull())
330 if (m_utf8.isNull())
355 if (m_url.utf8String().isNull())
366 if (!url.isNull())
426 bool KURL::isNull() const function in class:WebCore::KURL
428 return m_url.utf8String().isNull();
715 if (s.isNull() && !m_url.m_parsed.ref.is_valid())
719 if (s.isNull())
736 if (query.isNull()) {
[all...]
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebelement.cpp222 bool QWebElement::isNull() const function in class:QWebElement
1002 if (!m_element || element.isNull())
1044 if (!m_element || element.isNull())
1094 if (!m_element || element.isNull())
1141 if (!m_element || element.isNull())
1279 if (!m_element || element.isNull())
1353 if (!m_element || element.isNull())
1430 if (!m_element || element.isNull())
1463 while (element.isNull() && node) {
H A Dqwebframe.cpp1771 bool QWebHitTestResult::isNull() const function in class:QWebHitTestResult
/external/clang/include/clang/Basic/
H A DDiagnostic.h67 bool isNull() const { function in class:clang::FixItHint
949 if (!Hint.isNull())
/external/llvm/include/llvm/Object/
H A DELF.h473 bool isNull() const { return getPointer() == NULL; } function in class:llvm::object::ELFObjectFile::VersionMapEntry
474 bool isVerdef() const { return !isNull() && getInt() == 0; }
475 bool isVernaux() const { return !isNull() && getInt() == 1; }
2113 if (version_index >= VersionMap.size() || VersionMap[version_index].isNull())
/external/v8/src/
H A Dd8.js2132 if (!value.isUndefined() && !value.isNull()) {
2451 return this.isUndefined() || this.isNull() || this.isBoolean() ||
2478 ProtocolValue.prototype.isNull = function() {
H A Dmirror-debugger.js258 Mirror.prototype.isNull = function() {
1614 !r.isNull() && property.isUndefined();
/external/webkit/Source/JavaScriptCore/parser/
H A DNodes.h151 virtual bool isNull() const { return false; } function in class:JSC::ExpressionNode
200 virtual bool isNull() const { return true; } function in class:JSC::NullNode
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityObject.h240 bool isNull() const { return start.isNull() || end.isNull(); } function in struct:WebCore::VisiblePositionRange
258 bool isNull() const { return !start && !length; } function in struct:WebCore::PlainTextRange
/external/guava/guava-tests/lib/
H A Dlibtruth.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/junit/ org/junit/contrib/ org/junit/contrib/truth/ ...

Completed in 898 milliseconds

12345