Lines Matching defs:Expected
292 // will produce the ambiguity, or will complain that it expected
2813 assert(PrevDecl && "Expected a non-null Decl");
6079 // declaration against the expected type for the builtin.
6174 QualType Expected[] = { Context.IntTy, CharPP, CharPP, CharPP };
6181 if (Context.hasSameUnqualifiedType(AT, Expected[i]))
6183 else if (Expected[i] == CharPP) {
6200 Diag(FD->getLocation(), diag::err_main_arg_wrong) << i << Expected[i];
6201 // TODO: suggest replacing given type with expected type