Lines Matching refs:error
88 error(ERROR, in process()
98 error(ERROR, "Unterminated #if/#ifdef/#ifndef"); in process()
134 error(ERROR, "Unidentifiable control line"); in control()
139 error(WARNING, "Unknown preprocessor control %t", tp); in control()
157 error(FATAL, "#if too deeply nested"); in control()
181 error(ERROR, "Syntax error in #undef"); in control()
191 error(INFO, "Macro deletion of %s(%r)", np->name, np->ap); in control()
193 error(INFO, "Macro deletion of %s", np->name); in control()
208 error(FATAL, "#if too deeply nested"); in control()
220 error(ERROR, "#elif with no #if"); in control()
224 error(ERROR, "#elif after #else"); in control()
242 error(ERROR, "#else with no #if"); in control()
246 error(ERROR, "#else after #else"); in control()
248 error(ERROR, "Syntax error in #else"); in control()
256 error(ERROR, "#endif with no #if"); in control()
262 error(WARNING, "Syntax error in #endif"); in control()
267 error(WARNING, "#error directive: %r", trp); in control()
279 error(ERROR, "Syntax error in #line"); in control()
284 error(WARNING, "#line specifies number out of range"); in control()
291 error(ERROR, "Bad syntax for control line"); in control()
314 error(ERROR, "Preprocessor control `%t' not yet implemented", tp); in control()
327 error(FATAL, "Out of memory from malloc"); in domalloc()
338 error(enum errtype type, char *string,...) in error() function