Searched defs:_code (Results 1 - 6 of 6) sorted by relevance

/external/xmlrpcpp/src/
H A DXmlRpcException.h27 _message(message), _code(code) {}
33 int getCode() const { return _code; }
37 int _code; member in class:XmlRpc::XmlRpcException
/external/opencv3/modules/viz/src/
H A Dtypes.cpp51 cv::viz::KeyboardEvent::KeyboardEvent(Action _action, const String& _symbol, unsigned char _code, int _modifiers) argument
52 : action(_action), symbol(_symbol), code(_code), modifiers(_modifiers) {}
/external/opencv3/modules/ts/src/
H A Dts.cpp215 int _code = setjmp( tsJmpMark ); local
216 if( !_code )
219 throw TS::FailureCode(_code);
/external/jetty/src/java/org/eclipse/jetty/http/
H A DHttpStatus.java676 codeMap[code._code] = code;
812 private final int _code; field in class:HttpStatus.Code
817 this._code = code;
823 return _code;
834 return (this._code == code);
840 return String.format("[%03d %s]",this._code,this.getMessage());
855 return HttpStatus.isInformational(this._code);
870 return HttpStatus.isSuccess(this._code);
885 return HttpStatus.isRedirection(this._code);
900 return HttpStatus.isClientError(this._code);
[all...]
/external/opencv3/modules/core/include/opencv2/core/
H A Dbase.hpp315 @param _code - error code (Error::Code)
322 CV_EXPORTS void error(int _code, const String& _err, const char* _func, const char* _file, int _line);
332 CV_INLINE CV_NORETURN void errorNoReturn(int _code, const String& _err, const char* _func, const char* _file, int _line) argument
334 error(_code, _err, _func, _file, _line);
/external/opencv3/modules/core/src/
H A Dsystem.cpp202 Exception::Exception(int _code, const String& _err, const String& _func, const String& _file, int _line) argument
203 : code(_code), err(_err), func(_func), file(_file), line(_line)
658 void error(int _code, const String& _err, const char* _func, const char* _file, int _line) argument
660 error(cv::Exception(_code, _err, _func, _file, _line));

Completed in 273 milliseconds