Lines Matching +full:has +full:- +full:flag
2 # Use of this source code is governed by a BSD-style license that can be
37 def __init__(self, flags=0, hash_value=-1):
66 # Two tasks having the same flag set should be equivalent.
67 flag_sets = [MockFlagSet(flag) for flag in flags]
71 # Two tasks having different flag set should be different.
87 identifier = random.randint(-sys.maxint - 1, -1)
93 # The hash of a task is the same as the hash of its flag set.
104 The get identifier method should returns the flag set in the build stage.
107 flag_sets = [MockFlagSet(flag) for flag in range(NUM_FLAGS)]
113 # The task formats the flag set into a string.
122 flag_sets = [MockFlagSet(flag) for flag in range(NUM_FLAGS)]
127 # build stage. Currently, the build result is a 5-element tuple containing
152 The done method should return false is the task has not perform and return
158 flag_sets = [MockFlagSet(flag) for flag in flags]
162 # The task has not been compiled nor tested.
166 # After the task has been compiled, it should indicate finished in BUILD
175 # After the task has been tested, it should indicate finished in TEST