HomeSort by: relevance | last modified time | path
    Searched defs:IsAmbiguous (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Tooling/
FileMatchTrie.cpp 86 /// If multiple paths fit 'FileName' equally well, \c IsAmbiguous is set to
106 bool &IsAmbiguous,
124 Comparator, FileName, IsAmbiguous,
126 if (!Result.empty() || IsAmbiguous)
144 IsAmbiguous = true;
202 bool IsAmbiguous = false;
203 StringRef Result = Root->findEquivalent(*Comparator, FileName, IsAmbiguous);
204 if (IsAmbiguous)
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PPMacroExpansion.cpp 230 bool IsAmbiguous = false;
253 IsAmbiguous = true;
258 Info.IsAmbiguous = IsAmbiguous && !IsSystemMacro;
272 if (State && State->isAmbiguous(*this, II))
550 if (M.isAmbiguous()) {
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
Preprocessor.h 587 bool IsAmbiguous = false;
657 bool isAmbiguous(Preprocessor &PP, const IdentifierInfo *II) const {
659 return Info ? Info->IsAmbiguous : false;
683 Info->IsAmbiguous = false;
1084 S.isAmbiguous(*this, II));
1099 S.isAmbiguous(*this, II));
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseDecl.cpp 6205 bool IsAmbiguous = false;
6210 bool IsFunctionDecl = isCXXFunctionDeclarator(&IsAmbiguous);
6221 ParseFunctionDeclarator(D, attrs, T, IsAmbiguous);
6488 bool IsAmbiguous,
6650 HasProto, IsAmbiguous, LParenLoc, ParamInfo.data(),
  /src/external/apache2/llvm/dist/clang/include/clang/Parse/
Parser.h 2425 bool isTypeIdInParens(bool &isAmbiguous) {
2427 return isCXXTypeId(TypeIdInParens, isAmbiguous);
2428 isAmbiguous = false;
2432 bool isAmbiguous;
2433 return isTypeIdInParens(isAmbiguous);
2440 bool IsAmbiguous;
2442 return isCXXTypeId(TypeIdUnambiguous, IsAmbiguous);
2461 /// initializer. Sets 'IsAmbiguous' to true to indicate that this declaration
2465 bool isCXXFunctionDeclarator(bool *IsAmbiguous = nullptr);
2482 bool isCXXTypeId(TentativeCXXTypeIdContext Context, bool &isAmbiguous);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 3508 IsAmbiguous = 2,
3635 Class.Flags |= MSRTTIClass::IsAmbiguous;
3660 if (Class.Flags & MSRTTIClass::IsAmbiguous)
4203 (MSRTTIClass::IsPrivateOnPath | MSRTTIClass::IsAmbiguous))

Completed in 75 milliseconds