Lines Matching refs:token
94 for token in self.binary_test_working_directory:
96 path = token
97 if self.TAG_DELIMITER in token:
98 tag, path = token.split(self.TAG_DELIMITER)
104 for token in self.binary_test_envp:
106 path = token
107 split = token.find(self.TAG_DELIMITER)
109 tag, path = token[:split], token[
119 for token in self.binary_test_args:
121 arg = token
122 split = token.find(self.TAG_DELIMITER)
124 tag, arg = token[:split], token[
138 for token in self.precondition_file_path_prefix:
140 path = token
141 if self.TAG_DELIMITER in token:
142 tag, path = token.split(self.TAG_DELIMITER)
160 for token in self.binary_test_ld_library_path:
162 path = token
163 if self.TAG_DELIMITER in token:
164 tag, path = token.split(self.TAG_DELIMITER)
179 for token in self.binary_test_profiling_library_path:
181 path = token
182 if self.TAG_DELIMITER in token:
183 tag, path = token.split(self.TAG_DELIMITER)