Home
last modified time | relevance | path

Searched refs:ArgumentType (Results 1 – 4 of 4) sorted by relevance

/src/contrib/llvm-project/clang/lib/Interpreter/
H A DCodeCompletion.cpp97 auto ArgumentType = VD->getType(); in handleDeclaration() local
102 S.CompareReferenceRelationship(SourceLocation(), RT, ArgumentType, in handleDeclaration()
112 } else if (S.Context.hasSameType(ArgumentType, PreferredType)) { in handleDeclaration()
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp403 QualType ArgumentType = ArgumentExpr->getType(); in processArgument() local
416 !isTransparentUnion(ArgumentType)) { in processArgument()
/src/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h3027 const QualType ArgumentType = Node.getTypeOfArgument(); in AST_MATCHER_P() local
3028 return InnerMatcher.matches(ArgumentType, Finder, Builder); in AST_MATCHER_P()
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp14052 QualType ArgumentType = ArgumentExpr->getType(); in CheckArgumentWithTypeTag() local
14055 if (IsPointerAttr && ArgumentType->isVoidPointerType()) in CheckArgumentWithTypeTag()
14077 mismatch = !Context.hasSameType(ArgumentType, RequiredType); in CheckArgumentWithTypeTag()
14085 if ((IsPointerAttr && IsSameCharType(ArgumentType->getPointeeType(), in CheckArgumentWithTypeTag()
14087 (!IsPointerAttr && IsSameCharType(ArgumentType, RequiredType))) in CheckArgumentWithTypeTag()
14092 ArgumentType->getPointeeType(), in CheckArgumentWithTypeTag()
14095 mismatch = !isLayoutCompatible(Context, ArgumentType, RequiredType); in CheckArgumentWithTypeTag()
14099 << ArgumentType << ArgumentKind in CheckArgumentWithTypeTag()