Home
last modified time | relevance | path

Searched refs:constraint_name (Results 1 – 4 of 4) sorted by relevance

/system/bt/gd/packet/parser/
Dparent_def.h78 FindDescendantsWithConstraint(std::string constraint_name) const;
Dlanguage_y.yy326 const auto& constraint_name = constraint.first;
328 DEBUG() << "Parent constraint on " << constraint_name;
329 struct_definition->AddParentConstraint(constraint_name, constraint_value);
400 const auto& constraint_name = constraint.first;
402 DEBUG() << "Parent constraint on " << constraint_name;
403 packet_definition->AddParentConstraint(constraint_name, constraint_value);
Dpacket_def.cc943 auto constraint_name = FindConstraintField(); in GenRustStructImpls() local
944 auto constrained_descendants = FindDescendantsWithConstraint(constraint_name); in GenRustStructImpls()
947 s << "let child = match " << constraint_name << " {"; in GenRustStructImpls()
952 auto constraint_field = GetParamList().GetField(constraint_name); in GenRustStructImpls()
980 s << "v => return Err(Error::ConstraintOutOfBounds{field: \"" << constraint_name in GenRustStructImpls()
Dparent_def.cc576 std::string constraint_name) const { in FindDescendantsWithConstraint()
580 auto constraint = child->parent_constraints_.find(constraint_name); in FindDescendantsWithConstraint()
584 auto m = child->FindDescendantsWithConstraint(constraint_name); in FindDescendantsWithConstraint()