Lines Matching defs:file
8 * you may not use this file except in compliance with the License.
20 * \file
86 void deAssertFail (const char* reason, const char* file, int line)
94 callback(reason, file, line);
112 num = deMin32((int)strlen(file), DE_LENGTH_OF_ARRAY(wfile)-1);
114 wfile[i] = file[i];
124 _assert(reason, file, line);
126 fprintf(stderr, "Assertion '%s' failed at %s:%d\n", reason, file, line);
130 __assert_fail(reason, file, (unsigned int)line, "Unknown function");
132 __assert(reason, file, (unsigned int)line, "Unknown function");
134 __assert("Unknown function", file, line, reason);
136 __android_log_print(ANDROID_LOG_ERROR, "delibs", "Assertion '%s' failed at %s:%d", reason, file, line);
137 __assert(file, line, reason);