Home
last modified time | relevance | path

Searched refs:ScopedName (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenDAGPatterns.h417 class ScopedName {
422 ScopedName(unsigned Scope, StringRef Identifier) in ScopedName() function
431 bool operator==(const ScopedName &o) const;
432 bool operator!=(const ScopedName &o) const;
644 std::vector<ScopedName> NamesAsPredicateArg;
679 const std::vector<ScopedName> &getNamesAsPredicateArg() const { in getNamesAsPredicateArg()
682 void setNamesAsPredicateArg(const std::vector<ScopedName> &Names) { in setNamesAsPredicateArg()
685 void addNameAsPredicateArg(const ScopedName &N) { in addNameAsPredicateArg()
H A DCodeGenDAGPatterns.cpp888 bool ScopedName::operator==(const ScopedName &o) const { in operator ==()
892 bool ScopedName::operator!=(const ScopedName &o) const { return !(*this == o); } in operator !=()
1958 for (const ScopedName &Name : NamesAsPredicateArg) in print()
2174 Child->addNameAsPredicateArg(ScopedName(Scope, Frag->getArgName(i))); in InlinePatternFragments()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp465 LVScope *LVNamespaceDeduction::get(StringRef ScopedName, bool CheckScope) { in get() argument
466 LVStringRefs Components = getAllLexicalComponents(ScopedName); in get()
474 { dbgs() << formatv("ScopedName: '{0}'\n", ScopedName.str().c_str()); }); in get()
3247 void LVLogicalVisitor::createParents(StringRef ScopedName, LVElement *Element) { in createParents() argument
3266 LVStringRefs Components = getAllLexicalComponents(ScopedName); in createParents()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.h281 void createParents(StringRef ScopedName, LVElement *Element);
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcherGen.cpp513 for (const ScopedName &Name : N.getNamesAsPredicateArg()) { in EmitMatchCode()