HomeSort by: relevance | last modified time | path
    Searched refs:resType (Results 1 - 3 of 3) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
statementsem.d 3022 auto resType = e0 ? e0.type : Type.tvoid;
3031 tf.next = resType; // infer void or noreturn
3034 else if (tf.next.ty != Tvoid && !resType.toBasetype().isTypeNoreturn())
3051 if (tbret.ty != Tvoid && !resType.isTypeNoreturn()) // if non-void return
3056 rs.error("expected return type of `%s`, not `%s`", tret.toChars(), resType.toChars());
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 6286 QualType resType = TheCall->getArg(0)->getType();
6323 resType = Context.getVectorType(eltType, numResElements,
6357 return new (Context) ShuffleVectorExpr(Context, exprs, resType,
SemaExpr.cpp 10403 QualType ResType = Operand->getType();
10404 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
10405 ResType = ResAtomicType->getValueType();
10407 assert(ResType->isAnyPointerType() && !ResType->isDependentType());
10408 QualType PointeeTy = ResType->getPointeeType();
10425 QualType ResType = Operand->getType();
10426 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
10427 ResType = ResAtomicType->getValueType();
10429 if (!ResType->isAnyPointerType()) return true
    [all...]

Completed in 51 milliseconds