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

1 2 34 5 6 7 8 91011>>

  /external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/
make_error_code.pass.cpp 12 // class error_code
14 // error_code make_error_code(errc e);
22 std::error_code ec = make_error_code(std::errc::operation_canceled);
  /external/libcxx/test/input.output/iostreams.base/std.ios.manip/error.reporting/
make_error_code.pass.cpp 12 // error_code make_error_code(io_errc e);
20 std::error_code ec = make_error_code(std::io_errc::stream);
  /external/libcxx/test/thread/futures/futures.errors/
make_error_code.pass.cpp 12 // class error_code
14 // error_code make_error_code(future_errc e);
22 std::error_code ec = make_error_code(std::future_errc::broken_promise);
  /external/llvm/include/llvm/ProfileData/
InstrProfWriter.h 41 std::error_code addFunctionCounts(StringRef FunctionName,
  /external/llvm/tools/obj2yaml/
obj2yaml.cpp 22 static std::error_code dumpObject(const ObjectFile &Obj) {
31 static std::error_code dumpInput(StringRef File) {
36 if (std::error_code EC = BinaryOrErr.getError())
56 if (std::error_code EC = dumpInput(InputFilename)) {
elf2yaml.cpp 29 std::error_code dumpSymbol(Elf_Sym_Iter Sym, ELFYAML::Symbol &S);
30 std::error_code dumpCommonSection(const Elf_Shdr *Shdr, ELFYAML::Section &S);
31 std::error_code dumpCommonRelocationSection(const Elf_Shdr *Shdr,
34 std::error_code dumpRelocation(const Elf_Shdr *Shdr, const RelT *Rel,
77 if (std::error_code EC = S.getError())
84 if (std::error_code EC = S.getError())
92 if (std::error_code EC = S.getError())
108 if (std::error_code EC = ELFDumper<ELFT>::dumpSymbol(SI, S))
131 std::error_code ELFDumper<ELFT>::dumpSymbol(Elf_Sym_Iter Sym,
139 if (std::error_code EC = NameOrErr.getError()
    [all...]
  /external/chromium_org/base/json/
json_reader.cc 68 *error_code_out = parser.error_code();
76 std::string JSONReader::ErrorCodeToString(JsonParseError error_code) {
77 switch (error_code) {
106 JSONReader::JsonParseError JSONReader::error_code() const { function in class:JSONReader
107 return parser_->error_code();
json_parser_unittest.cc 205 int error_code = 0; local
208 &error_code, &error_message));
210 EXPECT_EQ(0, error_code);
216 &error_code, &error_message));
220 EXPECT_EQ(JSONReader::JSON_SYNTAX_ERROR, error_code);
222 error_code = 0;
229 &error_code, &error_message));
233 EXPECT_EQ(JSONReader::JSON_SYNTAX_ERROR, error_code);
237 &error_code, &error_message));
241 EXPECT_EQ(JSONReader::JSON_UNEXPECTED_DATA_AFTER_ROOT, error_code);
311 int error_code = 0; local
    [all...]
json_file_value_serializer.h 43 // value is NULL, and if |error_code| is non-null, |error_code| will
48 virtual base::Value* Deserialize(int* error_code,
66 // Convert an error code into an error message. |error_code| is assumed to
68 static const char* GetErrorMessageForCode(int error_code);
json_reader.h 114 // Returns an empty string if error_code is JSON_NO_ERROR.
115 static std::string ErrorCodeToString(JsonParseError error_code);
122 JsonParseError error_code() const;
json_string_value_serializer.cc 38 Value* JSONStringValueSerializer::Deserialize(int* error_code,
46 error_code, error_str);
  /external/chromium_org/content/child/fileapi/
webfilewriter_base.cc 66 void WebFileWriterBase::DidFinish(base::File::Error error_code) {
67 if (error_code == base::File::FILE_OK)
70 DidFail(error_code);
120 void WebFileWriterBase::DidFail(base::File::Error error_code) {
126 client_->didFail(FileErrorToWebFileError(error_code));
webfilewriter_base.h 32 // This calls DidSucceed() or DidFail() based on the value of |error_code|.
33 void DidFinish(base::File::Error error_code);
37 void DidFail(base::File::Error error_code);
  /external/chromium_org/sync/test/fake_server/
fake_server_http_post_provider.cc 68 void FakeServerHttpPostProvider::OnPostComplete(int error_code,
71 post_error_code_ = error_code;
77 bool FakeServerHttpPostProvider::MakeSynchronousPost(int* error_code,
88 *error_code = post_error_code_;
90 return *error_code == 0;
  /external/llvm/lib/Support/
FileOutputBuffer.cpp 34 std::error_code
40 std::error_code EC = sys::fs::status(FilePath, Stat);
85 return std::error_code();
88 std::error_code FileOutputBuffer::commit(int64_t NewSmallerSize) {
94 std::error_code EC = sys::fs::resize_file(Twine(TempPath), NewSmallerSize);
  /external/llvm/unittests/Support/
MemoryTest.cpp 60 std::error_code EC;
62 EXPECT_EQ(std::error_code(), EC);
71 std::error_code EC;
73 EXPECT_EQ(std::error_code(), EC);
75 EXPECT_EQ(std::error_code(), EC);
77 EXPECT_EQ(std::error_code(), EC);
93 EXPECT_EQ(std::error_code(), EC);
106 std::error_code EC;
108 EXPECT_EQ(std::error_code(), EC);
125 std::error_code EC
    [all...]
  /external/llvm/lib/Object/
COFFObjectFile.cpp 34 static bool checkSize(const MemoryBuffer &M, std::error_code &EC,
46 static std::error_code getObject(const T *&Obj, const MemoryBuffer &M,
133 std::error_code COFFObjectFile::getSymbolName(DataRefImpl Ref,
139 std::error_code COFFObjectFile::getSymbolAddress(DataRefImpl Ref,
143 if (std::error_code EC = getSection(Symb->SectionNumber, Section))
155 std::error_code COFFObjectFile::getSymbolType(DataRefImpl Ref,
168 if (std::error_code EC = getSection(Symb->SectionNumber, Section))
206 std::error_code COFFObjectFile::getSymbolSize(DataRefImpl Ref,
213 if (std::error_code EC = getSection(Symb->SectionNumber, Section))
225 std::error_code
    [all...]
Object.cpp 94 if (std::error_code ec = (*unwrap(Sym))->getSection(*unwrap(Sect)))
120 if (std::error_code ec = (*unwrap(SI))->getName(ret))
127 if (std::error_code ec = (*unwrap(SI))->getSize(ret))
134 if (std::error_code ec = (*unwrap(SI))->getContents(ret))
141 if (std::error_code ec = (*unwrap(SI))->getAddress(ret))
149 if (std::error_code ec = (*unwrap(SI))->containsSymbol(**unwrap(Sym), ret))
177 if (std::error_code ec = (*unwrap(SI))->getName(ret))
184 if (std::error_code ec = (*unwrap(SI))->getAddress(ret))
191 if (std::error_code ec = (*unwrap(SI))->getSize(ret))
199 if (std::error_code ec = (*unwrap(RI))->getAddress(ret)
    [all...]
  /bionic/libc/arch-arm/cortex-a15/bionic/
memcpy.S 91 ldr r1, error_code
95 error_code: label
  /bionic/libc/arch-arm/cortex-a9/bionic/
memcpy.S 70 ldr r1, error_code
74 error_code: label
  /bionic/libc/arch-arm/denver/bionic/
memcpy.S 91 ldr r1, error_code
95 error_code: label
  /bionic/libc/arch-arm/krait/bionic/
memcpy.S 72 ldr r1, error_code
76 error_code: label
  /external/chromium_org/chrome/common/
localized_error.h 54 static void GetStrings(int error_code,
69 static bool HasStrings(const std::string& error_domain, int error_code);
  /external/chromium_org/chrome/installer/gcapi/
gcapi.cc 637 DWORD* error_code) {
638 DCHECK(error_code);
641 if (error_code)
642 *error_code = REACTIVATE_ERROR_INVALID_INPUT;
649 if (error_code)
650 *error_code = REACTIVATE_ERROR_NOTDORMANT;
661 if (error_code)
662 *error_code = REACTIVATE_ERROR_NOTINSTALLED;
667 if (error_code)
668 *error_code = REACTIVATE_ERROR_ALREADY_REACTIVATED
    [all...]
  /external/chromium_org/net/tools/balsa/
balsa_enums.h 100 static const char* ParseStateToString(ParseState error_code);
101 static const char* ErrorCodeToString(ErrorCode error_code);

Completed in 1626 milliseconds

1 2 34 5 6 7 8 91011>>