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

  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUPrintfRuntimeBinding.cpp 218 llvm::Type *ResType = llvm::Type::getInt32Ty(Ctx);
222 ResType = llvm::FixedVectorType::get(ResType, NumElem);
229 Arg = Builder.CreateZExt(Arg, ResType);
231 Arg = Builder.CreateSExt(Arg, ResType);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceFileWriter.cpp 556 auto ResType = Res->getResourceType();
557 RETURN_IF_ERROR(checkIntOrString(ResType, "Resource type"));
559 RETURN_IF_ERROR(handleError(writeIdentifier(ResType), Res));
784 ulittle16_t ResType; // 1 for icons, 2 for cursors.
902 if (Header->ResType != NeededType)
903 return createError("Incorrect icon/cursor ResType field; should be " +
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
ObjCMT.cpp 497 QualType ResType = Context.getCanonicalType(Getter->getReturnType());
498 if (const char *MemoryManagementAttr = PropertyMemoryAttribute(Context, ResType))
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 10608 QualType ResType = DecodeTypeFromStr(TypeStr, *this, Error,
10647 return getFunctionNoProtoType(ResType, EI);
10656 return getFunctionType(ResType, ArgTypes, EPI);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
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 89 milliseconds