HomeSort by relevance Sort by last modified time
    Searched defs:Error (Results 201 - 225 of 477) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml 7 exception Error of string
25 | Not_found -> raise (Error "unknown variable name")
35 | None -> raise (Error "unknown unary operator")
46 | _ -> raise (Error "destination of '=' must be a variable")
54 | Not_found -> raise (Error "unknown variable name")
77 | None -> raise (Error "binary operator not found!")
87 | None -> raise (Error "unknown function referenced")
91 (* If argument mismatch error. *)
93 raise (Error "incorrect # arguments passed");
200 * don't allow an error *)
    [all...]
  /external/llvm/lib/TableGen/
TGParser.h 20 #include "llvm/TableGen/Error.h"
91 /// routines return true on error, or false on success.
94 bool Error(SMLoc L, const Twine &Msg) const {
99 return Error(Lex.getLoc(), Msg);
  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 35 AbsTolerance("abs-tolerance", cl::desc("Absolute error tolerated"),
38 RelTolerance("rel-tolerance", cl::desc("Relative error tolerated"),
258 // If there was an error creating the selected interpreter, quit with error.
263 /// setting Error if an error occurs. This is used for code generation
266 void BugDriver::compileProgram(Module *M, std::string *Error) const {
273 errs() << ToolName << ": Error making unique filename: " << EC.message()
278 errs() << ToolName << ": Error emitting bitcode to file '" << BitcodeFile
287 Interpreter->compileProgram(BitcodeFile.str(), Error, Timeout, MemoryLimit)
    [all...]
  /external/llvm/tools/llc/
llc.cpp 161 std::string error; local
165 tool_output_file *FDOut = new tool_output_file(OutputFilename.c_str(), error,
167 if (!error.empty()) {
168 errs() << error << '\n';
253 std::string Error;
255 Error);
257 errs() << argv[0] << ": " << Error;
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 194 std::string Error;
196 Error);
198 errs() << ProgName << ": " << Error;
247 bool Error = false;
255 Error = true;
257 case AsmToken::Error:
258 Error = true; // error already printed.
317 return Error;
331 << ": error: this target does not support assembly parsing.\n"
    [all...]
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 146 static int Error(const Twine &Msg) {
147 Message("error", Msg);
156 llvm::errs() << "Error loading '" << Dylib << "': "
182 return Error("unable to read input: '" + EC.message() + "'");
189 return Error(Dyld.getErrorString());
244 return Error("unable to read input: '" + EC.message() + "'");
250 return Error(Dyld.getErrorString());
259 // FIXME: Error out if there are unresolved relocations.
264 return Error("no definition for '" + EntryPoint + "'");
273 return Error("unable to mark function executable: '" + ErrorStr + "'")
    [all...]
  /external/llvm/unittests/Analysis/
LazyCallGraphTest.cpp 27 SMDiagnostic Error;
29 ParseAssemblyString(Assembly, M.get(), Error, M->getContext()) == M.get();
33 Error.print("", OS);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_debug.cpp 202 std::string Error;
203 const Target *T = TargetRegistry::lookupTarget(Triple, Error);
212 debug_printf("error: no assembly info for target %s\n", Triple.c_str());
223 debug_printf("error: no disassembler for target %s\n", Triple.c_str());
238 debug_printf("error: no register info for target %s\n", Triple.c_str());
244 debug_printf("error: no instruction info for target %s\n", Triple.c_str());
263 debug_printf("error: no instruction printer for target %s\n", Triple.c_str());
  /external/skia/tools/
submit_try 153 def Error(msg=None):
166 Error()
185 Error('--bot specified multiple times.')
187 Error('You must specify a builder with "--bot".')
193 Error('Cannot specify "%s" with additional builder names or '
211 Error('Unrecognized builder: %s' % bot)
215 Error('You must specify a revision with "-r".')
219 Error('Unknown argument: %s' % arg)
222 Error('You must specify a changelist name.')
224 Error('You must specify one or more builders using --bot.'
    [all...]
  /frameworks/compile/slang/
slang_backend.cpp 117 std::string Error;
119 llvm::TargetRegistry::lookupTarget(Triple, Error);
121 mDiagEngine.Report(clang::diag::err_fe_unable_to_create_target) << Error;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CommandException.java 27 private Error mError;
29 public enum Error {
50 public CommandException(Error e) {
60 return new CommandException(Error.INVALID_RESPONSE);
62 return new CommandException(Error.RADIO_NOT_AVAILABLE);
64 return new CommandException(Error.GENERIC_FAILURE);
66 return new CommandException(Error.PASSWORD_INCORRECT);
68 return new CommandException(Error.SIM_PIN2);
70 return new CommandException(Error.SIM_PUK2);
72 return new CommandException(Error.REQUEST_NOT_SUPPORTED)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
comdef.h 14 #error Native Compiler support only available in C++ compiler
45 HRESULT Error() const throw();
87 inline HRESULT _com_error::Error() const throw() { return m_hresult; }
140 _COM_PRINTF_S_1(m_pszMsg,32,TEXT("IDispatch error #%d"),wCode);
142 _COM_PRINTF_S_1(m_pszMsg,32,TEXT("Unknown error 0x%0lX"),m_hresult);
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
noembed.h 25 #ifdef Error
26 #undef Error
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
binhex.py 29 __all__ = ["binhex","hexbin","Error"]
31 class Error(Exception):
192 raise Error, 'Filename too long'
219 raise Error, 'Writing data at the wrong time'
225 raise Error, 'Incorrect data size, diff=%r' % (self.rlen,)
233 raise Error, 'Writing resource data at the wrong time'
241 raise Error, 'Close at the wrong time'
243 raise Error, \
304 raise Error, \
310 raise Error, 'Premature EOF on binhex file
    [all...]
copy.py 10 For module specific errors, copy.Error is raised.
55 class Error(Exception):
57 error = Error # backward compatibility variable
64 __all__ = ["Error", "copy", "deepcopy"]
94 raise Error("un(shallow)copyable object of type %s" % cls)
188 raise Error(
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_traceback.py 8 from test.test_support import run_unittest, is_jython, Error
185 raise Error("unable to create test traceback string")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
binhex.py 29 __all__ = ["binhex","hexbin","Error"]
31 class Error(Exception):
192 raise Error, 'Filename too long'
219 raise Error, 'Writing data at the wrong time'
225 raise Error, 'Incorrect data size, diff=%r' % (self.rlen,)
233 raise Error, 'Writing resource data at the wrong time'
241 raise Error, 'Close at the wrong time'
243 raise Error, \
304 raise Error, \
310 raise Error, 'Premature EOF on binhex file
    [all...]
copy.py 10 For module specific errors, copy.Error is raised.
55 class Error(Exception):
57 error = Error # backward compatibility variable
64 __all__ = ["Error", "copy", "deepcopy"]
94 raise Error("un(shallow)copyable object of type %s" % cls)
188 raise Error(
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_traceback.py 8 from test.test_support import run_unittest, is_jython, Error
185 raise Error("unable to create test traceback string")
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/jni/
JniInterface.java 76 public enum Error {
91 Error(int value, int message) {
104 public static Error fromValue(int value) {
113 * @param error The error code, if state is STATE_FAILED.
115 void onConnectionState(State state, Error error);
192 ConnectionListener.Error.OK);
209 private static void reportConnectionStatus(int state, int error) {
211 ConnectionListener.Error.fromValue(error))
    [all...]
  /art/test/003-omnibus-opcodes/src/
Main.java 78 throw new Error();
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
ecmalintrules.py 35 from closure_linter.common import error namespace
52 Error = error.Error
137 # possible encodings or return without an error to protect against
182 # this won't report an error for {number|Array.<string>?}, etc.
195 Reports a MISSING_SPACE error if the token does not begin with a space or
283 # block is undoubtedly a parse error.
325 # TODO(robbyw): Error about no multi-statement lines.
339 # NOTE(user): This is not a perfect check, and will not throw an error
    [all...]
  /external/chromium_org/ash/display/
resolution_notification_controller.cc 43 virtual void Error() OVERRIDE;
69 void ResolutionChangeNotificationDelegate::Error() {
  /external/chromium_org/ash/system/chromeos/bluetooth/
bluetooth_notification_controller.cc 62 virtual void Error() OVERRIDE;
99 void BluetoothPairingNotificationDelegate::Error() {
  /external/chromium_org/base/files/
file.h 97 enum Error {
168 explicit File(Error error_details);
197 Error error_details() const { return error_details_; }
207 // (relative to the start) or -1 in case of error.
211 // given offset. Returns the number of bytes read, or -1 on error. Note that
215 // an error.
223 // platforms. Returns the number of bytes read, or -1 on error.
231 // on error. Note that this function makes a best effort to write all data on
241 // platforms. Returns the number of bytes written, or -1 on error.
281 Error Lock()
    [all...]

Completed in 1717 milliseconds

1 2 3 4 5 6 7 891011>>