Lines Matching defs:ParamName
870 bool shouldHintName(const Expr *Arg, StringRef ParamName) {
871 if (ParamName.empty())
876 if (ParamName == getSpelledIdentifier(Arg))
880 if (isPrecededByParamNameComment(Arg, ParamName))
919 // whose contents match ParamName (allowing for whitespace and an optional "="
921 bool isPrecededByParamNameComment(const Expr *E, StringRef ParamName) {
938 ParamName = ParamName.trim(IgnoreChars);
939 // Other than that, the comment must contain exactly ParamName.
940 if (!SourcePrefix.consume_back(ParamName))