Home | History | Annotate | Download | only in docs

Lines Matching refs:ins

518     for name, ins in ins_dict.iteritems():
519 ins._leafs = []
526 ins = ins_dict.get(ins_str, InnerNamespace(ins_str, parent))
527 ins_dict[ins_str] = ins
529 if p not in ins._leafs:
530 ins._leafs.append(p)
532 for name, ins in ins_dict.iteritems():
533 ins.validate_tree()
534 # construct children INS
535 self._construct_inner_namespaces(ins, depth + 1)
536 ins.validate_tree()
538 self._construct_entries(ins, depth + 1)
540 if ins not in parent.namespaces:
541 parent._namespaces.append(ins)
543 if not ins.validate_tree():
545 "construct_inner_namespaces, with ins = '%s'") \
546 %(ins)
845 for ins in self.namespaces:
846 new_ins = new_ins_dict.setdefault(ins.name,
847 InnerNamespace(ins.name, parent=self))
848 new_ins._namespaces.extend(ins.namespaces)
849 new_ins._entries.extend(ins.entries)