HomeSort by relevance Sort by last modified time
    Searched refs:ASSERT_WITH_MESSAGE (Results 1 - 25 of 27) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/mac/
BlockExceptions.mm 36 ASSERT_WITH_MESSAGE(0, "Uncaught exception - %@", exception);
LocalizedStringsMac.mm 46 ASSERT_WITH_MESSAGE(result != notFound, "could not find localizable string %s in bundle", key);
  /external/webkit/Source/WebKit2/Platform/CoreIPC/win/
BinarySemaphoreWin.cpp 66 ASSERT_WITH_MESSAGE(false, "::WaitForSingleObjectEx failed with error %lu", ::GetLastError());
69 ASSERT_WITH_MESSAGE(false, "::WaitForSingleObjectEx returned unexpected result %lu", result);
  /external/webkit/Source/WebCore/platform/graphics/openvg/
EGLUtils.h 67 ASSERT_WITH_MESSAGE(eglErrorCode == EGL_SUCCESS, "Found %s", toEGLErrorConstant(eglErrorCode)); \
VGUtils.h 55 ASSERT_WITH_MESSAGE(vgErrorCode == VG_NO_ERROR, "Found %s", toVGErrorConstant(vgErrorCode)); \
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
LayerChangesFlusher.cpp 110 ASSERT_WITH_MESSAGE(m_hook, "::SetWindowsHookExW failed with error %lu", ::GetLastError());
123 ASSERT_WITH_MESSAGE(false, "::UnhookWindowsHookEx failed with error %lu", ::GetLastError());
CACFLayerTreeHost.cpp 167 ASSERT_WITH_MESSAGE(m_state != WindowSet, "Must call setWindow(0) before destroying CACFLayerTreeHost");
  /external/webkit/Source/WebKit/mac/Misc/
WebLocalizableStrings.mm 65 ASSERT_WITH_MESSAGE(result != notFound, "could not find localizable string %s in bundle", key);
  /external/webkit/Source/JavaScriptCore/wtf/
Assertions.h 266 /* ASSERT_WITH_MESSAGE */
269 #define ASSERT_WITH_MESSAGE(assertion) ((void)0)
271 #define ASSERT_WITH_MESSAGE(assertion, arg...) ((void)0)
273 #define ASSERT_WITH_MESSAGE(assertion, ...) ((void)0)
275 #define ASSERT_WITH_MESSAGE(assertion, ...) do \
MD5.cpp 79 ASSERT_WITH_MESSAGE(actual == expected, "input:%s[%lu] actual:%s expected:%s", input.data(), static_cast<unsigned long>(input.length()), actual.data(), expected.data());
106 ASSERT_WITH_MESSAGE(!(reinterpret_cast<uintptr_t>(buf) % sizeof(t)), "alignment error of buf");
215 ASSERT_WITH_MESSAGE(!(reinterpret_cast<uintptr_t>(m_in) % sizeof(uint32_t)), "alignment error of m_in");
SHA1.cpp 64 ASSERT_WITH_MESSAGE(actual == expected, "input: %s, repeat: %d, actual: %s, expected: %s", input.data(), repeat, actual.data(), expected.data());
  /external/webkit/Source/WebCore/platform/cf/
RunLoopTimerCF.cpp 59 ASSERT_WITH_MESSAGE(m_timer, "Timer must have one of the start functions called before calling schedule().");
  /external/webkit/Source/WebCore/platform/graphics/win/
FontPlatformDataWin.cpp 60 ASSERT_WITH_MESSAGE(bufferSize, "Bitmap fonts not supported with CoreGraphics.");
  /external/webkit/Source/WebCore/platform/text/
TextBreakIteratorICU.cpp 44 ASSERT_WITH_MESSAGE(U_SUCCESS(openStatus), "ICU could not open a break iterator: %s (%d)", u_errorName(openStatus), openStatus);
164 ASSERT_WITH_MESSAGE(U_SUCCESS(openStatus), "ICU could not open a break iterator: %s (%d)", u_errorName(openStatus), openStatus);
  /external/webkit/Source/WebKit2/Platform/win/
RunLoopWin.cpp 117 ASSERT_WITH_MESSAGE(result != WAIT_FAILED, "::MsgWaitForMultipleObjectsEx failed with error %lu", ::GetLastError());
118 ASSERT_WITH_MESSAGE(false, "::MsgWaitForMultipleObjectsEx returned unexpected result %lu", result);
SharedMemoryWin.cpp 80 ASSERT_WITH_MESSAGE(success, "::DuplicateHandle failed with error %lu", ::GetLastError());
166 ASSERT_WITH_MESSAGE(baseAddress, "::MapViewOfFile failed with error %lu", ::GetLastError());
WorkQueueWin.cpp 169 ASSERT_WITH_MESSAGE(m_timerQueue, "::CreateTimerQueue failed with error %lu", ::GetLastError());
239 ASSERT_WITH_MESSAGE(false, "::DeleteTimerQueueTimer failed with error %lu", ::GetLastError());
259 ASSERT_WITH_MESSAGE(false, "::CreateTimerQueueTimer failed with error %lu", ::GetLastError());
  /external/webkit/Source/JavaScriptCore/runtime/
TimeoutChecker.cpp 92 ASSERT_WITH_MESSAGE(err == KErrNone, "GetCpuTime failed with %d", err);
  /external/webkit/Source/WebCore/platform/win/
LocalizedStringsWin.cpp 82 ASSERT_WITH_MESSAGE(result.get() != notFound, "could not find localizable string %s in bundle", key);
  /external/webkit/Source/JavaScriptCore/jit/
JIT.cpp 179 ASSERT_WITH_MESSAGE(m_interpreter->isOpcode(currentInstruction->u.opcode), "privateCompileMainPass gone bad @ %d", m_bytecodeOffset);
443 ASSERT_WITH_MESSAGE(iter == m_slowCases.end() || firstTo != iter->to,"Not enough jumps linked in slow case codegen.");
444 ASSERT_WITH_MESSAGE(firstTo == (iter - 1)->to, "Too many jumps linked in slow case codegen.");
  /external/webkit/Source/WebCore/css/
SVGCSSComputedStyleDeclaration.cpp 194 ASSERT_WITH_MESSAGE(0, "unimplemented propertyID: %d", propertyID);
SVGCSSParser.cpp 294 ASSERT_WITH_MESSAGE(0, "unimplemented propertyID: %d", propId);
SVGCSSStyleSelector.cpp 587 ASSERT_WITH_MESSAGE(0, "unimplemented propertyID: %d", id);
  /external/webkit/Source/WebKit/win/
WebLocalizableStrings.cpp 176 ASSERT_WITH_MESSAGE(result != notFound, "could not find localizable string %s in bundle", key);
  /external/webkit/Tools/Scripts/
extract-localizable-strings 49 my %isDebugMacro = ( ASSERT_WITH_MESSAGE => 1, LOG_ERROR => 1, ERROR => 1, NSURL_ERROR => 1, FATAL => 1, LOG => 1, LOG_WARNING => 1, UI_STRING_LOCALIZE_LATER => 1, LPCTSTR_UI_STRING_LOCALIZE_LATER => 1, UNLOCALIZED_STRING => 1, UNLOCALIZED_LPCTSTR => 1, dprintf => 1, NSException => 1, NSLog => 1, printf => 1 );

Completed in 610 milliseconds

1 2