HomeSort by relevance Sort by last modified time
    Searched defs:Error (Results 276 - 300 of 500) sorted by null

<<11121314151617181920

  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 241 // Set the error state and record an error string.
242 bool Error(const Twine &Msg) {
389 // Is the linker in an error state?
392 // Mark the error condition as handled and continue.
395 // Get the error message.
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 41 std::string Error;
42 const Target *TheTarget = TargetRegistry::lookupTarget(Triple, Error);
  /external/llvm/lib/Target/
TargetMachineC.cpp 72 std::string Error;
74 *T = wrap(TargetRegistry::lookupTarget(TripleStr, Error));
78 *ErrorMessage = strdup(Error.c_str());
190 std::string error; local
195 error = "No DataLayout in TargetMachine";
196 *ErrorMessage = strdup(error.c_str());
212 error = "TargetMachine can't emit a file of this type";
213 *ErrorMessage = strdup(error.c_str());
225 std::string error; local
226 raw_fd_ostream dest(Filename, error, sys::fs::F_None)
    [all...]
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 57 std::string &Error) override;
64 std::string &Error) {
77 errs() << BD.getToolName() << ": Error reading bitcode file '"
115 std::string &Error) override {
185 std::string &Error) override {
258 std::string &Error) override {
367 std::string &Error) override {
437 std::string &Error) {
480 ReduceCrashingGlobalVariables(BD, TestFn).reduceList(GVs, Error);
481 if (!Error.empty()
    [all...]
  /external/llvm/tools/gold/
gold-plugin.cpp 296 std::string Error;
298 LTOModule::createFromBuffer(view, file->filesize, TargetOpts, Error);
302 Error.c_str());
387 std::string Error;
388 if (!CodeGen->addModule(M, Error)) {
389 (*message)(LDPL_ERROR, "Error linking module: %s", Error.c_str());
418 std::string Error;
419 api_file.reset(new raw_fd_ostream("apifile.txt", Error, sys::fs::F_None));
420 if (!Error.empty()
    [all...]
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 316 /// Error - All bitcode analysis errors go through this function, making this a
318 static bool Error(const std::string &Err) {
338 return Error("Malformed BlockInfoBlock");
346 return Error("Malformed block record");
368 return Error("Premature end of bitstream");
376 case BitstreamEntry::Error:
377 return Error("malformed bitcode file");
484 return Error("Error reading '" + InputFilename + "': " + EC.message());
488 return Error("Bitcode stream should be a multiple of 4 bytes in length")
    [all...]
  /external/llvm/tools/macho-dump/
macho-dump.cpp 42 static int Error(const Twine &Msg) {
43 Message("error", Msg);
408 return Error("unable to read input: '" + EC.message() + "'");
413 return Error("Not a MachO object");
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITCAPITest.cpp 154 Error = nullptr;
178 LLVMVerifyModule(Module, LLVMAbortProcessAction, &Error);
179 LLVMDisposeMessage(Error);
208 LLVMVerifyModule(Module, LLVMAbortProcessAction, &Error);
209 LLVMDisposeMessage(Error);
235 LLVMVerifyModule(Module, LLVMAbortProcessAction, &Error);
236 LLVMDisposeMessage(Error);
255 LLVMVerifyModule(Module, LLVMAbortProcessAction, &Error);
256 LLVMDisposeMessage(Error);
282 sizeof(Options), &Error));
    [all...]
MCJITTestBase.h 318 std::string Error;
322 .setErrorStr(&Error)
332 assert(TheJIT.get() != NULL && "error creating MCJIT with EngineBuilder");
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler.h 49 unsigned Error:1;
92 * It checks whether \p cond is true. If not, an internal compiler error is
  /external/opencv/cvaux/src/
cvface.cpp 191 lpFaceData->Error = (double)(LeftSquare - RightSquare)*(double)(LeftSquare - RightSquare)/((double)(LeftSquare + RightSquare)*(LeftSquare + RightSquare)) +
204 double Error = MAX_ERROR;
259 Error = Data.Error/(im + jl + kr);
261 Error = MAX_ERROR;
263 if (CurError > Error)
265 CurError = Error;
293 lpFaceData->Error = CurError;
  /external/openfst/src/include/fst/extensions/far/
sttable.h 60 FSTERROR() << "STTableWriter::STTableWriter: error writing to file: "
68 LOG(ERROR) << "STTableWriter: writing to standard out unsupported.";
89 bool Error() const { return error_; }
155 FSTERROR() << "STTableReader::STTableReader: error reading file: "
175 LOG(ERROR) << "STTableReader: reading from standard in not supported";
209 FSTERROR() << "STTableReader: error reading file: "
230 bool Error() const { return error_; }
283 FSTERROR() << "STTableReader: error reading file: " << sources_[i];
305 FSTERROR() << "STTableReader: error reading entry for key: "
339 LOG(ERROR) << "ReadSTTableHeader: wrong file type: " << filename
    [all...]
  /external/protobuf/python/google/protobuf/
descriptor.py 48 class Error(Exception):
49 """Base error for this module."""
148 Error: If self couldnt be serialized, due to to few constructor arguments.
156 raise Error('Descriptor does not contain serialization.')
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
FileTransfer.java 55 private Error error; field in class:FileTransfer
133 * of a an error, or the transfer completed successfully.
136 * because of a an error, or the transfer completed successfully.
139 return status == Status.cancelled || status == Status.error
152 protected void setError(Error type) {
153 this.error = type;
157 * When {@link #getStatus()} returns that there was an {@link Status#error}
158 * during the transfer, the type of error can be retrieved through this
161 * @return Returns the type of error that occurred if one has occurred.
253 error("Error"), enum constant in enum:FileTransfer.Status
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
DiagnosticEngine.h 40 Error,
  /frameworks/compile/slang/
slang.cpp 116 std::string* Error,
118 slangAssert((OutputFile != NULL) && (Error != NULL) &&
122 llvm::sys::path::parent_path(OutputFile), Error)) {
124 new llvm::tool_output_file(OutputFile, *Error, Flags);
129 // Report error here.
131 << OutputFile << *Error;
333 std::string Error;
340 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_Text, &Error,
350 &Error, mDiagEngine);
358 if (!Error.empty()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ConfigParser.py 52 The filename defaults to fp.name; it is only used in error
112 class Error(Exception):
139 class NoSectionError(Error):
143 Error.__init__(self, 'No section: %r' % (section,))
147 class DuplicateSectionError(Error):
151 Error.__init__(self, "Section %r already exists" % section)
155 class NoOptionError(Error):
159 Error.__init__(self, "No option %r in section: %r" %
165 class InterpolationError(Error):
169 Error.__init__(self, msg
    [all...]
csv.py 8 from _csv import Error, __version__, writer, reader, register_dialect, \
21 "Error", "Dialect", "__doc__", "excel", "excel_tab",
55 raise Error(str(e))
184 raise Error, "Could not determine delimiter"
locale.py 35 __all__ = ["getlocale", "getdefaultlocale", "getpreferredencoding", "Error",
57 Error = ValueError
88 raise Error, '_locale emulation only supports "C" locale'
583 except Error:
    [all...]
shutil.py 26 "copytree", "move", "rmtree", "Error", "SpecialFileError",
31 class Error(EnvironmentError):
69 raise Error("`%s` and `%s` are the same file" % (src, dst))
149 If exception(s) occur, an Error is raised with a list of reasons.
193 # catch the Error from the recursive copytree so that we can
195 except Error, err:
208 raise Error, errors
214 is set, it is called to handle the error with arguments (func,
238 except os.error, err:
244 except os.error
    [all...]
sunau.py 58 getmark(id) -- raises an error since the mark does not
131 class Error(Exception):
169 raise Error, 'bad magic number'
172 raise Error, 'header size too small'
174 raise Error, 'header size ridiculously large'
180 raise Error, 'encoding not (yet) supported'
194 raise Error, 'unknown encoding'
251 raise Error, 'no marks'
274 raise Error, 'position not in range'
308 raise Error, 'cannot change parameters after starting to write
    [all...]
wave.py 25 getmark(id) -- raises an error since the mark does not
76 __all__ = ["open", "openfp", "Error"]
78 class Error(Exception):
130 raise Error, 'file does not start with RIFF id'
132 raise Error, 'not a WAVE file'
147 raise Error, 'data chunk before fmt chunk'
154 raise Error, 'fmt chunk and/or data chunk missing'
217 raise Error, 'no marks'
221 raise Error, 'position not in range'
269 raise Error, 'unknown format: %r' % (wFormatTag,
    [all...]
webbrowser.py 12 __all__ = ["Error", "open", "open_new", "open_new_tab", "get", "register"]
14 class Error(Exception):
52 raise Error("could not locate runnable browser")
270 raise Error("Bad 'new' parameter to open(); " +
422 except socket.error:
545 # [Error 22] No application is associated with the specified
686 except getopt.error, msg:
xdrlib.py 13 __all__ = ["Error", "Packer", "Unpacker", "ConversionError"]
16 class Error(Exception):
19 except xdrlib.Error, var:
20 # var has the Error instance for the exception
34 class ConversionError(Error):
73 except struct.error, msg:
78 except struct.error, msg:
139 raise Error('unextracted data remains')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aetools.py 38 Error = 'aetools.Error'
63 except AE.Error, msg:
71 except AE.Error:
79 except AE.Error:
92 except (AE.Error, MacOS.Error), msg:
132 """Create the 'best' argument for a raise MacOS.Error"""
195 except AE.Error:
200 except AE.Error
    [all...]

Completed in 1572 milliseconds

<<11121314151617181920