Searched defs:Error (Results 101 - 125 of 408) sorted by relevance

1234567891011>>

/external/llvm/tools/llvm-jitlistener/
H A Dllvm-jitlistener.cpp50 "Error: The JIT event listener did not provide a event data.";
79 "Error: The JIT event listener did not provide a event data.";
138 std::string Error; local
141 .setErrorStr(&Error)
144 if (Error.empty() == false)
145 errs() << Error;
/external/llvm/unittests/Analysis/
H A DCFGTest.cpp33 SMDiagnostic Error; local
34 M = parseAssemblyString(Assembly, Error, Context);
38 Error.print("", os);
/external/llvm/unittests/IR/
H A DVerifierTest.cpp58 std::string Error; local
59 raw_string_ostream ErrorOS(Error);
89 std::string Error; local
90 raw_string_ostream ErrorOS(Error);
105 Error.clear();
114 Error.clear();
142 std::string Error; local
143 raw_string_ostream ErrorOS(Error);
154 std::string Error; local
155 raw_string_ostream ErrorOS(Error);
168 std::string Error; local
[all...]
/external/llvm/unittests/MC/
H A DDwarfLineTables.cpp35 std::string Error; local
36 const Target *TheTarget = TargetRegistry::lookupTarget(Triple, Error);
/external/pdfium/xfa/fde/xml/
H A Dfde_xml.h26 Error, member in class:FDE_XmlSyntaxResult
/external/python/cpython2/Demo/pdist/
H A Dcvslock.py94 class Error: class in inherits:
106 class Locked(Error):
141 raise Error("failed to lock %s: %s" % (
/external/python/cpython2/Lib/plat-irix5/
H A Dreadcd.py8 class Error(Exception): class in inherits:Exception
38 raise Error, 'bad __init__ call'
62 raise Error, 'track number out of range'
70 raise Error, 'out of range'
91 raise Error, 'range error'
97 raise Error, 'range error'
100 raise Error, 'syntax error'
103 raise Error, 'range error'
115 raise Error, 'range error'
118 raise Error, 'synta
[all...]
/external/python/cpython2/Lib/plat-irix6/
H A Dreadcd.py8 class Error(Exception): class in inherits:Exception
38 raise Error, 'bad __init__ call'
62 raise Error, 'track number out of range'
70 raise Error, 'out of range'
91 raise Error, 'range error'
97 raise Error, 'range error'
100 raise Error, 'syntax error'
103 raise Error, 'range error'
115 raise Error, 'range error'
118 raise Error, 'synta
[all...]
/external/python/cpython2/Lib/plat-mac/
H A Dapplesingle.py28 class Error(ValueError): class in inherits:ValueError
56 raise Error, "Unpack header error: %s" % (arg,)
62 raise Error, "Unknown AppleSingle magic number 0x%8.8x" % (magic,)
64 raise Error, "Unknown AppleSingle version number 0x%8.8x" % (version,)
66 raise Error, "AppleSingle file contains no forks"
73 raise Error, "Unpack entry error: %s" % (arg,)
79 raise Error, "Short read: expected %d bytes got %d" % (length, len(data))
91 raise Error, "No resource fork found"
96 raise Error, "No useful forks found"
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Finder/
H A D__init__.py9 Error = aetools.Error variable
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/SystemEvents/
H A D__init__.py9 Error = aetools.Error variable
/external/python/cpython2/Lib/test/
H A Dtest__locale.py2 from _locale import (setlocale, LC_NUMERIC, localeconv, Error) namespace
65 except Error:
84 except Error:
99 except Error:
115 except Error:
123 except Error:
141 except Error:
/external/swiftshader/third_party/LLVM/include/llvm/
H A DLinker.h124 const std::string &getLastError() const { return Error; }
251 std::string* ErrorMsg = 0 /// Error/diagnostic string
297 std::string Error; ///< Text of error that occurred. member in class:llvm::Linker
/external/swiftshader/third_party/LLVM/include/llvm/MC/MCParser/
H A DMCAsmParserExtension.h62 bool Error(SMLoc L, const Twine &Msg) { function in class:llvm::MCAsmParserExtension
63 return getParser().Error(L, Msg);
/external/swiftshader/third_party/LLVM/lib/Support/
H A DRegex.cpp38 bool Regex::isValid(std::string &Error) { argument
44 Error.resize(len);
45 llvm_regerror(error, preg, &Error[0], len);
95 std::string *Error) {
99 if (Error && !Error->empty()) *Error = "";
120 Error && Error->empty())
121 *Error
94 sub(StringRef Repl, StringRef String, std::string *Error) argument
[all...]
H A DTargetRegistry.cpp27 std::string &Error) {
30 Error = "Unable to find target for this triple (no targets are registered)";
47 Error = "No available targets are compatible with this triple, "
55 Error = std::string("Cannot choose between targets \"") +
86 const Target *TargetRegistry::getClosestTargetForJIT(std::string &Error) { argument
87 const Target *TheTarget = lookupTarget(sys::getHostTriple(), Error);
90 Error = "No JIT compatible target available for this host";
26 lookupTarget(const std::string &TT, std::string &Error) argument
/external/swiftshader/third_party/LLVM/lib/TableGen/
H A DTGParser.h18 #include "llvm/TableGen/Error.h"
63 bool Error(SMLoc L, const Twine &Msg) const { function in class:llvm::TGParser
68 return Error(Lex.getLoc(), Msg);
/external/swiftshader/third_party/LLVM/tools/bugpoint/
H A DListReducer.h46 std::string &Error) = 0;
52 bool reduceList(std::vector<ElTy> &TheList, std::string &Error) { argument
55 switch (doTest(TheList, empty, Error)) {
71 assert(!Error.empty());
100 if (doTest(ShuffledList, empty, Error) == KeepPrefix) {
119 switch (doTest(Prefix, Suffix, Error)) {
144 return true; // Error was set by doTest.
146 assert(Error.empty() && "doTest did not return InternalError for error");
180 if (doTest(EmptyList, TestList, Error) == KeepSuffix) {
186 if (!Error
[all...]
/external/swiftshader/third_party/LLVM/tools/llvm-extract/
H A Dllvm-extract.cpp113 std::string Error; local
115 if (!RegEx.isValid(Error)) {
117 "invalid regex: " << Error; local
146 std::string Error; local
149 if (!RegEx.isValid(Error)) {
151 "invalid regex: " << Error; local
/external/swiftshader/third_party/LLVM/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp78 static int Error(const Twine &Msg) { function
98 return Error("unable to read input: '" + ec.message() + "'");
102 return Error(Dyld.getErrorString());
109 // FIXME: Error out if there are unresolved relocations.
114 return Error("no definition for '" + EntryPoint + "'");
123 return Error("unable to mark function executable: '" + ErrorStr + "'");
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
H A DJITMemoryManagerTest.cpp37 std::string Error; local
45 EXPECT_TRUE(MemMgr->CheckInvariants(Error)) << Error;
52 EXPECT_TRUE(MemMgr->CheckInvariants(Error)) << Error;
59 EXPECT_TRUE(MemMgr->CheckInvariants(Error)) << Error;
63 EXPECT_TRUE(MemMgr->CheckInvariants(Error)) << Error;
65 EXPECT_TRUE(MemMgr->CheckInvariants(Error)) << Erro
76 std::string Error; local
[all...]
H A DMultiJITTest.cpp24 SMDiagnostic Error; local
26 NULL != ParseAssemblyString(assembly, M, Error, M->getContext());
29 Error.Print("", os);
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DRegex.cpp51 bool Regex::isValid(std::string &Error) { argument
57 Error.resize(len - 1);
58 llvm_regerror(error, preg, &Error[0], len);
111 std::string *Error) {
115 if (Error && !Error->empty()) *Error = "";
136 Error && Error->empty())
137 *Error
110 sub(StringRef Repl, StringRef String, std::string *Error) argument
[all...]
/external/swiftshader/third_party/subzero/src/
H A DIceRangeSpec.cpp50 bool Error = false; local
59 Error = true;
62 Error = true;
64 if (Error) {
/external/webrtc/webrtc/libjingle/xmpp/
H A Dasyncsocket.h37 enum Error { enum in class:buzz::AsyncSocket
49 virtual Error error() = 0;

Completed in 380 milliseconds

1234567891011>>