Lines Matching refs:varDecl

705 ///     varDecl(hasInitializer(floatLiteral().bind("init")))
788 /// varDecl(hasInitializer(ignoringImplicit(cxxConstructExpr())))
793 /// varDecl(hasInitializer(cxxConstructExpr()))
816 /// varDecl(hasInitializer(ignoringImpCasts(integerLiteral())))
817 /// varDecl(hasInitializer(ignoringImpCasts(declRefExpr())))
822 /// varDecl(hasInitializer(integerLiteral()))
823 /// varDecl(hasInitializer(declRefExpr()))
843 /// varDecl(hasInitializer(ignoringParenCasts(integerLiteral())))
846 /// varDecl(hasInitializer(integerLiteral()))
866 /// varDecl(hasInitializer(ignoringParenImpCasts(integerLiteral())))
867 /// varDecl(hasInitializer(ignoringParenImpCasts(declRefExpr())))
870 /// varDecl(hasInitializer(integerLiteral()))
871 /// varDecl(hasInitializer(declRefExpr()))
886 /// varDecl(hasType(pointerType(pointee(ignoringParens(functionType())))))
1235 extern const internal::VariadicDynCastAllOfMatcher<Decl, VarDecl> varDecl;
3065 /// in varDecl(hasType(hasDeclaration(decl()))) the decl will match the
3069 /// varDecl(hasType(hasUnqualifiedDesugaredType(
3227 /// objcMessageExpr(hasReceiver(declRefExpr(to(varDecl(hasName("x"))))))
3371 /// and z (matcher = varDecl(hasType(cxxRecordDecl(hasName("X")))))
3397 /// X, while varDecl(hasType(cxxRecordDecl(hasName("X")))) matches the
3401 /// and z (matcher = varDecl(hasType(cxxRecordDecl(hasName("X")))))
3492 /// (matcher = varDecl(hasType(references(cxxRecordDecl(hasName("X"))))))
3516 /// \c varDecl(hasType(qualType(referenceType()))))) will not match the
3518 /// varDecl(hasType(qualType(hasCanonicalType(referenceType())))))) does.
3592 /// (matcher = declRefExpr(to(varDecl(hasName("x")))))
3667 /// Example matches x (matcher = varDecl(hasInitializer(callExpr())))
3682 /// Example matches y (matcher = varDecl(isStaticLocal()))
3697 /// Example matches x (matcher = varDecl(hasLocalStorage())
3711 /// Example matches y and z (matcher = varDecl(hasGlobalStorage())
3726 /// (matcher = varDecl(hasAutomaticStorageDuration())
3752 /// varDecl(hasStaticStorageDuration())
3762 /// (matcher = varDecl(hasThreadStorageDuration())
3778 /// Example matches x (matcher = varDecl(isExceptionVariable())
3864 /// 0, varDecl(hasInitializer(anything()))))
3866 /// declStmt(containsDeclaration(1, varDecl()))
4120 /// cxxMethodDecl(hasParameter(0, hasType(varDecl())))
4153 /// declRefExpr(to(varDecl(hasName("y")))),
4304 /// varDecl(isExternC())
4323 /// varDecl(isStaticStorageClass())
4419 /// varDecl(isConstexpr())
4519 /// forEachDescendant(varDecl().bind("d")),
5272 /// varDecl(hasType(isAnyPointer()))
5327 /// \c varDecl(hasType(hasLocalQualifiers())) matches only \c j and \c k.
5691 /// varDecl(hasName("b")))))))
5808 /// \c varDecl(hasType(pointsTo(parenType()))) matches \c ptr_to_array but not
5820 /// \c varDecl(hasType(pointsTo(parenType(innerType(functionType()))))) matches
6679 /// Example matches only z (matcher = varDecl(hasExternalFormalLinkage()))
6807 /// ``varDecl(hasInitializer(ignoringElidableConstructorCall(callExpr())))``