Lines Matching refs:Dialect

19 Dialect::Dialect(const llvm::Record *def) : def(def) {  in Dialect()  function in Dialect
26 StringRef Dialect::getName() const { return def->getValueAsString("name"); } in getName()
28 StringRef Dialect::getCppNamespace() const { in getCppNamespace()
32 std::string Dialect::getCppClassName() const { in getCppClassName()
48 StringRef Dialect::getSummary() const { in getSummary()
52 StringRef Dialect::getDescription() const { in getDescription()
56 ArrayRef<StringRef> Dialect::getDependentDialects() const { in getDependentDialects()
60 llvm::Optional<StringRef> Dialect::getExtraClassDeclaration() const { in getExtraClassDeclaration()
65 bool Dialect::hasCanonicalizer() const { in hasCanonicalizer()
69 bool Dialect::hasConstantMaterializer() const { in hasConstantMaterializer()
73 bool Dialect::hasNonDefaultDestructor() const { in hasNonDefaultDestructor()
77 bool Dialect::hasOperationAttrVerify() const { in hasOperationAttrVerify()
81 bool Dialect::hasRegionArgAttrVerify() const { in hasRegionArgAttrVerify()
85 bool Dialect::hasRegionResultAttrVerify() const { in hasRegionResultAttrVerify()
89 bool Dialect::hasOperationInterfaceFallback() const { in hasOperationInterfaceFallback()
93 bool Dialect::useDefaultAttributePrinterParser() const { in useDefaultAttributePrinterParser()
97 bool Dialect::useDefaultTypePrinterParser() const { in useDefaultTypePrinterParser()
101 Dialect::EmitPrefix Dialect::getEmitAccessorPrefix() const { in getEmitAccessorPrefix()
109 bool Dialect::isExtensible() const { in isExtensible()
113 bool Dialect::operator==(const Dialect &other) const { in operator ==()
117 bool Dialect::operator<(const Dialect &other) const { in operator <()