Home | History | Annotate | Download | only in Sema

Lines Matching defs:Expected

356       // will produce the ambiguity, or will complain that it expected
3555 assert(PrevDecl && "Expected a non-null Decl");
7888 // declaration against the expected type for the builtin.
8015 QualType Expected[] = { Context.IntTy, CharPP, CharPP, CharPP };
8022 if (Context.hasSameUnqualifiedType(AT, Expected[i]))
8024 else if (Expected[i] == CharPP) {
8042 Diag(FD->getLocation(), diag::err_main_arg_wrong) << i << Expected[i];
8043 // TODO: suggest replacing given type with expected type