Searched defs:IsAmbiguous (Results 1 - 4 of 4) sorted by relevance
/external/clang/test/CXX/special/class.copy/ |
H A D | p11.0x.copy.cpp | 58 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 D | p11.0x.move.cpp | 52 struct IsAmbiguous { struct 54 IsAmbiguous(IsAmbiguous&&); 56 IsAmbiguous::IsAmbiguous(IsAmbiguous&&) = default; // expected-error{{would delete}} 59 IsAmbiguous IA;
|
/external/clang/lib/Parse/ |
H A D | ParseTentative.cpp | 1364 bool Parser::isCXXFunctionDeclarator(bool *IsAmbiguous) { argument 1403 if (IsAmbiguous && TPR == TPResult::Ambiguous()) 1404 *IsAmbiguous = true;
|
H A D | ParseDecl.cpp | 4388 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