Searched defs:isNull (Results 26 - 50 of 105) sorted by relevance

12345

/external/webkit/Source/WebKit/chromium/src/
H A DWebImageSkia.cpp96 bool WebImage::isNull() const function in class:WebKit::WebImage
98 return m_bitmap.isNull();
/external/webkit/Source/WebKit2/Shared/
H A DShareableBitmap.h58 bool isNull() const { return m_handle.isNull(); } function in class:WebKit::ShareableBitmap::Handle
H A DWebString.h58 bool isNull() const { return m_string.isNull(); } function in class:WebKit::WebString
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/
H A DAssert.java87 public static void isNull(Object object) { method in class:Assert
88 isNull(object, ""); //$NON-NLS-1$
101 public static void isNull(Object object, String message) { method in class:Assert
121 public static void isNull(Object object, String errorFormat, Object... args) { method in class:Assert
/external/icu4c/common/unicode/
H A Dlocalpointer.h83 UBool isNull() const { return ptr==NULL; } function in class:LocalPointerBase
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
H A DPointer.java133 public boolean isNull() { method in class:Pointer
/external/webkit/Source/JavaScriptCore/parser/
H A DSourceCode.h70 bool isNull() const { return !m_provider; } function in class:JSC::SourceCode
/external/webkit/Source/JavaScriptCore/runtime/
H A DIdentifier.h67 bool isNull() const { return m_string.isNull(); } function in class:JSC::Identifier
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptValue.h113 bool isNull() const function in class:WebCore::ScriptValue
/external/webkit/Source/WebCore/dom/
H A DAttribute.h68 bool isNull() const { return m_value.isNull(); } function in class:WebCore::Attribute
/external/webkit/Source/WebCore/editing/
H A DVisiblePosition.h60 bool isNull() const { return m_deepPosition.isNull(); } function in class:WebCore::VisiblePosition
/external/webkit/Source/WebCore/page/
H A DSpatialNavigation.h118 bool isNull() const { return !visibleNode; } function in struct:WebCore::FocusCandidate
/external/webkit/Source/WebCore/platform/network/
H A DResourceErrorBase.h42 bool isNull() const { return m_isNull; } function in class:WebCore::ResourceErrorBase
/external/webkit/Source/WebKit/chromium/public/
H A DWebBlobData.h66 bool isNull() const { return !m_private; } function in class:WebKit::WebBlobData
H A DWebCString.h88 bool isNull() const { return !m_private; } function in class:WebKit::WebCString
H A DWebDOMEvent.h66 bool isNull() const { return !m_private; } function in class:WebKit::WebDOMEvent
H A DWebHTTPBody.h74 bool isNull() const { return !m_private; } function in class:WebKit::WebHTTPBody
H A DWebString.h82 bool isNull() const { return !m_private; } function in class:WebKit::WebString
H A DWebURL.h104 bool isNull() const function in class:WebKit::WebURL
131 return isNull() ? GURL() : GURL(m_spec.data(), m_spec.length(), m_parsed, m_isValid);
/external/webkit/Source/WebKit2/Platform/mac/
H A DSharedMemoryMac.cpp52 bool SharedMemory::Handle::isNull() const function in class:WebKit::SharedMemory::Handle
136 if (handle.isNull())
/external/webkit/Source/WebKit2/Platform/win/
H A DSharedMemoryWin.cpp49 bool SharedMemory::Handle::isNull() const function in class:WebKit::SharedMemory::Handle
/external/clang/include/clang/AST/
H A DDeclContextInternals.h63 bool isNull() const { return Data.isNull(); } function in struct:clang::StoredDeclsList
83 assert(!isNull() && "removing from empty list");
103 if (isNull())
109 assert(!isNull() && "Empty list isn't allowed");
/external/llvm/include/llvm/ADT/
H A DPointerUnion.h109 /// isNull - Return true if the pointer held in the union is null,
111 bool isNull() const {
116 operator bool() const { return !isNull(); }
256 /// isNull - Return true if the pointer held in the union is null,
258 bool isNull() const { return Val.isNull(); } function in class:llvm::PointerUnion3
259 operator bool() const { return !isNull(); }
364 /// isNull - Return true if the pointer held in the union is null,
366 bool isNull() const { return Val.isNull(); } function in class:llvm::PointerUnion4
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DReferenceValue.java82 public int isNull() method in class:ReferenceValue
430 return -isNull();
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
H A Dtst_qscriptvalue_generated_istype.cpp402 void tst_QScriptValue::isNull() function in class:tst_QScriptValue
406 QCOMPARE(value.isNull(), expected);
407 QCOMPARE(value.isNull(), expected);

Completed in 575 milliseconds

12345