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/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 80 ExceptionCode exceptionCode = 0;
81 unwrap<Element>()->setAttribute(attrName, attrValue, exceptionCode);
82 return !exceptionCode;
WebNode.cpp 95 ExceptionCode exceptionCode = 0;
96 m_private->setNodeValue(value, exceptionCode);
97 return !exceptionCode;
  /external/webkit/WebKit/chromium/public/
WebRange.h 67 WEBKIT_API WebNode startContainer(int& exceptionCode) const;
68 WEBKIT_API WebNode endContainer(int& exceptionCode) const;
  /external/webkit/WebCore/bindings/v8/
V8Proxy.h 296 static void setDOMException(int exceptionCode);
358 static const char* rangeExceptionName(int exceptionCode);
359 static const char* eventExceptionName(int exceptionCode);
360 static const char* xmlHttpRequestExceptionName(int exceptionCode);
361 static const char* domExceptionName(int exceptionCode);
364 static const char* xpathExceptionName(int exceptionCode);
368 static const char* svgExceptionName(int exceptionCode);
456 inline v8::Handle<v8::Primitive> throwError(ExceptionCode ec)
V8Proxy.cpp 646 void V8Proxy::setDOMException(int exceptionCode)
648 if (exceptionCode <= 0)
652 getExceptionCodeDescription(exceptionCode, description);
  /external/webkit/WebCore/bindings/v8/custom/
V8WebGLRenderingContextCustom.cpp 37 #include "ExceptionCode.h"
136 ExceptionCode exceptionCode;
137 context->bufferData(target, size, usage, exceptionCode);
140 ExceptionCode exceptionCode;
141 context->bufferData(target, array, usage, exceptionCode);
177 ExceptionCode exceptionCode;
178 context->bufferSubData(target, offset, array, exceptionCode);
    [all...]
  /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 1880 milliseconds