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

References

tools/polly/lib/External/isl/isl_stream.c
  961 		tok = isl_stream_next_token(s);
  962 		if (!tok) {
  967 		if (tok->type == ':') {
  968 			isl_token_free(tok);
  973 		isl_stream_error(s, tok, "expecting ':'");
  974 		isl_stream_push_token(s, tok);
  984 		tok = isl_stream_next_token(s);
  985 		if (!tok)
  987 		indent = tok->col - 1;
  988 		isl_stream_push_token(s, tok);
 1002 		tok = isl_stream_next_token(s);
 1003 		if (!tok) {
 1008 		if (tok->type == '-') {
 1009 			isl_token_free(tok);
 1014 		isl_stream_error(s, tok, "expecting '-'");
 1015 		isl_stream_push_token(s, tok);
 1020 		tok = isl_stream_next_token(s);
 1021 		if (!tok)
 1023 		indent = tok->col - 1;
 1024 		if (indent < get_yaml_indent(s) || tok->type != '-') {
 1025 			isl_stream_push_token(s, tok);
 1028 		isl_token_free(tok);