HomeSort by relevance Sort by last modified time
    Searched refs:exceptionCode (Results 1 - 11 of 11) sorted by null

  /frameworks/base/core/jni/
ActivityManager.cpp 42 int32_t exceptionCode = reply.readExceptionCode();
43 if (!exceptionCode) {
52 String8(uri).string(), exceptionCode);
  /external/webkit/Source/WebKit/chromium/src/
WebRange.cpp 69 WebNode WebRange::startContainer(int& exceptionCode) const
71 return PassRefPtr<Node>(m_private->startContainer(exceptionCode));
74 WebNode WebRange::endContainer(int& exceptionCode) const
76 return PassRefPtr<Node>(m_private->endContainer(exceptionCode));
WebStorageAreaImpl.cpp 36 #include "ExceptionCode.h"
71 int exceptionCode = 0;
74 oldValue = m_storageArea->setItem(key, value, exceptionCode, 0);
76 if (exceptionCode) {
77 ASSERT(exceptionCode == WebCore::QUOTA_EXCEEDED_ERR);
WebElement.cpp 78 ExceptionCode exceptionCode = 0;
79 unwrap<Element>()->setAttribute(attrName, attrValue, exceptionCode);
80 return !exceptionCode;
WebNode.cpp 98 ExceptionCode exceptionCode = 0;
99 m_private->setNodeValue(value, exceptionCode);
100 return !exceptionCode;
  /external/webkit/Source/WebCore/xml/
XMLTreeViewer.cpp 86 ExceptionCode exceptionCode;
87 m_document->getElementById("xml-viewer-style")->appendChild(text, exceptionCode);
  /external/webkit/Source/WebKit/chromium/public/
WebRange.h 67 WEBKIT_API WebNode startContainer(int& exceptionCode) const;
68 WEBKIT_API WebNode endContainer(int& exceptionCode) const;
  /external/webkit/Source/WebCore/bindings/v8/
V8Proxy.h 253 static void setDOMException(int exceptionCode);
300 static const char* rangeExceptionName(int exceptionCode);
301 static const char* eventExceptionName(int exceptionCode);
302 static const char* xmlHttpRequestExceptionName(int exceptionCode);
303 static const char* domExceptionName(int exceptionCode);
306 static const char* xpathExceptionName(int exceptionCode);
310 static const char* svgExceptionName(int exceptionCode);
314 static const char* sqlExceptionName(int exceptionCode);
407 inline v8::Handle<v8::Primitive> throwError(ExceptionCode ec)
V8Proxy.cpp 670 void V8Proxy::setDOMException(int exceptionCode)
672 if (exceptionCode <= 0)
676 getExceptionCodeDescription(exceptionCode, description);
  /external/svox/pico/lib/
picoos.c 820 pico_status_t exceptionCode, picoos_char * baseMessage, picoos_char * fmt, ...)
825 if (PICO_OK == this->curExceptionCode && PICO_OK != exceptionCode) {
826 this->curExceptionCode = exceptionCode;
828 picoos_vSetErrorMsg(this->curExceptionMessage,PICOOS_MAX_EXC_MSG_LEN, exceptionCode, baseMessage, fmt,args);
    [all...]
picoos.h 234 pico_status_t exceptionCode, picoos_char * baseMessage, picoos_char * fmt, ...);

Completed in 221 milliseconds