Searched defs:IsAmbiguous (Results 1 - 4 of 4) sorted by relevance

/external/clang/test/CXX/special/class.copy/
H A Dp11.0x.copy.cpp58 struct IsAmbiguous { struct
60 Ambiguity A; // expected-note 2{{copy constructor of 'IsAmbiguous' is implicitly deleted because field 'A' has multiple copy constructors}}
61 IsAmbiguous();
63 IsAmbiguous IAa;
64 IsAmbiguous IAb(IAa); // expected-error{{call to implicitly-deleted copy constructor}}
67 IsAmbiguous IA; // expected-note{{copy constructor of 'Deleted' is implicitly deleted because field 'IA' has a deleted copy constructor}}
H A Dp11.0x.move.cpp52 struct IsAmbiguous { struct
54 IsAmbiguous(IsAmbiguous&&);
56 IsAmbiguous::IsAmbiguous(IsAmbiguous&&) = default; // expected-error{{would delete}}
59 IsAmbiguous IA;
/external/clang/lib/Parse/
H A DParseTentative.cpp1364 bool Parser::isCXXFunctionDeclarator(bool *IsAmbiguous) { argument
1403 if (IsAmbiguous && TPR == TPResult::Ambiguous())
1404 *IsAmbiguous = true;
H A DParseDecl.cpp4388 bool IsAmbiguous = false; local
4393 bool IsFunctionDecl = isCXXFunctionDeclarator(&IsAmbiguous);
4401 ParseFunctionDeclarator(D, attrs, T, IsAmbiguous);
4544 bool IsAmbiguous,
4662 IsAmbiguous, EllipsisLoc,
4541 ParseFunctionDeclarator(Declarator &D, ParsedAttributes &FirstArgAttrs, BalancedDelimiterTracker &Tracker, bool IsAmbiguous, bool RequiresArg) argument

Completed in 97 milliseconds