Lines Matching refs:syntax_error

162 syntax_error(IOSTREAM *in, const char *msg)  in syntax_error()  function
347 return syntax_error(in, "end-of-line expected"); in skip_eol()
372 { return syntax_error(in, "illegal unicode escape"); in read_hex()
388 return syntax_error(in, "newline in uriref"); in get_iri_code()
390 return syntax_error(in, "EOF in uriref"); in get_iri_code()
398 return syntax_error(in, "Illegal character in uriref"); in get_iri_code()
405 default: return syntax_error(in, "illegal escape"); in get_iri_code()
413 return syntax_error(in, "Illegal control character in uriref"); in get_iri_code()
461 return syntax_error(in, "invalid nodeID"); in read_node_id()
493 return syntax_error(in, "invalid nodeID"); in read_node_id()
507 return syntax_error(in, "language tag must start with a-zA-Z"); in read_lan()
524 return syntax_error(in, "Illegal language tag"); in read_lan()
558 return syntax_error(in, "subject expected"); in read_subject()
562 return syntax_error(in, "subject not followed by whitespace"); in read_subject()
578 return syntax_error(in, "predicate expected"); in read_predicate()
582 return syntax_error(in, "predicate not followed by whitespace"); in read_predicate()
598 return syntax_error(in, "graph expected"); in read_graph()
618 return syntax_error(in, "newline in string"); in get_string_code()
633 default: return syntax_error(in, "illegal escape"); in get_string_code()
705 return syntax_error(in, "datatype uriref expected"); in read_literal()
709 return syntax_error(in, "^ expected"); in read_literal()
727 return syntax_error(in, "EOF in string"); in read_literal()
731 return syntax_error(in, "newline in string"); in read_literal()
763 return syntax_error(in, "object expected"); in read_object()
778 return syntax_error(in, "fullstop (.) expected"); in check_full_stop()
885 MKFUNCTOR(syntax_error, 1); in install_ntriples()