Searched refs:IsAmbiguous (Results 1 - 5 of 5) sorted by relevance

/freebsd-9.3-release/contrib/llvm/tools/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
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DMacroInfo.h354 bool IsAmbiguous : 1;
364 IsImported(false), IsAmbiguous(false),
485 bool isAmbiguous() const { return IsAmbiguous; }
488 void setAmbiguous(bool Val) { IsAmbiguous = Val; }
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseTentative.cpp1593 bool Parser::isCXXFunctionDeclarator(bool *IsAmbiguous) { argument
1632 if (IsAmbiguous && TPR == TPResult::Ambiguous())
1633 *IsAmbiguous = true;
H A DParseDecl.cpp4942 bool IsAmbiguous = false; local
4947 bool IsFunctionDecl = isCXXFunctionDeclarator(&IsAmbiguous);
4955 ParseFunctionDeclarator(D, attrs, T, IsAmbiguous);
5097 bool IsAmbiguous,
5235 IsAmbiguous,
5094 ParseFunctionDeclarator(Declarator &D, ParsedAttributes &FirstArgAttrs, BalancedDelimiterTracker &Tracker, bool IsAmbiguous, bool RequiresArg) argument
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Parse/
H A DParser.h1768 /// initializer. Sets 'IsAmbiguous' to true to indicate that this declaration
1772 bool isCXXFunctionDeclarator(bool *IsAmbiguous = 0);
2081 bool IsAmbiguous,

Completed in 493 milliseconds