Searched refs:ancestor (Results 1 – 5 of 5) sorted by relevance
1190 for (auto ancestor : lineage) { in GenRustBuilderStructImpls() local1191 auto fields = ancestor->fields_.GetFieldsWithoutTypes({ in GenRustBuilderStructImpls()1201 auto accessor_name = util::CamelCaseToUnderScore(ancestor->name_); in GenRustBuilderStructImpls()1202 s << "let " << accessor_name << "= Arc::new(" << ancestor->name_ << "Data {"; in GenRustBuilderStructImpls()1222 if (ancestor->HasChildEnums()) { in GenRustBuilderStructImpls()1224 if (ancestor->fields_.HasPayload()) { in GenRustBuilderStructImpls()1233 s << "child: " << ancestor->name_ << "DataChild::" << prev->name_ << "(" in GenRustBuilderStructImpls()1238 prev = ancestor; in GenRustBuilderStructImpls()1245 for (const auto ancestor : GetAncestors()) { in GenRustBuilderStructImpls() local1246 s << "impl Into<" << ancestor->name_ << "Packet> for " << name_ << "Builder {"; in GenRustBuilderStructImpls()[all …]
314 for (const Type* ancestor = this; ancestor != nullptr; ancestor = ancestor->parent()) { in checkForwardReferenceRestrictions() local315 if (ancestor == refTypeParent) return OK; in checkForwardReferenceRestrictions()
460 for (const auto* ancestor : superTypeChain()) { in resolveInheritance() local461 serial += ancestor->mUserMethods.size(); in resolveInheritance()
20 * The ancestor for all interfaces.
346 for ancestor in p.find_parents(lambda x: not isinstance(x, Metadata)):347 ancestor._leafs.remove(p)