Home | History | Annotate | Download | only in Sema

Lines Matching defs:Expected

227       // will produce the ambiguity, or will complain that it expected
2493 assert(PrevDecl && "Expected a non-null Decl");
5618 // declaration against the expected type for the builtin.
5681 QualType Expected[] = { Context.IntTy, CharPP, CharPP, CharPP };
5688 if (Context.hasSameUnqualifiedType(AT, Expected[i]))
5690 else if (Expected[i] == CharPP) {
5707 Diag(FD->getLocation(), diag::err_main_arg_wrong) << i << Expected[i];
5708 // TODO: suggest replacing given type with expected type