MCPcopy Create free account
hub / github.com/boostorg/build / unordered

Class unordered

test/toolset-mock/src/MockProgram.py:31–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29# Represents a sequence of arguments that can appear
30# in any order.
31class unordered:
32 def __init__(self, *args):
33 self.args = list(args)
34 def match(self, command_line, pos, outputs):
35 unmatched = self.args[:]
36 while len(unmatched) > 0:
37 res = try_match_one(command_line, pos, unmatched, outputs)
38 if res is None:
39 return
40 pos = res
41 return pos
42
43# Represents a single input file.
44# If id is set, then the file must have been created

Callers 8

ld.pyFile · 0.85
gcc-4.8.3-linux.pyFile · 0.85
darwin-4.2.1.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected