HomeSort by relevance Sort by last modified time
    Searched refs:IsAmbiguous (Results 1 - 7 of 7) sorted by null

  /external/clang/test/CXX/special/class.copy/
p11.0x.move.cpp 52 struct IsAmbiguous {
54 IsAmbiguous(IsAmbiguous&&);
56 IsAmbiguous::IsAmbiguous(IsAmbiguous&&) = default; // expected-error{{would delete}}
59 IsAmbiguous IA;
p11.0x.copy.cpp 58 struct IsAmbiguous {
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}}
  /external/clang/lib/Tooling/
FileMatchTrie.cpp 79 /// If multiple paths fit 'FileName' equally well, \c IsAmbiguous is set to
99 bool &IsAmbiguous,
112 Comparator, FileName, IsAmbiguous,
114 if (!Result.empty() || IsAmbiguous)
125 IsAmbiguous = true;
180 bool IsAmbiguous = false;
181 StringRef Result = Root->findEquivalent(*Comparator, FileName, IsAmbiguous);
182 if (IsAmbiguous)
  /external/clang/include/clang/Lex/
MacroInfo.h 311 bool IsAmbiguous : 1;
319 IsImported(false), IsPublic(true), IsHidden(false), IsAmbiguous(false),
327 IsAmbiguous(false), ChangedAfterLoad(false) {
392 bool isAmbiguous() const { return IsAmbiguous; }
395 void setAmbiguous(bool Val) { IsAmbiguous = Val; }
  /external/clang/lib/Parse/
ParseTentative.cpp 327 bool Parser::isCXXTypeId(TentativeCXXTypeIdContext Context, bool &isAmbiguous) {
329 isAmbiguous = false;
375 isAmbiguous = true;
384 isAmbiguous = true;
    [all...]
ParseDecl.cpp     [all...]
  /external/clang/include/clang/Parse/
Parser.h     [all...]

Completed in 54 milliseconds