Home
last modified time | relevance | path

Searched refs:SyntaxErrorInOwnersFile (Results 1 – 2 of 2) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/depot_tools/
H A Downers.py98 class SyntaxErrorInOwnersFile(Exception): class
100 super(SyntaxErrorInOwnersFile, self).__init__((path, lineno, msg))
362 raise SyntaxErrorInOwnersFile(owners_path, lineno,
373 raise SyntaxErrorInOwnersFile(owners_path, lineno,
412 raise SyntaxErrorInOwnersFile(owners_status_path, lineno,
419 raise SyntaxErrorInOwnersFile(owners_status_path, lineno,
432 raise SyntaxErrorInOwnersFile(owners_path, lineno,
450 raise SyntaxErrorInOwnersFile(owners_path, lineno,
470 raise SyntaxErrorInOwnersFile(start, lineno, 'file: include must specify '
510 raise SyntaxErrorInOwnersFile(include_file, lineno,
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/depot_tools/tests/
H A Downers_unittest.py250 self.assertRaises(owners.SyntaxErrorInOwnersFile,
325 except owners.SyntaxErrorInOwnersFile as e:
339 except owners.SyntaxErrorInOwnersFile as e: