Home
last modified time | relevance | path

Searched refs:_code (Results 1 – 23 of 23) sorted by relevance

/external/jetty/src/java/org/eclipse/jetty/http/
DHttpStatus.java676 codeMap[code._code] = code;
812 private final int _code; field in HttpStatus.Code
817 this._code = code; in Code()
823 return _code; in getCode()
834 return (this._code == code); in equals()
840 return String.format("[%03d %s]",this._code,this.getMessage()); in toString()
855 return HttpStatus.isInformational(this._code); in isInformational()
870 return HttpStatus.isSuccess(this._code); in isSuccess()
885 return HttpStatus.isRedirection(this._code); in isRedirection()
900 return HttpStatus.isClientError(this._code); in isClientError()
[all …]
/external/xmlrpcpp/src/
DXmlRpcException.h27 _message(message), _code(code) {} in _message()
33 int getCode() const { return _code; } in getCode()
37 int _code; variable
/external/libunwind/doc/
Dunw_strerror.tex15 \Type{const char *} \Func{unw\_strerror}(\Type{int} \Var{err\_code});\\
19 The \Func{unw\_strerror}() routine maps the (negative) \Var{err\_code}
24 The message that corresponds to \Var{err\_code} or, if the
25 \Var{err\_code} has no corresponding message, the text "invalid error
/external/minijail/
Dbpf.h134 #define set_bpf_stmt(_block, _code, _k) \ argument
135 set_bpf_instr((_block), (_code), (_k), 0, 0)
137 #define set_bpf_jump(_block, _code, _k, _jt, _jf) \ argument
138 set_bpf_instr((_block), (_code), (_k), (_jt), (_jf))
Dsyscall_filter_unittest.c21 #define EXPECT_EQ_BLOCK(_block, _code, _k, _jt, _jf) \ argument
23 EXPECT_EQ((_block)->code, _code); \
29 #define EXPECT_EQ_STMT(_block, _code, _k) \ argument
30 EXPECT_EQ_BLOCK(_block, _code, _k, 0, 0)
/external/harfbuzz_ng/src/
Dhb-open-type-private.hh94 #define _DEFINE_COMPILES_ASSERTION1(_line, _code) \ argument
96 { _code; }
97 # define _DEFINE_COMPILES_ASSERTION0(_line, _code) _DEFINE_COMPILES_ASSERTION1 (_line, _code) argument
98 # define DEFINE_COMPILES_ASSERTION(_code) _DEFINE_COMPILES_ASSERTION0 (__LINE__, _code) argument
/external/valgrind/include/vki/
Dvki-xen-x86.h155 # define VKI_DECLARE_HVM_SAVE_TYPE(_x, _code, _type) \ argument
156 struct __VKI_HVM_SAVE_TYPE_##_x { _type t; char c[_code]; char cpt[1];}
/external/opencv3/modules/viz/src/
Dtypes.cpp51 cv::viz::KeyboardEvent::KeyboardEvent(Action _action, const String& _symbol, unsigned char _code, i… in KeyboardEvent() argument
52 : action(_action), symbol(_symbol), code(_code), modifiers(_modifiers) {} in KeyboardEvent()
/external/autotest/server/
Dlab_status_unittest.py91 self._code = code
104 return self._code
/external/opencv3/modules/ts/src/
Dts.cpp215 int _code = setjmp( tsJmpMark ); in safe_run() local
216 if( !_code ) in safe_run()
219 throw TS::FailureCode(_code); in safe_run()
/external/opencv3/modules/core/include/opencv2/core/
Dbase.hpp322 CV_EXPORTS void error(int _code, const String& _err, const char* _func, const char* _file, int _lin…
332 CV_INLINE CV_NORETURN void errorNoReturn(int _code, const String& _err, const char* _func, const ch… in errorNoReturn() argument
334 error(_code, _err, _func, _file, _line); in errorNoReturn()
/external/opencv3/modules/core/src/
Dsystem.cpp202 Exception::Exception(int _code, const String& _err, const String& _func, const String& _file, int _… in Exception() argument
203 : code(_code), err(_err), func(_func), file(_file), line(_line) in Exception()
658 void error(int _code, const String& _err, const char* _func, const char* _file, int _line) in error() argument
660 error(cv::Exception(_code, _err, _func, _file, _line)); in error()
/external/chromium-trace/catapult/third_party/webapp2/
Dwebapp2.py610 def redirect_to(self, _name, _permanent=False, _abort=False, _code=None, argument
618 code=_code, body=_body)
1795 def redirect_to(_name, _permanent=False, _abort=False, _code=None, argument
1813 return redirect(uri, permanent=_permanent, abort=_abort, code=_code,
DCHANGES337 becomes `_permanent`. A parameter `_code` was added to set status code.
/external/pdfium/third_party/libtiff/
Dtif_lzw.c176 #define NextCode(_tif, _sp, _bp, _code, _get) { \ argument
181 _code = CODE_EOI; \
183 _get(_sp,_bp,_code); \
/external/opencv3/3rdparty/libtiff/
Dtif_lzw.c176 #define NextCode(_tif, _sp, _bp, _code, _get) { \ argument
181 _code = CODE_EOI; \
183 _get(_sp,_bp,_code); \
/external/chromium-trace/catapult/third_party/webapp2/tests/
Dmisc_test.py123 rsp = webapp2.redirect_to('home', _code=301, _body='Weee')
/external/llvm/lib/Target/Mips/
DMips16InstrFormats.td192 bits<6> _code; // code is a keyword in tablegen
198 let Inst{10-5} = _code;
/external/llvm/docs/
DHowToSubmitABug.rst109 .. _code generator bugs:
DBugpoint.rst81 .. _code generator debugger:
DDeveloperPolicy.rst123 .. _code review:
DCodeGenerator.rst320 .. _code being generated:
708 .. _code generation algorithm:
/external/opencv3/modules/core/include/opencv2/
Dcore.hpp109 Exception(int _code, const String& _err, const String& _func, const String& _file, int _line);