Lines Matching defs:warning

124     def warning(self,msg,*args,**kwargs):
1346 # a warning about unused precedence rules.
2852 self.log.warning("%s:%d: Function %s redefined. Previously defined on line %d", filename,linen,name,prev)
2919 self.log.warning("Token '%s' multiply defined", n)
2995 self.log.warning("%s:%d: No documentation string specified in function '%s' (ignored)",file,line,func.__name__)
3017 self.log.warning("'%s' not defined as a function", n)
3023 self.log.warning("%s:%d: Possible grammar rule '%s' defined without p_ prefix",
3082 errorlog.warning("There was a problem loading the table file: %s", repr(e))
3085 errorlog.warning(str(e))
3105 errorlog.warning("no p_error() function is defined")
3116 errorlog.warning("%s",str(e))
3154 errorlog.warning("Token '%s' defined, but not used", term)
3168 errorlog.warning("%s:%d: Rule '%s' defined, but not used", prod.file, prod.line, prod.name)
3171 errorlog.warning("There is 1 unused token")
3173 errorlog.warning("There are %d unused tokens", len(unused_terminals))
3176 errorlog.warning("There is 1 unused rule")
3178 errorlog.warning("There are %d unused rules", len(unused_rules))
3201 errorlog.warning("Symbol '%s' is unreachable",u)
3227 errorlog.warning("1 shift/reduce conflict")
3229 errorlog.warning("%d shift/reduce conflicts", num_sr)
3233 errorlog.warning("1 reduce/reduce conflict")
3235 errorlog.warning("%d reduce/reduce conflicts", num_rr)
3239 debuglog.warning("")
3240 debuglog.warning("Conflicts:")
3241 debuglog.warning("")
3244 debuglog.warning("shift/reduce conflict for %s in state %d resolved as %s", tok, state, resolution)
3250 debuglog.warning("reduce/reduce conflict in state %d resolved using rule (%s)", state, rule)
3251 debuglog.warning("rejected rule (%s) in state %d", rejected,state)
3252 errorlog.warning("reduce/reduce conflict in state %d resolved using rule (%s)", state, rule)
3253 errorlog.warning("rejected rule (%s) in state %d", rejected, state)
3259 debuglog.warning("Rule (%s) is never reduced", rejected)
3260 errorlog.warning("Rule (%s) is never reduced", rejected)