Home | History | Annotate | Download | only in ASTMatchers

Lines Matching defs:Name

576 /// \brief Matches overloaded operators with a specific name.
589 explicit HasOverloadedOperatorNameMatcher(const StringRef Name)
590 : SingleNodeMatcherInterface<T>(), Name(Name) {}
600 /// name.
602 return getOperatorSpelling(Node.getOperator()) == Name;
606 /// operator and has the given operator name.
609 getOperatorSpelling(Node.getOverloadedOperator()) == Name;
612 std::string Name;
615 /// \brief Matches named declarations with a specific name.
620 explicit HasNameMatcher(StringRef Name);
633 /// It generates the fully qualified name of the declaration (which is
639 const std::string Name;
742 /// FIXME: Find a better name.