Lines Matching refs:flags_dict
15 def ClimbNext(flags_dict, climb_spec):
16 """Get the flags that are different from |flags_dict| by |climb_spec|.
18 Given a set of flags, |flags_dict|, return a new set of flags that are
21 An example flags_dict is {foo=[1-9]:foo=5, bar=[1-5]:bar=2} and climb_spec is
27 flags_dict: The dictionary containing the original flags whose neighbors are
29 climb_spec: The spec in the flags_dict is to be changed. The spec is a
45 if climb_spec not in flags_dict:
46 results = flags_dict.copy()
61 results = flags_dict.copy()
64 # flags_dict.
69 flag = flags_dict[climb_spec]
78 neighbor = flags_dict.copy()
85 neighbor = flags_dict.copy()
90 # not presented in the flags_dict.
91 neighbor = flags_dict.copy()