Home
last modified time | relevance | path

Searched refs:ASSERT_UNUSED (Results 1 – 22 of 22) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
DJSNotAnObject.cpp42 ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); in toPrimitive()
48 ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); in getPrimitiveNumber()
54 ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); in toBoolean()
60 ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); in toNumber()
66 ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); in toString()
72 ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); in toObject()
87 ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); in getOwnPropertySlot()
93 ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); in getOwnPropertySlot()
99 ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); in put()
104 ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); in put()
[all …]
DCollector.cpp166 ASSERT_UNUSED(error, !error); in destroy()
278 ASSERT_UNUSED(s, s <= HeapConstants<heapType>::cellSize); in heapAllocate()
/external/webkit/WebCore/loader/icon/
DIconFetcher.cpp189 ASSERT_UNUSED(handle, m_handle == handle); in didReceiveResponse()
200 ASSERT_UNUSED(handle, m_handle == handle); in didReceiveData()
207 ASSERT_UNUSED(handle, m_handle == handle); in didFinishLoading()
225 ASSERT_UNUSED(handle, m_handle == handle); in didFail()
/external/webkit/JavaScriptCore/wtf/
DAssertions.h149 #define ASSERT_UNUSED(variable, assertion) ((void)variable) macro
174 #define ASSERT_UNUSED(variable, assertion) ASSERT(assertion) macro
DTCSystemAlloc.cpp424ASSERT_UNUSED(newAddress, newAddress == start || newAddress == reinterpret_cast<void*>(MAP_FAILED)… in TCMalloc_SystemRelease()
/external/webkit/JavaScriptCore/jit/
DExecutableAllocatorPosix.cpp51 ASSERT_UNUSED(result, !result); in systemRelease()
/external/webkit/WebCore/bindings/js/
DJSWebKitCSSMatrixConstructor.cpp41 ASSERT_UNUSED(context, context->isDocument()); in JSWebKitCSSMatrixConstructor()
/external/webkit/WebCore/platform/
DTimer.cpp139 ASSERT_UNUSED(offset, m_index + offset >= 0); in checkConsistency()
140ASSERT_UNUSED(offset, m_index + offset <= (timerHeap ? static_cast<int>(timerHeap->size()) : 0)); in checkConsistency()
/external/webkit/WebCore/dom/
DWorker.cpp119 ASSERT_UNUSED(unusedResource, unusedResource == m_cachedScript); in notifyFinished()
DXMLTokenizer.cpp280 ASSERT_UNUSED(unusedResource, unusedResource == m_pendingScript); in notifyFinished()
DMessagePort.cpp57 ASSERT_UNUSED(unusedContext, unusedContext == m_port->scriptExecutionContext()); in performTask()
/external/webkit/WebCore/rendering/
DRenderView.cpp168 ASSERT_UNUSED(repaintContainer, !repaintContainer || repaintContainer == this); in localToContainerQuad()
265 ASSERT_UNUSED(repaintContainer, !repaintContainer || repaintContainer == this); in computeRectForRepaint()
DRenderListMarker.cpp511 ASSERT_UNUSED(unusedIsRootLineBox, !unusedIsRootLineBox); in createInlineBox()
DRenderText.cpp989 ASSERT_UNUSED(unusedIsRootLineBox, !unusedIsRootLineBox); in createInlineBox()
DRenderThemeMac.mm80ASSERT_UNUSED(unusedNotification, [[unusedNotification name] isEqualToString:NSSystemColorsDidChan…
DRenderObject.cpp2563 ASSERT_UNUSED(unusedIsRootLineBox, !unusedIsRootLineBox); in createInlineBox()
/external/webkit/WebCore/loader/appcache/
DApplicationCacheStorage.cpp347 ASSERT_UNUSED(unusedNumBytes, static_cast<int>(sizeof(userVersionSQL)) >= unusedNumBytes); in verifySchemaVersion()
571 ASSERT_UNUSED(cache, cache->storageID()); in storeUpdatedType()
/external/webkit/WebCore/platform/mac/
DWidgetMac.mm266 ASSERT_UNUSED(unusedView, unusedView == widget->getOuterView());
/external/webkit/WebKit/mac/History/
DWebHistory.mm277 ASSERT_UNUSED(itemWasInDateCaches, itemWasInDateCaches);
/external/webkit/WebCore/
DChangeLog7085 Use ASSERT_UNUSED.
7689 (WebCore::ApplicationCacheStorage::storeUpdatedType): Use ASSERT_UNUSED.
7784 (WebCore::IconFetcher::didReceiveResponse): Use ASSERT_UNUSED.
7794 (WebCore::TimerHeapIterator::checkConsistency): Use ASSERT_UNUSED.
8841 (WebCore::MessagePortCloseEventTask::performTask): Use ASSERT_UNUSED.
8854 (WebCore::Widget::beforeMouseDown): Use ASSERT_UNUSED.
8860 (WebCore::RenderListMarker::createInlineBox): Use ASSERT_UNUSED.
8865 I couldn't use ASSERT_UNUSED because it's a single assertion, but it's
8868 (WebCore::RenderText::createInlineBox): Use ASSERT_UNUSED.
11586 (WebCore::ApplicationCacheStorage::verifySchemaVersion): Use the new ASSERT_UNUSED macro.
/external/webkit/WebKit/mac/
DChangeLog63 … (-[WebHistoryPrivate visitedURL:withTitle:]): Use ASSERT_UNUSED in a manner that makes sense.
/external/webkit/JavaScriptCore/
DChangeLog1932 (JSC::JSNotAnObject::toObject): Use the new ASSERT_UNUSED instead of the
3532 * wtf/Assertions.h: Added ASSERT_UNUSED.