HomeSort by relevance Sort by last modified time
    Searched refs:ErrorCode (Results 101 - 125 of 244) sorted by null

1 2 3 45 6 7 8 910

  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DOMFileSystemSync.cpp 207 static PassOwnPtr<LocalErrorCallback> create(FileError::ErrorCode& errorCode)
209 return adoptPtr(new LocalErrorCallback(errorCode));
219 explicit LocalErrorCallback(FileError::ErrorCode& errorCode)
220 : m_errorCode(errorCode)
224 FileError::ErrorCode& m_errorCode;
235 FileError::ErrorCode errorCode = FileError::OK;
236 OwnPtr<LocalErrorCallback> errorCallback = LocalErrorCallback::create(errorCode);
    [all...]
SyncCallbackHelper.h 143 void setError(FileError::ErrorCode code)
156 FileError::ErrorCode m_errorCode;
FileWriter.cpp 230 ASSERT(static_cast<FileError::ErrorCode>(code) != FileError::OK);
239 signalCompletion(static_cast<FileError::ErrorCode>(code));
291 void FileWriter::signalCompletion(FileError::ErrorCode code)
314 void FileWriter::setError(FileError::ErrorCode errorCode, ExceptionState& exceptionState)
316 ASSERT(errorCode);
317 FileError::throwDOMException(exceptionState, errorCode);
318 m_error = FileError::create(errorCode);
  /external/chromium_org/third_party/WebKit/Source/web/
SpeechRecognitionClientProxy.h 60 virtual void didReceiveError(const WebSpeechRecognitionHandle&, const WebString& message, WebSpeechRecognizerClient::ErrorCode) OVERRIDE;
  /external/chromium_org/third_party/re2/re2/
filtered_re2.h 40 RE2::ErrorCode Add(const StringPiece& pattern,
filtered_re2.cc 24 RE2::ErrorCode FilteredRE2::Add(const StringPiece& pattern,
27 RE2::ErrorCode code = re->error_code();
  /external/clang/include/clang-c/
CXCompilationDatabase.h 81 CXCompilationDatabase_Error *ErrorCode);
  /external/regex-re2/re2/
filtered_re2.h 40 RE2::ErrorCode Add(const StringPiece& pattern,
filtered_re2.cc 24 RE2::ErrorCode FilteredRE2::Add(const StringPiece& pattern,
27 RE2::ErrorCode code = re->error_code();
  /external/chromium_org/third_party/webrtc/test/channel_transport/
udp_transport_impl.h 134 virtual ErrorCode LastError() const OVERRIDE;
165 ErrorCode BindLocalRTPSocket();
166 ErrorCode BindLocalRTCPSocket();
168 ErrorCode BindRTPSendSocket();
169 ErrorCode BindRTCPSendSocket();
199 ErrorCode _lastError;
  /external/chromium_org/chrome/installer/test/
alternate_version_generator_main.cc 37 enum ErrorCode {
51 const wchar_t* GetErrorMessage(ErrorCode error_code) {
62 errors::ErrorCode error_code,
  /external/chromium_org/net/tools/balsa/
balsa_frame.h 121 BalsaFrameEnums::ErrorCode ErrorCode() const { return last_error_; }
252 BalsaFrameEnums::ErrorCode last_error_;
  /external/chromium_org/remoting/client/
server_log_entry_client.cc 17 using remoting::protocol::ErrorCode;
63 const char* GetValueError(ErrorCode error) {
97 ErrorCode error) {
chromoting_client.h 79 protocol::ErrorCode error) OVERRIDE;
  /external/chromium_org/remoting/protocol/
jingle_session.h 47 virtual ErrorCode error() OVERRIDE;
143 void CloseInternal(ErrorCode error);
158 ErrorCode error_;
  /external/chromium_org/third_party/angle/src/compiler/translator/
DetectCallDepth.cpp 139 DetectCallDepth::ErrorCode DetectCallDepth::detectCallDepthForFunction(FunctionNode* func)
155 DetectCallDepth::ErrorCode DetectCallDepth::detectCallDepth()
161 ErrorCode error = detectCallDepthForFunction(functions[i]);
  /external/chromium_org/third_party/skia/src/animator/
SkAnimateMaker.h 77 SkXMLParserError::ErrorCode getErrorCode() const { return fError.getErrorCode(); }
93 void setErrorCode(SkXMLParserError::ErrorCode err) { if (fError.hasError() == false) fError.INHERITED::setCode(err); }
94 void setErrorCode(SkDisplayXMLParserError::ErrorCode err) { if (fError.hasError() == false) fError.setCode(err); }
  /external/clang/tools/libclang/
CXCompilationDatabase.cpp 14 CXCompilationDatabase_Error *ErrorCode)
27 if (ErrorCode)
28 *ErrorCode = Err;
  /external/skia/src/animator/
SkAnimateMaker.h 77 SkXMLParserError::ErrorCode getErrorCode() const { return fError.getErrorCode(); }
93 void setErrorCode(SkXMLParserError::ErrorCode err) { if (fError.hasError() == false) fError.INHERITED::setCode(err); }
94 void setErrorCode(SkDisplayXMLParserError::ErrorCode err) { if (fError.hasError() == false) fError.setCode(err); }
  /external/chromium_org/remoting/client/jni/
chromoting_jni_runtime.h 75 protocol::ErrorCode error);
  /external/chromium_org/sandbox/linux/seccomp-bpf/
syscall_unittest.cc 91 ErrorCode CopyAllArgsOnUnamePolicy(SandboxBPF* sandbox,
95 return ErrorCode(ENOSYS);
100 return ErrorCode(ErrorCode::ERR_ALLOWED);
  /external/chromium_org/third_party/icu/source/tools/toolutil/
toolutil.h 26 #include "unicode/errorcode.h"
31 * ErrorCode subclass for use in ICU command-line tools.
32 * The destructor calls handleFailure() which calls exit(errorCode) when isFailure().
34 class U_TOOLUTIL_API IcuToolErrorCode : public ErrorCode {
  /external/icu/icu4c/source/tools/toolutil/
toolutil.h 27 #include "unicode/errorcode.h"
32 * ErrorCode subclass for use in ICU command-line tools.
33 * The destructor calls handleFailure() which calls exit(errorCode) when isFailure().
35 class U_TOOLUTIL_API IcuToolErrorCode : public ErrorCode {
  /external/lzma/CPP/7zip/Common/
InBuffer.h 13 CInBufferException(HRESULT errorCode): CSystemException(errorCode) {}
32 HRESULT ErrorCode;
OutBuffer.h 13 COutBufferException(HRESULT errorCode): CSystemException(errorCode) {}
33 HRESULT ErrorCode;

Completed in 706 milliseconds

1 2 3 45 6 7 8 910