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

  /src/external/apache2/llvm/dist/clang/lib/AST/
CXXInheritance.cpp 36 /// isAmbiguous - Determines whether the set of paths provided is
40 bool CXXBasePaths::isAmbiguous(CanQualType BaseType) {
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
MacroInfo.h 571 bool IsAmbiguous)
572 : LatestLocalAndAmbiguous(MD, IsAmbiguous), ModuleMacros(MMs) {}
589 bool isAmbiguous() const { return LatestLocalAndAmbiguous.getInt(); }
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/llvm/lib/Target/Mips/
MipsRegisterBankInfo.cpp 166 static bool isAmbiguous(unsigned Opc) {
232 assert(isAmbiguous(MI->getOpcode()) &&
270 assert(isAmbiguous(MI->getOpcode()) && "Visiting non-Ambiguous opcode.\n");
336 !isAmbiguous(AdjMI->getOpcode())) {
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Lookup.h 301 bool isAmbiguous() const {
327 assert(isAmbiguous());
695 if (isAmbiguous())
Overload.h 633 bool isAmbiguous() const { return getKind() == AmbiguousConversion; }
635 bool isFailure() const { return isBad() || isAmbiguous(); }
878 if (C.isAmbiguous()) return true;
DeclSpec.h 1288 unsigned isAmbiguous : 1;
1625 bool IsAmbiguous,
  /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...]

Completed in 153 milliseconds