Searched refs:errMsg (Results 1 - 25 of 30) sorted by relevance

12

/external/srec/srec/include/
H A Derrhndl.h33 char* errMsg,
/external/llvm/tools/lto/
H A DLTOCodeGenerator.h42 bool addModule(struct LTOModule*, std::string &errMsg);
43 bool setDebugInfo(lto_debug_model, std::string &errMsg);
44 bool setCodePICModel(lto_codegen_model, std::string &errMsg);
52 bool writeMergedModules(const char *path, std::string &errMsg);
53 bool compile_to_file(const char **name, std::string &errMsg);
54 const void *compile(size_t *length, std::string &errMsg);
58 bool generateObjectFile(llvm::raw_ostream &out, std::string &errMsg);
64 bool determineTarget(std::string &errMsg);
H A DLTOCodeGenerator.cpp85 bool LTOCodeGenerator::addModule(LTOModule* mod, std::string& errMsg) { argument
86 bool ret = _linker.LinkInModule(mod->getLLVVMModule(), &errMsg);
96 std::string& errMsg) {
110 std::string& errMsg) {
122 std::string &errMsg) {
123 if (determineTarget(errMsg))
134 errMsg = "could not open bitcode file for writing: ";
135 errMsg += path;
144 errMsg = "could not write bitcode file: ";
145 errMsg
95 setDebugInfo(lto_debug_model debug, std::string& errMsg) argument
109 setCodePICModel(lto_codegen_model model, std::string& errMsg) argument
121 writeMergedModules(const char *path, std::string &errMsg) argument
154 compile_to_file(const char** name, std::string& errMsg) argument
190 compile(size_t* length, std::string& errMsg) argument
217 determineTarget(std::string& errMsg) argument
343 generateObjectFile(raw_ostream &out, std::string &errMsg) argument
[all...]
H A DLTOModule.h81 std::string &errMsg);
83 size_t size, std::string &errMsg);
88 std::string& errMsg);
90 std::string &errMsg);
137 bool parseSymbols(std::string &errMsg);
154 bool addAsmGlobalSymbols(std::string &errMsg);
185 std::string &errMsg);
H A DLTOModule.cpp202 LTOModule *LTOModule::makeLTOModule(const char *path, std::string &errMsg) { argument
205 errMsg = ec.message();
208 return makeLTOModule(buffer.take(), errMsg);
212 size_t size, std::string &errMsg) {
213 return makeLTOModule(fd, path, size, size, 0, errMsg);
220 std::string &errMsg) {
224 errMsg = ec.message();
227 return makeLTOModule(buffer.take(), errMsg);
231 std::string &errMsg) {
235 return makeLTOModule(buffer.take(), errMsg);
211 makeLTOModule(int fd, const char *path, size_t size, std::string &errMsg) argument
216 makeLTOModule(int fd, const char *path, size_t file_size, size_t map_size, off_t offset, std::string &errMsg) argument
230 makeLTOModule(const void *mem, size_t length, std::string &errMsg) argument
263 makeLTOModule(MemoryBuffer *buffer, std::string &errMsg) argument
794 addAsmGlobalSymbols(std::string &errMsg) argument
851 parseSymbols(std::string &errMsg) argument
[all...]
/external/webkit/Source/JavaScriptCore/parser/
H A DParser.cpp32 void Parser::parse(JSGlobalData* globalData, FunctionParameters* parameters, JSParserStrictness strictness, JSParserMode mode, int* errLine, UString* errMsg) argument
42 if (!errMsg)
43 errMsg = &defaultErrMsg;
46 *errMsg = UString();
58 *errMsg = parseError ? parseError : "Parse error";
H A DParser.h62 void parse(JSGlobalData*, FunctionParameters*, JSParserStrictness strictness, JSParserMode mode, int* errLine, UString* errMsg);
85 UString errMsg; local
90 parse(&lexicalGlobalObject->globalData(), parameters, strictness, ParsedNode::isFunctionNode ? JSParseFunctionCode : JSParseProgramCode, &errLine, &errMsg);
113 *exception = addErrorInfo(&lexicalGlobalObject->globalData(), createSyntaxError(lexicalGlobalObject, errMsg), errLine, source);
124 debugger->sourceParsed(debuggerExecState, source.provider(), errLine, errMsg);
/external/llvm/lib/Support/
H A DDynamicLibrary.cpp74 std::string *errMsg) {
79 if (errMsg) *errMsg = dlerror();
113 std::string *errMsg) {
114 if (errMsg) *errMsg = "dlopen() not supported on this platform";
73 getPermanentLibrary(const char *filename, std::string *errMsg) argument
112 getPermanentLibrary(const char *filename, std::string *errMsg) argument
/external/icu4c/test/intltest/
H A Dtmsgfmt.h75 UnicodeString expected, const char* errMsg);
81 UnicodeString pattern ,Locale locale , UErrorCode& err, char* errMsg);
H A Dtsnmfmt.cpp290 UnicodeString errMsg; local
294 errMsg.truncate(0); // if non-empty, we failed this iteration
303 errMsg = "**** FAIL: Parse of " + prettify(string[i-1]) + " failed.";
315 errMsg = ("**** FAIL: Parse of " + prettify(string[i-1])
329 errMsg = ("**** FAIL: Numeric mismatch after match.");
336 errMsg = ("**** FAIL: String mismatch after match.");
348 errMsg = ("**** FAIL: No string and/or number match within 2 iterations.");
351 if (errMsg.length() != 0)
358 errln(errMsg);
H A Dtzregts.cpp817 UnicodeString errMsg; local
819 errMsg = (UnicodeString(") threw ") + u_errorName(status));
822 errMsg = UnicodeString(") accepts invalid args", "");
827 errMsg); local
H A Dtmsgfmt.cpp650 UnicodeString expected, const char* errMsg)
659 dataerrln( "%serror while formatting with ErrorCode as %s" ,errMsg, u_errorName(status) );
663 UnicodeString err = UnicodeString(errMsg);
670 UnicodeString pattern ,Locale locale ,UErrorCode &status , char* errMsg)
675 dataerrln( "%serror while constructing with ErrorCode as %s" ,errMsg, u_errorName(status) );
648 internalFormat(MessageFormat* msgFmt , Formattable* args , int32_t numOfArgs , UnicodeString expected, const char* errMsg) argument
669 internalCreate( UnicodeString pattern ,Locale locale ,UErrorCode &status , char* errMsg) argument
/external/jsilver/src/org/clearsilver/
H A DFactoryLoader.java112 String errMsg = "Unable to load default ClearsilverFactory class: \"" +
114 logger.log(Level.SEVERE, errMsg, e);
115 throw new RuntimeException(errMsg, e);
/external/llvm/include/llvm/Support/
H A DDynamicLibrary.h62 /// instance on failure (see isValid()). \p *errMsg will only be modified
68 std::string *errMsg = 0);
/external/llvm/unittests/Bitcode/
H A DBitReaderTest.cpp57 std::string errMsg; local
58 Module *m = getLazyBitcodeModule(Buffer, getGlobalContext(), &errMsg);
/external/llvm/include/llvm/Target/
H A DTargetData.h129 std::string errMsg = parseSpecifier(TargetDescription, this); local
130 assert(errMsg == "" && "Invalid target data layout string.");
131 (void)errMsg;
/external/clang/lib/ARCMigrate/
H A DFileRemapper.cpp127 std::string errMsg;
129 llvm::raw_fd_ostream infoOut(infoFile.c_str(), errMsg,
131 if (!errMsg.empty())
132 return report(errMsg, Diag);
192 std::string errMsg;
193 llvm::raw_fd_ostream Out(origFE->getName(), errMsg,
195 if (!errMsg.empty())
196 return report(errMsg, Diag);
/external/llvm/lib/Support/Windows/
H A DDynamicLibrary.inc73 std::string *errMsg) {
90 MakeErrMsg(errMsg, std::string(filename) + ": Can't open : ");
/external/llvm/unittests/ExecutionEngine/JIT/
H A DMultiJITTest.cpp27 std::string errMsg; local
28 raw_string_ostream os(errMsg);
H A DJITTest.cpp197 std::string errMsg; local
198 raw_string_ostream os(errMsg);
697 std::string errMsg; local
698 M = getLazyBitcodeModule(BitcodeBuffer, Context, &errMsg);
700 ADD_FAILURE() << errMsg;
706 .setErrorStr(&errMsg)
709 ADD_FAILURE() << errMsg;
/external/jmonkeyengine/engine/src/core/com/jme3/app/
H A DApplication.java520 public void handleError(String errMsg, Throwable t){ argument
521 logger.log(Level.SEVERE, errMsg, t);
/external/llvm/lib/Target/
H A DTargetData.cpp308 std::string errMsg = parseSpecifier(M->getDataLayout(), this); local
309 assert(errMsg == "" && "Module M has malformed target data layout string.");
310 (void)errMsg;
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DRedundentExprEliminator.java1246 String errMsg;
1249 errMsg = "Programmer's assertion: expr1 not an iterator: "+
1254 errMsg = "Programmer's assertion: expr1 not an iterator: "+
1257 throw new RuntimeException(errMsg + ", "+
/external/webrtc/src/modules/audio_processing/test/
H A Dapmtest.m141 [status, errMsg] = mkdir(outpathtest);
143 error(errMsg);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Djavax.servlet_2.5.0.v200910301333.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 504 milliseconds

12