| /external/clang/unittests/Tooling/ |
| CompilationDatabaseTest.cpp | 27 << "Expected an error because of: " << Explanation.str(); 141 llvm::raw_string_ostream ES(Error); 146 std::string Error; 174 EXPECT_EQ("Path is ambiguous", Error); 202 EXPECT_EQ("Cannot resolve relative paths", Error);
|
| /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/execution/ |
| ExecutionUtils.java | 259 throw new Error(message, e);
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
| codegen.ml | 7 exception Error of string 19 | Not_found -> raise (Error "unknown variable name")) 32 | _ -> raise (Error "invalid binary operator") 39 | None -> raise (Error "unknown function referenced") 43 (* If argument mismatch error. *) 45 raise (Error "incorrect # arguments passed"); 129 * don't allow an error *) 185 raise (Error "redefinition of function"); 189 raise (Error "redefinition of function with different # args");
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
| codegen.ml | 7 exception Error of string 19 | Not_found -> raise (Error "unknown variable name")) 26 | None -> raise (Error "unknown unary operator") 48 | None -> raise (Error "binary operator not found!") 57 | None -> raise (Error "unknown function referenced") 61 (* If argument mismatch error. *) 63 raise (Error "incorrect # arguments passed"); 147 * don't allow an error *) 203 raise (Error "redefinition of function"); 207 raise (Error "redefinition of function with different # args") [all...] |
| /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/openfst/src/include/fst/extensions/far/ |
| stlist.h | 68 FSTERROR() << "STListWriter::STListWriter: error writing to file: " 92 bool Error() const { return error_; } 164 FSTERROR() << "STListReader: error reading file: " << sources_[i]; 173 FSTERROR() << "STListReader: error reading entry for key: " 222 FSTERROR() << "STListReader: error reading file: " 236 FSTERROR() << "STListReader: error reading entry for key: " 251 bool Error() const { return error_; } 276 LOG(ERROR) << "ReadSTListHeader: reading header not supported on stdin"; 284 LOG(ERROR) << "ReadSTListHeader: wrong file type: " << filename; 288 LOG(ERROR) << "ReadSTListHeader: wrong file version: " << filename [all...] |
| /external/openfst/src/include/fst/ |
| shortest-distance.h | 70 // The Error() method returns true if an error was encountered. 93 bool Error() const { return error_; } 233 // Member() is false if an error was encountered. 252 if (sd_state.Error()) { 269 // Member() is false if an error was encountered. 321 // Returns a weight such that Member() is false if an error was encountered.
|
| state-reachable.h | 124 bool Error() const { return error_; } 152 if (reach_visitor.Error()) error_ = true; 185 bool Error() const { return error_; }
|
| state-table.h | 209 // // Return true if error encountered 210 // bool Error() const; 282 bool Error() const { return false; } 367 bool Error() const { return false; } 406 bool Error() const { return error_; } 448 bool Error() const { return error_; } 473 bool Error() const { return false; }
|
| /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 { 59 public CommandException(Error e) { 69 return new CommandException(Error.INVALID_RESPONSE); 71 return new CommandException(Error.RADIO_NOT_AVAILABLE); 73 return new CommandException(Error.GENERIC_FAILURE); 75 return new CommandException(Error.PASSWORD_INCORRECT); 77 return new CommandException(Error.SIM_PIN2); 79 return new CommandException(Error.SIM_PUK2); 81 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...] |