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

  /frameworks/av/media/libmediaplayerservice/
ActivityManager.cpp 43 int32_t exceptionCode = reply.readExceptionCode();
44 if (!exceptionCode) {
53 String8(uri).string(), exceptionCode);
  /external/webkit/Source/WebKit/chromium/src/
WebRange.cpp 68 Node* WebRange::startContainer(int& exceptionCode) const
70 return m_private->startContainer(exceptionCode);
73 Node* WebRange::endContainer(int& exceptionCode) const
75 return 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 WebCore::Node* startContainer(int& exceptionCode) const;
68 WEBKIT_API WebCore::Node* endContainer(int& exceptionCode) const;
  /external/webkit/Source/WebCore/bindings/v8/
V8Proxy.h 245 static void setDOMException(int exceptionCode);
292 static const char* rangeExceptionName(int exceptionCode);
293 static const char* eventExceptionName(int exceptionCode);
294 static const char* xmlHttpRequestExceptionName(int exceptionCode);
295 static const char* domExceptionName(int exceptionCode);
298 static const char* xpathExceptionName(int exceptionCode);
302 static const char* svgExceptionName(int exceptionCode);
306 static const char* sqlExceptionName(int exceptionCode);
399 inline v8::Handle<v8::Primitive> throwError(ExceptionCode ec)
V8Proxy.cpp 636 void V8Proxy::setDOMException(int exceptionCode)
638 if (exceptionCode <= 0)
642 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 280 milliseconds