HomeSort by relevance Sort by last modified time
    Searched defs:ArgType (Results 1 - 25 of 27) sorted by null

1 2

  /external/llvm/lib/Target/PTX/
PTXAsmPrinter.cpp 416 const Type *ArgType = (*i).getType();
418 if (ArgType->isPointerTy()) {
424 os << ArgType->getPrimitiveSizeInBits();
426 if (ArgType->isPointerTy() && ST.emitPtrAttribute()) {
427 const PointerType *PtrType = dyn_cast<const PointerType>(ArgType);
  /external/llvm/utils/TableGen/
IntrinsicEmitter.cpp 207 static void EmitTypeGenerate(raw_ostream &OS, const Record *ArgType,
230 static void EmitTypeGenerate(raw_ostream &OS, const Record *ArgType,
232 MVT::SimpleValueType VT = getValueType(ArgType->getValueAsDef("VT"));
234 if (ArgType->isSubClassOf("LLVMMatchType")) {
235 unsigned Number = ArgType->getValueAsInt("Number");
237 if (ArgType->isSubClassOf("LLVMExtendedElementVectorType"))
240 else if (ArgType->isSubClassOf("LLVMTruncatedElementVectorType"))
259 EmitTypeGenerate(OS, ArgType->getValueAsDef("ElTy"), ArgNo);
266 EmitTypeGenerate(OS, ArgType->getValueAsDef("ElTy"), ArgNo);
353 Record *ArgType = RetTys[j]
    [all...]
  /external/clang/lib/AST/
DeclTemplate.cpp 168 QualType ArgType = Context.getTypeDeclType(TTP);
170 ArgType = Context.getPackExpansionType(ArgType,
173 Arg = TemplateArgument(ArgType);
    [all...]
ExprCXX.cpp 137 const QualType ArgType = Arg->getType();
139 if (ArgType->isDependentType() && !ArgType->isPointerType())
142 return ArgType->getAs<PointerType>()->getPointeeType();
    [all...]
DeclCXX.cpp 431 QualType ArgType = FnType->getArgType(0);
433 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()) {
434 ArgType = Ref->getPointeeType();
437 if (ArgIsConst && !ArgType.isConstQualified())
440 Quals = ArgType.getQualifiers();
447 if (!Context.hasSameUnqualifiedType(ArgType, Class))
    [all...]
ASTImporter.cpp     [all...]
ExprConstant.cpp     [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 488 // Generate the string "(argtype a, argtype b, ...)"
929 char argType = ClassifyType(typestr, argQuad, argPoly, argUsgn);
930 argType = ModType(proto[i], argType, argQuad, argPoly, argUsgn, argScalar,
937 if (argType != 'c' || argPoly || argUsgn)
956 ((ck == ClassB && argType != 'c') || argPoly || argUsgn)) {
959 argTypeStr = argType;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp     [all...]
  /frameworks/compile/slang/
slang_rs_reflection.cpp     [all...]
  /external/clang/include/clang/AST/
ExprObjC.h 681 QualType ArgType;
685 ArgType = (*P)->getType();
690 ArgType = (*P)->getType();
692 if (ArgType.isNull())
693 ArgType = getType();
695 return ArgType;
    [all...]