Home
last modified time | relevance | path

Searched refs:argTy (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/Analysis/
DFormatString.cpp260 ArgType::matchesType(ASTContext &C, QualType argTy) const { in matchesType()
263 const PointerType *PT = argTy->getAs<PointerType>(); in matchesType()
271 argTy = PT->getPointeeType(); in matchesType()
282 if (const EnumType *ETy = argTy->getAs<EnumType>()) in matchesType()
283 argTy = ETy->getDecl()->getIntegerType(); in matchesType()
285 if (const BuiltinType *BT = argTy->getAs<BuiltinType>()) in matchesType()
299 if (const EnumType *ETy = argTy->getAs<EnumType>()) in matchesType()
300 argTy = ETy->getDecl()->getIntegerType(); in matchesType()
301 argTy = C.getCanonicalType(argTy).getUnqualifiedType(); in matchesType()
303 if (T == argTy) in matchesType()
[all …]
/external/clang/include/clang/Analysis/Analyses/
DFormatString.h261 MatchKind matchesType(ASTContext &C, QualType argTy) const;
/external/llvm/lib/Target/CppBackend/
DCPPBackend.cpp574 Type* argTy = static_cast<Type*>(*PI); in printType() local
575 printType(argTy); in printType()
576 std::string argName(getCppName(argTy)); in printType()