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

/external/clang/lib/Tooling/
H A DFileMatchTrie.cpp79 /// 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; local
181 StringRef Result = Root->findEquivalent(*Comparator, FileName, IsAmbiguous);
182 if (IsAmbiguous)
97 findEquivalent(const PathComparator& Comparator, StringRef FileName, bool &IsAmbiguous, unsigned ConsumedLength = 0) const argument
/external/clang/lib/Parse/
H A DParseTentative.cpp1558 bool Parser::isCXXFunctionDeclarator(bool *IsAmbiguous) { argument
1597 if (IsAmbiguous && TPR == TPResult::Ambiguous)
1598 *IsAmbiguous = true;
H A DParseDecl.cpp4906 bool IsAmbiguous = false; local
4911 bool IsFunctionDecl = isCXXFunctionDeclarator(&IsAmbiguous);
4919 ParseFunctionDeclarator(D, attrs, T, IsAmbiguous);
5061 bool IsAmbiguous,
5199 IsAmbiguous,
5058 ParseFunctionDeclarator(Declarator &D, ParsedAttributes &FirstArgAttrs, BalancedDelimiterTracker &Tracker, bool IsAmbiguous, bool RequiresArg) argument
/external/clang/test/CXX/special/class.copy/
H A Dp11.0x.copy.cpp59 struct IsAmbiguous { struct
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}}
H A Dp11.0x.move.cpp53 struct IsAmbiguous { struct
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/include/clang/Parse/
H A DParser.h1870 bool IsAmbiguous; local
1872 return isCXXTypeId(TypeIdUnambiguous, IsAmbiguous);
1891 /// initializer. Sets 'IsAmbiguous' to true to indicate that this declaration
1895 bool isCXXFunctionDeclarator(bool *IsAmbiguous = nullptr);
2206 bool IsAmbiguous,
/external/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp2539 IsAmbiguous = 2, enumerator in enum:__anon17871::MSRTTIClass::__anon17872
2664 Class.Flags |= MSRTTIClass::IsAmbiguous;
2689 if (Class.Flags & MSRTTIClass::IsAmbiguous)

Completed in 3194 milliseconds