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

/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DFileMatchTrie.cpp86 /// If multiple paths fit 'FileName' equally well, \c IsAmbiguous is set to
106 bool &IsAmbiguous,
119 Comparator, FileName, IsAmbiguous,
121 if (!Result.empty() || IsAmbiguous)
132 IsAmbiguous = true;
190 bool IsAmbiguous = false; local
191 StringRef Result = Root->findEquivalent(*Comparator, FileName, IsAmbiguous);
192 if (IsAmbiguous)
104 findEquivalent(const PathComparator& Comparator, StringRef FileName, bool &IsAmbiguous, unsigned ConsumedLength = 0) const argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DMacroInfo.h571 bool IsAmbiguous)
572 : LatestLocalAndAmbiguous(MD, IsAmbiguous), ModuleMacros(MMs) {}
570 MacroDefinition(DefMacroDirective *MD, ArrayRef<ModuleMacro *> MMs, bool IsAmbiguous) argument
H A DPreprocessor.h572 bool IsAmbiguous = false; member in struct:clang::Preprocessor::ModuleMacroInfo
644 return Info ? Info->IsAmbiguous : false;
668 Info->IsAmbiguous = false;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseTentative.cpp1857 bool Parser::isCXXFunctionDeclarator(bool *IsAmbiguous) { argument
1892 if (IsAmbiguous && TPR == TPResult::Ambiguous)
1893 *IsAmbiguous = true;
H A DParseDecl.cpp6115 bool IsAmbiguous = false; local
6120 bool IsFunctionDecl = isCXXFunctionDeclarator(&IsAmbiguous);
6131 ParseFunctionDeclarator(D, attrs, T, IsAmbiguous);
6397 bool IsAmbiguous,
6553 HasProto, IsAmbiguous, LParenLoc, ParamInfo.data(),
6394 ParseFunctionDeclarator(Declarator &D, ParsedAttributes &FirstArgAttrs, BalancedDelimiterTracker &Tracker, bool IsAmbiguous, bool RequiresArg) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DPPMacroExpansion.cpp228 bool IsAmbiguous = false; local
251 IsAmbiguous = true;
256 Info.IsAmbiguous = IsAmbiguous && !IsSystemMacro;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp7869 void EmitAllDiagnostics(bool IsAmbiguous) {
7873 TypoCorrection TC = IsAmbiguous
7875 ExprResult Replacement = IsAmbiguous ? ExprError() : TransformCache[TE];
7940 ExprResult CheckForRecursiveTypos(ExprResult Res, bool &IsAmbiguous) {
7958 RecursiveTransformLoop(FixedExpr, IsAmbiguous);
7993 // If valid ambiguous typo corrections are seen, `IsAmbiguous` is set to
7995 ExprResult RecursiveTransformLoop(Expr *E, bool &IsAmbiguous) {
8001 Res = CheckForRecursiveTypos(TryTransform(E), IsAmbiguous);
8005 if (IsAmbiguous)
8020 if (!IsAmbiguous
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2322 bool IsAmbiguous; local
2324 return isCXXTypeId(TypeIdUnambiguous, IsAmbiguous);
2343 /// initializer. Sets 'IsAmbiguous' to true to indicate that this declaration
2347 bool isCXXFunctionDeclarator(bool *IsAmbiguous = nullptr);
2763 bool IsAmbiguous,
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp3456 IsAmbiguous = 2, enumerator in enum:__anon450::MSRTTIClass::__anon451
3583 Class.Flags |= MSRTTIClass::IsAmbiguous;
3608 if (Class.Flags & MSRTTIClass::IsAmbiguous)
4151 (MSRTTIClass::IsPrivateOnPath | MSRTTIClass::IsAmbiguous))
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1618 bool IsAmbiguous,

Completed in 203 milliseconds