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

/external/llvm/lib/Support/
H A DDynamicLibrary.cpp57 std::string *errMsg) {
62 if (errMsg) *errMsg = dlerror();
96 std::string *errMsg) {
97 if (errMsg) *errMsg = "dlopen() not supported on this platform";
56 getPermanentLibrary(const char *filename, std::string *errMsg) argument
95 getPermanentLibrary(const char *filename, std::string *errMsg) argument
/external/llvm/unittests/Analysis/
H A DCFGTest.cpp36 std::string errMsg; local
37 raw_string_ostream os(errMsg);
/external/icu/icu4c/source/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 Dtzfmttst.cpp840 UnicodeString errMsg; local
845 errMsg = (UnicodeString)"Time zone ID: " + outID + " - expected: " + DATA[i].expected;
847 errMsg = (UnicodeString)"Parsed pos: " + pos.getIndex() + " - expected: " + DATA[i].outPos;
849 errMsg = (UnicodeString)"Time type: " + ttype + " - expected: " + DATA[i].timeType;
857 if (errMsg.length() > 0) {
858 errln((UnicodeString)"Fail: " + errMsg + " [text=" + DATA[i].text + ", pos=" + DATA[i].inPos + ", style=" + DATA[i].style + "]");
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.cpp648 UnicodeString expected, const char* errMsg)
657 dataerrln( "%s error while formatting with ErrorCode as %s" ,errMsg, u_errorName(status) );
661 UnicodeString err = UnicodeString(errMsg);
668 UnicodeString pattern ,Locale locale ,UErrorCode &status , char* errMsg)
673 dataerrln( "%s error while constructing with ErrorCode as %s" ,errMsg, u_errorName(status) );
646 internalFormat(MessageFormat* msgFmt , Formattable* args , int32_t numOfArgs , UnicodeString expected, const char* errMsg) argument
667 internalCreate( UnicodeString pattern ,Locale locale ,UErrorCode &status , char* errMsg) argument
/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/LTO/
H A DLTOCodeGenerator.cpp200 std::string &errMsg) {
201 if (!determineTarget(errMsg))
211 errMsg = "could not open bitcode file for writing: ";
212 errMsg += path;
222 errMsg = "could not write bitcode file: ";
223 errMsg += path;
233 std::string &errMsg) {
240 errMsg = EC.message();
247 bool genResult = compileOptimized(objFile.os(), errMsg);
267 std::string &errMsg) {
199 writeMergedModules(const char *path, std::string &errMsg) argument
232 compileOptimizedToFile(const char **name, std::string &errMsg) argument
266 compileOptimized(size_t *length, std::string &errMsg) argument
293 compile_to_file(const char **name, bool disableInline, bool disableGVNLoadPRE, bool disableVectorization, std::string &errMsg) argument
305 compile(size_t *length, bool disableInline, bool disableGVNLoadPRE, bool disableVectorization, std::string &errMsg) argument
317 determineTarget(std::string &errMsg) argument
528 optimize(bool DisableInline, bool DisableGVNLoadPRE, bool DisableVectorization, std::string &errMsg) argument
569 compileOptimized(raw_pwrite_stream &out, std::string &errMsg) argument
[all...]
H A DLTOModule.cpp94 std::string &errMsg) {
98 errMsg = EC.message();
102 return makeLTOModule(Buffer->getMemBufferRef(), options, errMsg,
108 std::string &errMsg) {
109 return createFromOpenFileSlice(fd, path, size, 0, options, errMsg);
115 std::string &errMsg) {
119 errMsg = EC.message();
123 return makeLTOModule(Buffer->getMemBufferRef(), options, errMsg,
129 std::string &errMsg, StringRef path) {
130 return createInContext(mem, length, options, errMsg, pat
93 createFromFile(const char *path, TargetOptions options, std::string &errMsg) argument
106 createFromOpenFile(int fd, const char *path, size_t size, TargetOptions options, std::string &errMsg) argument
112 createFromOpenFileSlice(int fd, const char *path, size_t map_size, off_t offset, TargetOptions options, std::string &errMsg) argument
127 createFromBuffer(const void *mem, size_t length, TargetOptions options, std::string &errMsg, StringRef path) argument
134 createInLocalContext(const void *mem, size_t length, TargetOptions options, std::string &errMsg, StringRef path) argument
141 createInContext(const void *mem, size_t length, TargetOptions options, std::string &errMsg, StringRef path, LLVMContext *Context) argument
189 makeLTOModule(MemoryBufferRef Buffer, TargetOptions options, std::string &errMsg, LLVMContext *Context) argument
580 parseSymbols(std::string &errMsg) argument
[all...]
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITCAPITest.cpp53 static LLVMBool roundTripFinalizeMemory(void *object, char **errMsg) { argument
58 *errMsg = LLVMCreateMessage(errMsgString.c_str());
/external/mesa3d/src/mesa/main/
H A Duniform_query.cpp1041 char *errMsg, size_t errMsgLength)
1071 _mesa_snprintf(errMsg, errMsgLength,
1040 _mesa_sampler_uniforms_are_valid(const struct gl_shader_program *shProg, char *errMsg, size_t errMsgLength) argument
H A Dshaderapi.c945 * \param errMsg returns error message if validation fails.
946 * \return GL_TRUE if valid, GL_FALSE if invalid (and set errMsg)
950 char *errMsg)
976 if (!_mesa_sampler_uniforms_are_valid(shProg, errMsg, 100))
990 char errMsg[100] = ""; local
997 shProg->Validated = validate_shader_program(shProg, errMsg);
1003 shProg->InfoLog = ralloc_strdup(shProg, errMsg);
949 validate_shader_program(const struct gl_shader_program *shProg, char *errMsg) argument
/external/deqp/execserver/tools/
H A DxsTest.cpp284 string errMsg = deProcess_getLastError(serverProc); local
286 XS_FAIL(errMsg.c_str());
/external/deqp/modules/gles3/functional/
H A Des3fFboRenderTest.cpp242 std::string errMsg = "Format not supported, requires " local
245 throw tcu::NotSupportedError(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/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlogback-core-0.9.8-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF ch/ ch/qos/ ch/qos/logback/ ch/qos/logback/core/ ...
H A Dlog4j-1.3alpha-8.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...
H A Dlogback-classic-0.9.8-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF ch/ ch/qos/ ch/qos/logback/ ch/qos/logback/classic/ ...
/external/jetty/lib/
H A Djavax.servlet-3.0.0.v201112011016.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/sqlite/dist/orig/
H A Dsqlite3.c52754 StrAccum errMsg; /* Accumulate the error message text here */ member in struct:IntegrityCk
94827 StrAccum errMsg; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c52772 StrAccum errMsg; /* Accumulate the error message text here */ member in struct:IntegrityCk
94845 StrAccum errMsg; local
[all...]

Completed in 1048 milliseconds