Searched refs:argTy (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/Analysis/
H A DFormatString.cpp236 bool ArgType::matchesType(ASTContext &C, QualType argTy) const {
239 const PointerType *PT = argTy->getAs<PointerType>();
247 argTy = PT->getPointeeType();
258 if (const EnumType *ETy = argTy->getAs<EnumType>())
259 argTy = ETy->getDecl()->getIntegerType();
261 if (const BuiltinType *BT = argTy->getAs<BuiltinType>())
275 if (const EnumType *ETy = argTy->getAs<EnumType>())
276 argTy = ETy->getDecl()->getIntegerType();
277 argTy = C.getCanonicalType(argTy)
[all...]
/external/clang/include/clang/Analysis/Analyses/
H A DFormatString.h239 bool matchesType(ASTContext &C, QualType argTy) const;
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp559 Type* argTy = static_cast<Type*>(*PI); local
560 printType(argTy);
561 std::string argName(getCppName(argTy));
/external/clang/lib/AST/
H A DASTContext.cpp7037 QualType argTy = proto->getArgType(i); local
7041 if (const EnumType *Enum = argTy->getAs<EnumType>()) {
7042 argTy = Enum->getDecl()->getIntegerType();
7043 if (argTy.isNull())
7047 if (argTy->isPromotableIntegerType() ||
7048 getCanonicalType(argTy).getUnqualifiedType() == FloatTy)

Completed in 156 milliseconds