Home | History | Annotate | Download | only in Sema

Lines Matching refs:Redeclaration

1734   // The types match.  Link up the redeclaration chain if the old
2152 // FIXME: Should we build redeclaration chains for function parameters?
2411 // If this redeclaration makes the function inline, we may need to add it to
2421 // If this redeclaration makes it newly gnu_inline, we don't want to warn
2687 // redeclaration, then pretend that we don't know about this
2711 /// redeclaration of Old.
3209 /// \return true if this is a forbidden redeclaration
4195 // If this has an identifier and is not an invalid redeclaration or
4434 bool Redeclaration = D.isRedeclaration();
4435 NamedDecl *ND = ActOnTypedefNameDecl(S, DC, NewTD, Previous, Redeclaration);
4436 D.setRedeclaration(Redeclaration);
4483 LookupResult &Previous, bool &Redeclaration) {
4490 Redeclaration = true;
5111 /// Returns true if the variable declaration is a redeclaration.
5406 /// \brief Generate diagnostics for an invalid function redeclaration.
5409 /// function redeclaration, including finding possible similar declarations
6219 // Make graceful recovery from an invalid redeclaration.
6589 /// \returns true if the function declaration is a redeclaration.
6609 bool Redeclaration = false;
6620 Redeclaration = true;
6626 Redeclaration = true;
6630 Redeclaration = true;
6634 Redeclaration = false;
6642 << Redeclaration << NewFD;
6644 if (Redeclaration)
6683 if (Redeclaration) {
6688 return Redeclaration;
6719 // A valid redeclaration of a C++ method must be out-of-line,
6762 return Redeclaration;
6791 return Redeclaration;
6798 return Redeclaration;
6834 return Redeclaration;
7262 // If this is a redeclaration, check that the type we just deduced matches
8203 // Check for redeclaration of parameters, e.g. int foo(int x, int x);
9150 /// Check whether this is a valid redeclaration of a previous enumeration.
9151 /// \return true if the redeclaration was invalid.
9185 /// redeclaration diagnostic message.
9199 /// class for redeclaration (class, struct, or __interface).
9208 /// as a redeclaration
9368 // redeclaration.
9523 // also need to do a redeclaration lookup there, just in case
9579 // In C++, we need to do a redeclaration lookup to properly
9592 // insanity with a redeclaration lookup can only actually happen
9705 // A redeclaration in function prototype scope in C isn't
9759 // (non-redeclaration) lookup.
11034 // Diagnose redeclaration of private ivars.