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

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_raise.py 29 from ..fixer_util import Name, Call, Attr, ArgList, is_tuple
53 if is_tuple(exc):
54 while is_tuple(exc):
67 if is_tuple(val):
fix_throw.py 14 from ..fixer_util import Name, Call, ArgList, Attr, is_tuple
40 if is_tuple(val):
fix_except.py 28 from ..fixer_util import Assign, Attr, Name, is_tuple, is_list, syms
77 if is_tuple(N) or is_list(N):
fix_print.py 21 from ..fixer_util import Name, Call, Comma, String, is_tuple
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_raise.py 29 from ..fixer_util import Name, Call, Attr, ArgList, is_tuple
53 if is_tuple(exc):
54 while is_tuple(exc):
67 if is_tuple(val):
fix_throw.py 14 from ..fixer_util import Name, Call, ArgList, Attr, is_tuple
40 if is_tuple(val):
fix_except.py 28 from ..fixer_util import Assign, Attr, Name, is_tuple, is_list, syms
77 if is_tuple(N) or is_list(N):
fix_print.py 21 from ..fixer_util import Name, Call, Comma, String, is_tuple
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_raise.py 29 from ..fixer_util import Name, Call, Attr, ArgList, is_tuple
53 if is_tuple(exc):
54 while is_tuple(exc):
67 if is_tuple(val):
fix_throw.py 14 from ..fixer_util import Name, Call, ArgList, Attr, is_tuple
40 if is_tuple(val):
fix_except.py 28 from ..fixer_util import Assign, Attr, Name, is_tuple, is_list, syms
77 if is_tuple(N) or is_list(N):
fix_print.py 21 from ..fixer_util import Name, Call, Comma, String, is_tuple
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_raise.py 29 from ..fixer_util import Name, Call, Attr, ArgList, is_tuple
53 if is_tuple(exc):
54 while is_tuple(exc):
67 if is_tuple(val):
fix_throw.py 14 from ..fixer_util import Name, Call, ArgList, Attr, is_tuple
40 if is_tuple(val):
fix_except.py 28 from ..fixer_util import Assign, Attr, Name, is_tuple, is_list, syms
77 if is_tuple(N) or is_list(N):
fix_print.py 21 from ..fixer_util import Name, Call, Comma, String, is_tuple
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_raise.py 29 from ..fixer_util import Name, Call, Attr, ArgList, is_tuple
53 if is_tuple(exc):
54 while is_tuple(exc):
67 if is_tuple(val):
fix_throw.py 14 from ..fixer_util import Name, Call, ArgList, Attr, is_tuple
40 if is_tuple(val):
fix_except.py 28 from ..fixer_util import Assign, Attr, Name, is_tuple, is_list, syms
77 if is_tuple(N) or is_list(N):
fix_print.py 21 from ..fixer_util import Name, Call, Comma, String, is_tuple
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/
test_util.py 32 def is_tuple(self, string): member in class:Test_is_tuple
33 return fixer_util.is_tuple(parse(string, strip_levels=2))
36 self.assertTrue(self.is_tuple("(a, b)"))
37 self.assertTrue(self.is_tuple("(a, (b, c))"))
38 self.assertTrue(self.is_tuple("((a, (b, c)),)"))
39 self.assertTrue(self.is_tuple("(a,)"))
40 self.assertTrue(self.is_tuple("()"))
43 self.assertFalse(self.is_tuple("(a)"))
44 self.assertFalse(self.is_tuple("('foo') % (b, c)"))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_util.py 32 def is_tuple(self, string): member in class:Test_is_tuple
33 return fixer_util.is_tuple(parse(string, strip_levels=2))
36 self.assertTrue(self.is_tuple("(a, b)"))
37 self.assertTrue(self.is_tuple("(a, (b, c))"))
38 self.assertTrue(self.is_tuple("((a, (b, c)),)"))
39 self.assertTrue(self.is_tuple("(a,)"))
40 self.assertTrue(self.is_tuple("()"))
43 self.assertFalse(self.is_tuple("(a)"))
44 self.assertFalse(self.is_tuple("('foo') % (b, c)"))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_util.py 32 def is_tuple(self, string): member in class:Test_is_tuple
33 return fixer_util.is_tuple(parse(string, strip_levels=2))
36 self.assertTrue(self.is_tuple("(a, b)"))
37 self.assertTrue(self.is_tuple("(a, (b, c))"))
38 self.assertTrue(self.is_tuple("((a, (b, c)),)"))
39 self.assertTrue(self.is_tuple("(a,)"))
40 self.assertTrue(self.is_tuple("()"))
43 self.assertFalse(self.is_tuple("(a)"))
44 self.assertFalse(self.is_tuple("('foo') % (b, c)"))
  /external/libxml2/python/
libxml.c 3494 int is_tuple = 0; local
3553 int is_tuple = 0; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
fixer_util.py 137 def is_tuple(node): function

Completed in 920 milliseconds

1 2