Home | History | Annotate | Download | only in cctest

Lines Matching refs:ExpectError

390 static void ExpectError(const char* input,
409 ExpectError("\\", kEndBackslash);
411 ExpectError("(foo", kUnterminatedGroup);
413 ExpectError("(?", kInvalidGroup);
415 ExpectError("[", kUnterminatedCharacterClass);
416 ExpectError("[a-", kUnterminatedCharacterClass);
418 ExpectError("*", kNothingToRepeat);
419 ExpectError("?", kNothingToRepeat);
420 ExpectError("+", kNothingToRepeat);
421 ExpectError
422 ExpectError("{1,2}", kNothingToRepeat);
423 ExpectError("{1,}", kNothingToRepeat);
434 ExpectError(*many_captures, kTooManyCaptures);