| /external/llvm/include/llvm/IR/ |
| GVMaterializer.h | 45 virtual std::error_code Materialize(GlobalValue *GV) = 0; 56 virtual std::error_code MaterializeModule(Module *M) = 0;
|
| /external/llvm/include/llvm/Object/ |
| Error.h | 32 inline std::error_code make_error_code(object_error e) { 33 return std::error_code(static_cast<int>(e), object_category());
|
| COFF.h | 356 std::error_code getString(uint32_t offset, StringRef &Res) const; 362 std::error_code initSymbolTablePtr(); 363 std::error_code initImportTablePtr(); 364 std::error_code initExportTablePtr(); 368 std::error_code getSymbolName(DataRefImpl Symb, 370 std::error_code getSymbolAddress(DataRefImpl Symb, 372 std::error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const override; 374 std::error_code getSymbolType(DataRefImpl Symb, 376 std::error_code getSymbolSection(DataRefImpl Symb, 379 std::error_code getSectionName(DataRefImpl Sec [all...] |
| MachO.h | 43 std::error_code getOffset(uint32_t &Result) const; 44 std::error_code getLength(uint16_t &Result) const; 45 std::error_code getKind(uint16_t &Result) const; 60 bool Is64Bits, std::error_code &EC); 63 std::error_code getSymbolName(DataRefImpl Symb, 67 std::error_code getIndirectName(DataRefImpl Symb, StringRef &Res) const; 69 std::error_code getSymbolAddress(DataRefImpl Symb, 71 std::error_code getSymbolAlignment(DataRefImpl Symb, 73 std::error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const override; 74 std::error_code getSymbolType(DataRefImpl Symb [all...] |
| /external/llvm/tools/llvm-readobj/ |
| Error.h | 31 inline std::error_code make_error_code(readobj_error e) { 32 return std::error_code(static_cast<int>(e), readobj_category());
|
| ObjDumper.h | 50 std::error_code createCOFFDumper(const object::ObjectFile *Obj, 54 std::error_code createELFDumper(const object::ObjectFile *Obj, 58 std::error_code createMachODumper(const object::ObjectFile *Obj,
|
| /external/llvm/tools/obj2yaml/ |
| Error.h | 25 inline std::error_code make_error_code(obj2yaml_error e) { 26 return std::error_code(static_cast<int>(e), obj2yaml_category());
|
| obj2yaml.h | 20 std::error_code coff2yaml(llvm::raw_ostream &Out, 22 std::error_code elf2yaml(llvm::raw_ostream &Out,
|
| /external/chromium_org/net/ssl/ |
| openssl_ssl_util.cc | 59 int MapOpenSSLErrorSSL(uint32_t error_code) { 60 DCHECK_EQ(ERR_LIB_SSL, ERR_GET_LIB(error_code)); 62 DVLOG(1) << "OpenSSL SSL error, reason: " << ERR_GET_REASON(error_code) 63 << ", name: " << ERR_error_string(error_code, NULL); 64 switch (ERR_GET_REASON(error_code)) { 145 LOG(WARNING) << "Unmapped error reason: " << ERR_GET_REASON(error_code); 157 if (error_info.error_code != 0) { 158 dict->SetInteger("error_lib", ERR_GET_LIB(error_info.error_code)); 159 dict->SetInteger("error_reason", ERR_GET_REASON(error_info.error_code)); 203 uint32_t error_code; local [all...] |
| /external/chromium_org/gpu/gles2_conform_support/egl/ |
| egl.cc | 24 void SetCurrentError(EGLint error_code) { 28 T EglError(EGLint error_code, T return_value) { 29 SetCurrentError(error_code); 51 EGLint error_code = ValidateDisplay(dpy); local 52 if (error_code != EGL_SUCCESS) 53 return error_code; 63 EGLint error_code = ValidateDisplay(dpy); local 64 if (error_code != EGL_SUCCESS) 65 return error_code; 75 EGLint error_code = ValidateDisplay(dpy) local 118 EGLint error_code = ValidateDisplay(dpy); local 129 EGLint error_code = ValidateDisplay(dpy); local 152 EGLint error_code = ValidateDisplay(dpy); local 170 EGLint error_code = ValidateDisplay(dpy); local 188 EGLint error_code = ValidateDisplayConfig(dpy, config); local 203 EGLint error_code = ValidateDisplayConfig(dpy, config); local 233 EGLint error_code = ValidateDisplaySurface(dpy, surface); local 300 EGLint error_code = ValidateDisplayConfig(dpy, config); local 320 EGLint error_code = ValidateDisplayContext(dpy, ctx); local 334 EGLint error_code = ValidateDisplaySurface(dpy, draw); local 384 EGLint error_code = ValidateDisplaySurface(dpy, surface); local [all...] |
| /external/chromium_org/third_party/cld/encodings/compact_lang_det/win/ |
| cld_unicodetext.h | 24 // [out, optional] error_code - set to 0 in case of success, Windows 37 int* error_code, int* text_bytes);
|
| /external/javasqlite/src/main/java/SQLite/ |
| Vm.java | 19 protected int error_code = 0; field in class:Vm
|
| /external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/ |
| stream_inserter.pass.cpp | 12 // class error_code 16 // operator<<(basic_ostream<charT,traits>& os, const error_code& ec); 25 out << std::error_code(std::io_errc::stream);
|
| /external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/ |
| message.pass.cpp | 12 // class error_code 22 const std::error_code ec(6, std::generic_category());
|
| /external/libcxx/test/thread/futures/futures.future_error/ |
| code.pass.cpp | 14 // const error_code& code() const throw(); 22 std::error_code ec = std::make_error_code(std::future_errc::broken_promise); 27 std::error_code ec = std::make_error_code(std::future_errc::future_already_retrieved); 32 std::error_code ec = std::make_error_code(std::future_errc::promise_already_satisfied); 37 std::error_code ec = std::make_error_code(std::future_errc::no_state);
|
| /external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/ |
| assign.pass.cpp | 12 // class error_code 22 std::error_code ec; 28 std::error_code ec;
|
| /external/llvm/include/llvm/ProfileData/ |
| InstrProf.h | 40 inline std::error_code make_error_code(instrprof_error E) { 41 return std::error_code(static_cast<int>(E), instrprof_category());
|
| /external/chromium_org/android_webview/browser/net/ |
| input_stream_reader.cc | 29 int error_code = VerifyRequestedRange(&verified_byte_range, &content_size); local 30 if (error_code != net::OK) 31 return error_code; 33 error_code = SkipToRequestedRange(verified_byte_range); 34 if (error_code != net::OK) 35 return error_code;
|
| /external/chromium_org/chrome/installer/util/ |
| self_reg_work_item.cc | 32 // Any number thus found will be returned in |error_code|. The "cleaned" 36 // not set then *error_code will be unchanged and the original HRESULT is 40 HRESULT UnMuxHRESULTErrorCode(HRESULT hr, int* error_code) { 41 DCHECK(error_code); 43 *error_code = (hr & 0x07800000) >> 23; 75 int error_code = 0; local 76 HRESULT unmuxed_hr = UnMuxHRESULTErrorCode(hr, &error_code); 80 << error_code;
|
| /external/chromium_org/third_party/libaddressinput/chromium/ |
| string_compare.cc | 21 UErrorCode error_code = U_ZERO_ERROR; local 23 icu::Collator::createInstance(icu::Locale::getRoot(), error_code)); 24 DCHECK(U_SUCCESS(error_code)); 31 UErrorCode error_code = U_ZERO_ERROR; local 32 int result = collator_->compareUTF8(a, b, error_code); 33 DCHECK(U_SUCCESS(error_code));
|
| /external/libcxx/src/ |
| system_error.cpp | 40 error_category::equivalent(const error_code& code, int condition) const _NOEXCEPT 141 // error_code 144 error_code::message() const 152 system_error::__init(const error_code& ec, string what_arg) 163 system_error::system_error(error_code ec, const string& what_arg) 169 system_error::system_error(error_code ec, const char* what_arg) 175 system_error::system_error(error_code ec) 182 : runtime_error(__init(error_code(ev, ecat), what_arg)), 183 __ec_(error_code(ev, ecat)) 188 : runtime_error(__init(error_code(ev, ecat), what_arg)) [all...] |
| /external/chromium_org/chromeos/app_mode/ |
| kiosk_oem_manifest_parser.cc | 31 int error_code = JSONFileValueSerializer::JSON_NO_ERROR; local 36 serializer->Deserialize(&error_code, &error_msg)); 38 if (error_code != JSONFileValueSerializer::JSON_NO_ERROR ||
|
| /external/chromium_org/net/cert/ |
| test_root_certs_openssl.cc | 20 unsigned long error_code = ERR_peek_error(); local 21 if (ERR_GET_LIB(error_code) != ERR_LIB_X509 || 22 ERR_GET_REASON(error_code) != X509_R_CERT_ALREADY_IN_HASH_TABLE) {
|
| /external/llvm/lib/Support/ |
| DataStream.cpp | 67 std::error_code OpenFile(const std::string &Filename) { 71 return std::error_code(); 84 if (std::error_code e = s->OpenFile(Filename)) {
|
| /external/chromium_org/base/json/ |
| json_file_value_serializer.cc | 65 const char* JSONFileValueSerializer::GetErrorMessageForCode(int error_code) { 66 switch (error_code) { 83 base::Value* JSONFileValueSerializer::Deserialize(int* error_code, 88 if (error_code) 89 *error_code = error; 97 return serializer.Deserialize(error_code, error_str);
|