Searched refs:isNull (Results 1 - 25 of 370) sorted by relevance

1234567891011>>

/external/webkit/WebCore/svg/
H A DSVGListTraits.h40 static bool isNull(ItemPtr* it) { return !it; } function in struct:WebCore::SVGListTraits
46 static bool isNull(const RefPtr<ItemPtr>& it) { return !it; } function in struct:WebCore::SVGListTraits
52 static bool isNull(Item it) { return !it; } function in struct:WebCore::SVGListTraits
58 static bool isNull(double) { return false; } function in struct:WebCore::SVGListTraits
64 static bool isNull(float) { return false; } function in struct:WebCore::SVGListTraits
H A DSVGAnimatedPropertySynchronizer.h76 if (old && value.isNull())
78 else if (!old && !value.isNull())
80 else if (old && !value.isNull())
/external/webkit/WebCore/platform/network/
H A DResourceErrorBase.cpp53 if (a.isNull() && b.isNull())
56 if (a.isNull() || b.isNull())
H A DAuthenticationChallengeBase.cpp77 bool AuthenticationChallengeBase::isNull() const function in class:WebCore::AuthenticationChallengeBase
89 if (a.isNull() && b.isNull())
92 if (a.isNull() || b.isNull())
/external/webkit/WebKit/chromium/src/
H A DWebDragData.cpp69 ASSERT(!isNull());
81 ASSERT(!isNull());
93 ASSERT(!isNull());
105 ASSERT(!isNull());
117 ASSERT(!isNull());
129 ASSERT(!isNull());
135 ASSERT(!isNull());
154 ASSERT(!isNull());
166 ASSERT(!isNull());
178 ASSERT(!isNull());
[all...]
H A DWebHistoryItem.cpp70 ASSERT(!isNull());
82 ASSERT(!isNull());
94 ASSERT(!isNull());
106 ASSERT(!isNull());
118 ASSERT(!isNull());
130 ASSERT(!isNull());
142 ASSERT(!isNull());
154 ASSERT(!isNull());
171 ASSERT(!isNull());
183 ASSERT(!isNull());
[all...]
/external/webkit/WebCore/bindings/v8/
H A DScriptString.h48 bool isNull() const { return !m_impl.get() || m_impl->isNull(); } function in class:WebCore::ScriptString
65 return isNull() ? v8::Handle<v8::Value>(v8::Null()) : v8::Handle<v8::Value>(m_impl->v8StringHandle());
H A DScriptStringImpl.h61 bool isNull() const;
/external/webkit/JavaScriptCore/runtime/
H A DStructureChain.cpp38 for (Structure* current = head; current; current = current->storedPrototype().isNull() ? 0 : asObject(current->storedPrototype())->structure())
44 for (Structure* current = head; current; current = current->storedPrototype().isNull() ? 0 : asObject(current->storedPrototype())->structure())
H A DJSNotAnObject.h38 JSNotAnObjectErrorStub(ExecState* exec, bool isNull) argument
40 , m_isNull(isNull)
44 bool isNull() const { return m_isNull; } function in class:JSC::JSNotAnObjectErrorStub
/external/webkit/WebCore/wml/
H A DWMLMetaElement.cpp57 if (m_equiv.isNull() || m_content.isNull())
/external/webkit/WebCore/html/
H A DHTMLDListElement.cpp38 return !getAttribute(compactAttr).isNull();
H A DHTMLDirectoryElement.cpp38 return !getAttribute(compactAttr).isNull();
H A DHTMLMenuElement.cpp38 return !getAttribute(compactAttr).isNull();
H A DHTMLPreElement.cpp57 if (!attr->value().isNull())
75 return !getAttribute(wrapAttr).isNull();
H A DHTMLMetaElement.cpp72 if (!inDocument() || m_content.isNull())
97 if (inDocument() && !m_equiv.isNull() && !m_content.isNull())
/external/webkit/WebCore/platform/text/
H A DStringBuilder.h52 bool isNull() const { return m_totalLength == UINT_MAX; } function in class:WebCore::StringBuilder
/external/webkit/WebCore/bindings/js/
H A DScriptString.h50 bool isNull() const { return m_str.isNull(); } function in class:WebCore::ScriptString
H A DJSHTMLDataGridElementCustom.cpp50 if (value.isNull()) {
H A DJSDatabaseCustom.cpp64 if (!args.at(3).isNull()) {
74 if (!args.at(4).isNull()) {
100 if (args.size() > 1 && !args.at(1).isNull()) {
110 if (args.size() > 2 && !args.at(2).isNull()) {
/external/v8/test/mjsunit/
H A Dmirror-null.js41 assertTrue(mirror.isNull());
/external/webkit/WebCore/editing/
H A DVisibleSelection.cpp227 return !shadowTreeRootNode() && visibleStart().previous(stayInEditableContent).isNull() && visibleEnd().next(stayInEditableContent).isNull();
259 if (m_base.isNull() && m_extent.isNull())
261 else if (m_base.isNull()) {
264 } else if (m_extent.isNull()) {
318 if (end.isNull())
369 if (end.isNull())
390 if (m_start.isNull())
392 if (m_end.isNull())
[all...]
/external/webkit/JavaScriptCore/API/
H A DOpaqueJSString.cpp37 if (!ustring.isNull())
/external/webkit/WebCore/dom/
H A DTagNodeList.cpp37 ASSERT(m_namespaceURI.isNull() || !m_namespaceURI.isEmpty());
/external/webkit/WebCore/platform/graphics/qt/
H A DStillImageQt.cpp55 if (m_pixmap.isNull())

Completed in 383 milliseconds

1234567891011>>