HomeSort by relevance Sort by last modified time
    Searched refs:SyntaxError (Results 1 - 25 of 472) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/javassist/src/main/javassist/compiler/
SyntaxError.java 18 public class SyntaxError extends CompileError {
19 public SyntaxError(Lex lexer) {
  /external/python/cpython3/Lib/test/
test_flufl.py 10 self.assertRaises(SyntaxError, compile, code.format('!='),
17 self.assertRaises(SyntaxError, compile, code.format('<>'),
test_string_literals.py 93 self.assertRaises(SyntaxError, eval, r""" '\x' """)
94 self.assertRaises(SyntaxError, eval, r""" '\x0' """)
95 self.assertRaises(SyntaxError, eval, r""" '\u' """)
96 self.assertRaises(SyntaxError, eval, r""" '\u0' """)
97 self.assertRaises(SyntaxError, eval, r""" '\u00' """)
98 self.assertRaises(SyntaxError, eval, r""" '\u000' """)
99 self.assertRaises(SyntaxError, eval, r""" '\U' """)
100 self.assertRaises(SyntaxError, eval, r""" '\U0' """)
101 self.assertRaises(SyntaxError, eval, r""" '\U00' """)
102 self.assertRaises(SyntaxError, eval, r""" '\U000' """
    [all...]
test_eof.py 12 except SyntaxError as msg:
22 except SyntaxError as msg:
test_future.py 37 with self.assertRaises(SyntaxError) as cm:
42 with self.assertRaises(SyntaxError) as cm:
47 with self.assertRaises(SyntaxError) as cm:
52 with self.assertRaises(SyntaxError) as cm:
57 with self.assertRaises(SyntaxError) as cm:
62 with self.assertRaises(SyntaxError) as cm:
67 with self.assertRaises(SyntaxError) as cm:
72 with self.assertRaises(SyntaxError) as cm:
84 except SyntaxError:
91 except SyntaxError
    [all...]
test_utf8source.py 20 except SyntaxError as msg:
35 except SyntaxError:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_future.py 32 except SyntaxError, msg:
40 except SyntaxError, msg:
48 except SyntaxError, msg:
56 except SyntaxError, msg:
64 except SyntaxError, msg:
72 except SyntaxError, msg:
80 except SyntaxError, msg:
93 except SyntaxError:
100 except SyntaxError:
test_eof.py 13 except SyntaxError, msg:
23 except SyntaxError, msg:
test_pep263.py 39 self.assertRaises(SyntaxError, eval, '\xff\x20')
42 self.assertRaises(SyntaxError, eval, '\xef\xbb\x20')
  /external/python/cpython2/Lib/test/
test_future.py 32 except SyntaxError, msg:
40 except SyntaxError, msg:
48 except SyntaxError, msg:
56 except SyntaxError, msg:
64 except SyntaxError, msg:
72 except SyntaxError, msg:
80 except SyntaxError, msg:
93 except SyntaxError:
100 except SyntaxError:
test_eof.py 12 except SyntaxError, msg:
22 except SyntaxError, msg:
test_source_encoding.py 41 self.assertRaises(SyntaxError, eval, '\xff\x20')
44 self.assertRaises(SyntaxError, eval, '\xef\xbb\x20')
50 with self.assertRaisesRegexp(SyntaxError, 'fake'):
52 with self.assertRaisesRegexp(SyntaxError, 'iso-8859-15'):
55 with self.assertRaisesRegexp(SyntaxError, 'BOM'):
58 with self.assertRaisesRegexp(SyntaxError, 'fake'):
60 with self.assertRaisesRegexp(SyntaxError, 'BOM'):
64 with self.assertRaisesRegexp(SyntaxError,
78 self.assertRaises(SyntaxError, __import__, 'test.' + module_name)
84 self.assertRaises(SyntaxError, compile, text, filename, 'exec'
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_future.py 32 except SyntaxError, msg:
40 except SyntaxError, msg:
48 except SyntaxError, msg:
56 except SyntaxError, msg:
64 except SyntaxError, msg:
72 except SyntaxError, msg:
80 except SyntaxError, msg:
93 except SyntaxError:
100 except SyntaxError:
test_eof.py 13 except SyntaxError, msg:
23 except SyntaxError, msg:
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_future.py 32 except SyntaxError, msg:
40 except SyntaxError, msg:
48 except SyntaxError, msg:
56 except SyntaxError, msg:
64 except SyntaxError, msg:
72 except SyntaxError, msg:
80 except SyntaxError, msg:
93 except SyntaxError:
100 except SyntaxError:
test_eof.py 13 except SyntaxError, msg:
23 except SyntaxError, msg:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_future.py 32 except SyntaxError, msg:
40 except SyntaxError, msg:
48 except SyntaxError, msg:
56 except SyntaxError, msg:
64 except SyntaxError, msg:
72 except SyntaxError, msg:
80 except SyntaxError, msg:
93 except SyntaxError:
100 except SyntaxError:
test_eof.py 13 except SyntaxError, msg:
23 except SyntaxError, msg:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_future.py 32 except SyntaxError, msg:
40 except SyntaxError, msg:
48 except SyntaxError, msg:
56 except SyntaxError, msg:
64 except SyntaxError, msg:
72 except SyntaxError, msg:
80 except SyntaxError, msg:
93 except SyntaxError:
100 except SyntaxError:
test_eof.py 13 except SyntaxError, msg:
23 except SyntaxError, msg:
  /test/vts-testcase/kernel/api/proc/
ProcCmdlineTest.py 25 raise SyntaxError("missing newline")
ProcQtaguidCtrlTest.py 32 raise SyntaxError
37 raise SyntaxError("Negative numbers not allowed!")
45 raise SyntaxError("match_no_sk_{file|gid} incorrect")
48 raise SyntaxError("Negative numbers not allowed!")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
Setup.py 35 except SyntaxError:
42 except (ImportError, SyntaxError):
  /external/python/cpython2/Tools/pybench/
Setup.py 35 except SyntaxError:
42 except (ImportError, SyntaxError):
  /external/python/cpython3/Tools/pybench/
Setup.py 35 except SyntaxError:
42 except (ImportError, SyntaxError):

Completed in 507 milliseconds

1 2 3 4 5 6 7 8 91011>>