reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/polly/lib/External/isl/isl_stream.c
  135 	int line = tok ? tok->line : s->line;
  135 	int line = tok ? tok->line : s->line;
  136 	int col = tok ? tok->col : s->col;
  136 	int col = tok ? tok->col : s->col;
  138 	if (tok) {
  139 		if (tok->type < 256)
  140 			fprintf(stderr, "got '%c'\n", tok->type);
  141 		else if (tok->type == ISL_TOKEN_IDENT)
  142 			fprintf(stderr, "got ident '%s'\n", tok->u.s);
  143 		else if (tok->is_keyword)
  144 			fprintf(stderr, "got keyword '%s'\n", tok->u.s);
  145 		else if (tok->type == ISL_TOKEN_VALUE) {
  147 			isl_int_print(stderr, tok->u.v, 0);
  149 		} else if (tok->type == ISL_TOKEN_MAP) {
  153 			p = isl_printer_print_map(p, tok->u.map);
  156 		} else if (tok->type == ISL_TOKEN_AFF) {
  160 			p = isl_printer_print_pw_aff(p, tok->u.pwaff);
  163 		} else if (tok->u.s)
  164 			fprintf(stderr, "got token '%s'\n", tok->u.s);
  166 			fprintf(stderr, "got token type %d\n", tok->type);