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

  /external/clang/lib/Tooling/
FileMatchTrie.cpp 81 /// If multiple paths fit 'FileName' equally well, \c IsAmbiguous is set to
101 bool &IsAmbiguous,
114 Comparator, FileName, IsAmbiguous,
116 if (!Result.empty() || IsAmbiguous)
127 IsAmbiguous = true;
184 bool IsAmbiguous = false;
185 StringRef Result = Root->findEquivalent(*Comparator, FileName, IsAmbiguous);
186 if (IsAmbiguous)
  /external/clang/test/CXX/special/class.copy/
p11.0x.copy.cpp 59 struct IsAmbiguous {
61 Ambiguity A; // expected-note 2{{copy constructor of 'IsAmbiguous' is implicitly deleted because field 'A' has multiple copy constructors}}
62 IsAmbiguous();
64 IsAmbiguous IAa;
65 IsAmbiguous IAb(IAa); // expected-error{{call to implicitly-deleted copy constructor}}
68 IsAmbiguous IA; // expected-note{{copy constructor of 'Deleted' is implicitly deleted because field 'IA' has a deleted copy constructor}}
p11.0x.move.cpp 53 struct IsAmbiguous {
55 IsAmbiguous(IsAmbiguous&&); // expected-note{{copy constructor is implicitly deleted because 'IsAmbiguous' has a user-declared move constructor}}
57 IsAmbiguous::IsAmbiguous(IsAmbiguous&&) = default; // expected-error{{would delete}}
63 IsAmbiguous IA; // expected-note{{deleted because field 'IA' has a deleted move constructor}}
  /external/clang/lib/Lex/
PPMacroExpansion.cpp 173 bool IsAmbiguous = false;
196 IsAmbiguous = true;
201 Info.IsAmbiguous = IsAmbiguous && !IsSystemMacro;
215 if (State && State->isAmbiguous(*this, II))
495 if (M.isAmbiguous()) {
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 375 : MD(MD), ActiveModuleMacrosGeneration(0), IsAmbiguous(false) {}
385 bool IsAmbiguous;
446 bool isAmbiguous(Preprocessor &PP, const IdentifierInfo *II) const {
448 return Info ? Info->IsAmbiguous : false;
471 Info->IsAmbiguous = false;
820 S.isAmbiguous(*this, II));
835 S.isAmbiguous(*this, II));
    [all...]
  /external/clang/include/clang/Parse/
Parser.h     [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp     [all...]
  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp     [all...]

Completed in 327 milliseconds