Searched defs:errMsg (Results 1 - 20 of 20) sorted by relevance

/external/llvm/unittests/Bitcode/
H A DBitReaderTest.cpp57 std::string errMsg; local
58 Module *m = getLazyBitcodeModule(Buffer, getGlobalContext(), &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/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/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/clang/lib/ARCMigrate/
H A DPlistReporter.cpp118 std::string errMsg; local
119 llvm::raw_fd_ostream o(outPath.c_str(), errMsg);
120 if (!errMsg.empty()) {
/external/icu4c/test/intltest/
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 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
H A Dtzregts.cpp817 UnicodeString errMsg; local
819 errMsg = (UnicodeString(") threw ") + u_errorName(status));
822 errMsg = UnicodeString(") accepts invalid args", "");
827 errMsg); local
/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/llvm/tools/lto/
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.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/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/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 ...
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/sqlite/dist/orig/
H A Dsqlite3.c49081 StrAccum errMsg; /* Accumulate the error message text here */ member in struct:IntegrityCk
90330 StrAccum errMsg; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c49094 StrAccum errMsg; /* Accumulate the error message text here */ member in struct:IntegrityCk
90343 StrAccum errMsg; local
[all...]

Completed in 1003 milliseconds