HomeSort by relevance Sort by last modified time
    Searched refs:error_code (Results 1 - 25 of 753) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/include/llvm/Support/
WindowsError.h 16 std::error_code mapWindowsError(unsigned EV);
  /external/libcxx/test/diagnostics/syserr/syserr.errcat/syserr.errcat.virtuals/
equivalent_error_code_int.pass.cpp 14 // virtual bool equivalent(const error_code& code, int condition) const;
22 assert(e_cat.equivalent(std::error_code(5, e_cat), 5));
23 assert(!e_cat.equivalent(std::error_code(5, e_cat), 6));
  /external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/
lt.pass.cpp 12 // class error_code
14 // bool operator<(const error_code& lhs, const error_code& rhs);
23 const std::error_code ec1(6, std::generic_category());
24 const std::error_code ec2(7, std::generic_category());
  /external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/
bool.pass.cpp 12 // class error_code
23 const std::error_code ec(6, std::generic_category());
27 const std::error_code ec(0, std::generic_category());
category.pass.cpp 12 // class error_code
21 const std::error_code ec(6, std::generic_category());
value.pass.cpp 12 // class error_code
21 const std::error_code ec(6, std::system_category());
default_error_condition.pass.cpp 12 // class error_code
22 const std::error_code ec(6, std::generic_category());
27 const std::error_code ec(6, std::system_category());
  /external/libcxx/test/thread/futures/futures.errors/
equivalent_error_code_int.pass.cpp 14 // virtual bool equivalent(const error_code& code, int condition) const;
22 assert(e_cat.equivalent(std::error_code(5, e_cat), 5));
23 assert(!e_cat.equivalent(std::error_code(5, e_cat), 6));
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
ReplyPacket.java 37 private short error_code; field in class:ReplyPacket
56 error_code = (short) super.readFromByteArray(p, ERROR_CODE_INDEX,
67 error_code = val;
76 return error_code;
88 super.writeAtByteArray(error_code, res, ERROR_CODE_INDEX,
  /external/chromium_org/chrome/tools/profile_reset/
jtl_compiler.h 49 CompileError() : line_number(0), error_code(ERROR_NONE) {}
52 ErrorCode error_code)
53 : line_number(line_number), context(context), error_code(error_code) {}
57 ErrorCode error_code; member in struct:JtlCompiler::CompileError
  /device/moto/shamu/dataservices/rmnetctl/inc/
librmnetctl.h 138 * @return RMNETCTL_LIB_ERR if there was a library error. Check error_code
140 * Check error_code
143 int rmnetctl_init(rmnetctl_hndl_t **hndl, uint16_t *error_code);
159 * @param error_code Status code of this operation
163 * @return RMNETCTL_LIB_ERR if there was a library error. Check error_code
165 * Check error_code
170 uint16_t *error_code,
181 * @param error_code Status code of this operation
183 * @return RMNETCTL_LIB_ERR if there was a library error. Check error_code
185 * Check error_code
    [all...]
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
plugin_error.h 27 void SetReport(PP_NaClError error_code, const std::string& message) {
28 error_code_ = error_code;
32 PP_NaClError error_code() const { function in class:plugin::ErrorInfo
  /external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/
ErrorCodeEnum.pass.cpp 12 // class error_code
14 // template <ErrorCodeEnum E> error_code(E e);
31 std::error_code
34 return std::error_code(static_cast<int>(x), std::generic_category());
40 std::error_code ec(two);
default.pass.cpp 12 // class error_code
14 // error_code();
21 std::error_code ec;
int_error_category.pass.cpp 12 // class error_code
14 // error_code(int val, const error_category& cat);
22 std::error_code ec(6, std::system_category());
27 std::error_code ec(8, std::generic_category());
  /external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/
ErrorCodeEnum.pass.cpp 12 // class error_code
14 // template <ErrorCodeEnum E> error_code& operator=(E e);
31 std::error_code
34 return std::error_code(static_cast<int>(x), std::generic_category());
40 std::error_code ec;
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
erroroutput.py 33 error_code = '%04d' % error.code
35 error_code = 'New Error ' + error_code
36 return '%s:%s:(%s) %s' % (filename, line, error_code, error.message)
  /external/chromium_org/content/child/
sync_load_response.h 22 int error_code; member in struct:content::SyncLoadResponse
  /external/chromium_org/content/public/browser/
resource_controller.h 21 virtual void CancelWithError(int error_code) = 0;
  /external/chromium_org/third_party/closure_linter/closure_linter/common/
erroroutput.py 33 error_code = '%04d' % error.code
35 error_code = 'New Error ' + error_code
36 return '%s:%s:(%s) %s' % (filename, line, error_code, error.message)
  /external/chromium_org/third_party/webrtc/voice_engine/include/mock/
mock_voe_observer.h 24 MOCK_METHOD2(CallbackOnError, void(int channel, int error_code));
  /device/moto/shamu/dataservices/rmnetctl/src/
librmnetctl.c 214 * @param error_code Status code of this operation
216 * @return RMNETCTL_LIB_ERR if there was a library error. Check error_code
218 static inline int _rmnetctl_check_len(int str_len, uint16_t *error_code) {
222 *error_code = RMNETCTL_API_ERR_STRING_TRUNCATION;
234 * @param error_code Status code of this operation
236 * @return RMNETCTL_LIB_ERR if there was a library error. Check error_code
238 static inline int _rmnetctl_check_code(int crd, uint16_t *error_code) {
242 *error_code = RMNETCTL_API_ERR_RETURN_TYPE;
254 * @param error_code Status code of this operation
256 * @return RMNETCTL_LIB_ERR if there was a library error. Check error_code
    [all...]
  /external/llvm/include/llvm/Object/
ObjectFile.h 49 std::error_code getAddress(uint64_t &Result) const;
50 std::error_code getOffset(uint64_t &Result) const;
52 std::error_code getType(uint64_t &Result) const;
57 std::error_code getHidden(bool &Result) const;
62 std::error_code getTypeName(SmallVectorImpl<char> &Result) const;
68 std::error_code getValueString(SmallVectorImpl<char> &Result) const;
95 std::error_code getName(StringRef &Result) const;
96 std::error_code getAddress(uint64_t &Result) const;
97 std::error_code getSize(uint64_t &Result) const;
98 std::error_code getContents(StringRef &Result) const
    [all...]
  /external/chromium_org/cloud_print/gcp20/prototype/
printer_unittest.cc 14 int error_code; local
19 &error_code, &error_msg));
  /external/libcxx/test/diagnostics/syserr/syserr.hash/
Android.mk 19 test_name := diagnostics/syserr/syserr.hash/error_code
20 test_src := error_code.pass.cpp

Completed in 819 milliseconds

1 2 3 4 5 6 7 8 91011>>