OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:flags_dict
(Results
1 - 2
of
2
) sorted by null
/external/toolchain-utils/bestflags/
flags_util.py
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
[
all
...]
iterative_elimination.py
34
def _DecreaseFlag(
flags_dict
, spec):
41
flags_dict
: The dictionary containing the original flags whose neighbors are
43
spec: The spec in the
flags_dict
is to be changed.
51
assert spec in
flags_dict
54
results =
flags_dict
.copy()
71
#
flags_dict
.
77
#
flags_dict
.
Completed in 95 milliseconds