Home
last modified time | relevance | path

Searched refs:exceptionCode (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
DWebRange.cpp72 WebNode WebRange::startContainer(WebExceptionCode& exceptionCode) const in startContainer()
76 exceptionCode = 0; in startContainer()
80 WebNode WebRange::endContainer(WebExceptionCode& exceptionCode) const in endContainer()
84 exceptionCode = 0; in endContainer()
DWebCryptoNormalize.cpp43 …andle<v8::Object> algorithmObject, WebCryptoOperation operation, int* exceptionCode, WebString* er… in normalizeCryptoAlgorithm() argument
51 *exceptionCode = webCryptoErrorToExceptionCode(error.errorType); in normalizeCryptoAlgorithm()
/external/chromium_org/third_party/WebKit/public/web/
DWebRange.h65 BLINK_EXPORT WebNode startContainer(int& exceptionCode) const;
66 BLINK_EXPORT WebNode endContainer(int& exceptionCode) const;
DWebCryptoNormalize.h57 …alizeCryptoAlgorithm(v8::Handle<v8::Object>, WebCryptoOperation, int* exceptionCode, WebString* er…
/external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
DSimpleContentDecryptionModuleResult.cpp65 …onModuleResult::completeWithError(WebContentDecryptionModuleException exceptionCode, unsigned long… in completeWithError() argument
67 completeWithDOMException(WebCdmExceptionToExceptionCode(exceptionCode), errorMessage); in completeWithError()
DMediaKeySession.cpp182 …virtual void completeWithError(WebContentDecryptionModuleException exceptionCode, unsigned long sy… in completeWithError() argument
184 completeWithDOMException(WebCdmExceptionToExceptionCode(exceptionCode), errorMessage); in completeWithError()
/external/chromium_org/third_party/WebKit/Source/core/xml/
DXMLHttpRequest.cpp1079 void XMLHttpRequest::handleRequestError(ExceptionCode exceptionCode, const AtomicString& type, long… in handleRequestError() argument
1085 if (!m_async && exceptionCode) { in handleRequestError()
1087 m_exceptionCode = exceptionCode; in handleRequestError()
/external/svox/pico/lib/
Dpicoos.h234 pico_status_t exceptionCode, picoos_char * baseMessage, picoos_char * fmt, ...);
Dpicoos.c820 pico_status_t exceptionCode, picoos_char * baseMessage, picoos_char * fmt, ...) in picoos_emRaiseException() argument
825 if (PICO_OK == this->curExceptionCode && PICO_OK != exceptionCode) { in picoos_emRaiseException()
826 this->curExceptionCode = exceptionCode; in picoos_emRaiseException()
828 …picoos_vSetErrorMsg(this->curExceptionMessage,PICOOS_MAX_EXC_MSG_LEN, exceptionCode, baseMessage, … in picoos_emRaiseException()