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

  /src/lib/libtelnet/
genget.c 72 static char *ambiguous; /* special return value for command routines */ variable
92 return(&ambiguous);
99 * Function call version of Ambiguous()
102 Ambiguous(void *s)
104 return(s == &ambiguous);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsRegisterBankInfo.h 58 /// the remaining types: Integer, FloatingPoint or Ambiguous.
68 /// gprb for s32 Ambiguous operands.
69 Ambiguous,
70 /// Only used for s64. Unlike Ambiguous s64, AmbiguousWithMergeOrUnmerge s64
76 if (InstTy == InstType::Ambiguous && OpSize == 64)
82 if (InstTy == InstType::Ambiguous && OpSize == 32)
88 if (InstTy == InstType::Ambiguous && (OpSize == 32 || OpSize == 64))
119 /// or gprb e.g. for G_LOAD we consider only operand 0 as ambiguous, operand 1
121 /// This class provides containers for MI's ambiguous:
122 /// DefUses : MachineInstrs that use one of MI's ambiguous def operands
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Lookup.h 73 Ambiguous
302 return getResultKind() == Ambiguous;
486 if (ResultKind == Ambiguous) {
495 if (ResultKind == Ambiguous) {
702 ResultKind = Ambiguous;
723 // ill-defined unless ambiguous. Still need to be initialized it will be
Overload.h 58 /// Ambiguous candidates found.
417 /// Represents an ambiguous user-defined conversion sequence.
521 /// ambiguous conversion (C++0x [over.best.ics]p10).
548 if (ConversionKind == AmbiguousConversion) Ambiguous.destruct();
562 /// details of the ambiguous conversion.
563 AmbiguousConversionSequence Ambiguous;
582 case AmbiguousConversion: Ambiguous.copyFrom(Other.Ambiguous); break;
609 /// sequences and ambiguous conversion sequences the same rank,
663 Ambiguous.construct()
    [all...]
Sema.h 1331 Ambiguous,
4073 /// null if the results were absent, ambiguous, or overloaded.
12278 /// Returns null if unknown or ambiguous, or if code completion is off.
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaLookup.cpp 335 assert(ResultKind != Ambiguous || Decls.size() > 1 ||
338 assert((Paths != nullptr) == (ResultKind == Ambiguous &&
394 // FIXME: In the presence of ambiguous default arguments, we should keep both,
500 // Don't do any extra resolution if we've already resolved as ambiguous.
501 if (ResultKind == Ambiguous) return;
506 bool Ambiguous = false;
568 Ambiguous = true;
589 Ambiguous = true;
605 if (N > 1 && HideTags && HasTag && !Ambiguous &&
614 Ambiguous = true
    [all...]
Sema.cpp 2234 bool Ambiguous = false;
2249 if (!ZeroArgCallReturnTy.isNull() && !Ambiguous &&
2253 Ambiguous = true;
SemaTemplateDeduction.cpp 1223 /// "MiscellaneousDeductionFailure" result happens when the match is ambiguous.
5347 /// specialization that is a candidate in the ambiguous ordering. One parameter
5390 bool Ambiguous = false;
5398 Ambiguous = true;
5403 if (!Ambiguous) {
  /src/external/apache2/llvm/dist/clang/include/clang/Parse/
Parser.h 2491 True, False, Ambiguous, Error
2505 /// TPResult::Ambiguous if it could be either a decl-specifier or a
2515 /// \c TPResult::Ambiguous, determine whether the decl-specifier would be
2537 // resolved and tentative parsing may stop. TPResult::Ambiguous indicates

Completed in 169 milliseconds