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

References

lib/Support/regcomp.c
  404 		while (MORE() && (c = PEEK()) != '|' && c != stop)
  452 		REQUIRE(MORE(), REG_EPAREN);
  508 		REQUIRE(MORE(), REG_EESCAPE);
  540 		REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT);
  547 	if (!MORE())
  590 			while (MORE() && PEEK() != '}')
  592 			REQUIRE(MORE(), REG_EBRACE);
  598 	if (!MORE())
  613 	REQUIRE(MORE(), REG_EMPTY);
  614 	while (MORE())
  642 	while (MORE() && !SEETWO(end1, end2)) {
  676 		REQUIRE(MORE(), REG_EESCAPE);
  699 		if (MORE() && !SEETWO('\\', ')'))
  752 			if (MORE() && isdigit((uch)PEEK())) {
  761 			while (MORE() && !SEETWO('\\', '}'))
  763 			REQUIRE(MORE(), REG_EBRACE);
  781 	while (MORE() && isdigit((uch)PEEK()) && count <= DUPMAX) {
  825 	while (MORE() && PEEK() != ']' && !SEETWO('-', ']'))
  883 	switch ((MORE()) ? PEEK() : '\0') {
  899 		REQUIRE(MORE(), REG_EBRACK);
  903 		REQUIRE(MORE(), REG_EBRACK);
  908 		REQUIRE(MORE(), REG_EBRACK);
  912 		REQUIRE(MORE(), REG_EBRACK);
  947 	while (MORE() && isalpha((uch)PEEK()))
  988 	REQUIRE(MORE(), REG_EBRACK);
 1009 	while (MORE() && !SEETWO(endc, ']'))
 1011 	if (!MORE()) {