/external/python/cpython2/Lib/test/ |
D | test_difflib.py | 167 i.make_table(f1a,t1a,'from','to',context=True), 169 i.make_table(f1b,t1b,'from','to',context=True), 171 i.make_table(f1a,t1a,'from','to',context=True,numlines=6), 173 i.make_table(f1a,t1a,'from','to',context=True,numlines=0), 175 i.make_table(f1a,f1a,'from','to',context=True), 177 i.make_table(f1a,f1a,'from','to',context=False), 179 i.make_table([],[],'from','to',context=True), 181 i.make_table([],[],'from','to',context=False), 183 j.make_table(f2,t2), 185 i.make_table(f2,t2), [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_difflib.py | 212 i.make_table(f1a,t1a,'from','to',context=True), 214 i.make_table(f1b,t1b,'from','to',context=True), 216 i.make_table(f1a,t1a,'from','to',context=True,numlines=6), 218 i.make_table(f1a,t1a,'from','to',context=True,numlines=0), 220 i.make_table(f1a,f1a,'from','to',context=True), 222 i.make_table(f1a,f1a,'from','to',context=False), 224 i.make_table([],[],'from','to',context=True), 226 i.make_table([],[],'from','to',context=False), 228 j.make_table(f2,t2), 230 i.make_table(f2,t2), [all …]
|
/external/scapy/scapy/ |
D | plist.py | 18 from scapy.utils import do_graph,hexdump,make_table,make_lined_table,make_tex_table,get_temp_file 131 def make_table(self, *args, **kargs): member in PacketList 134 return make_table(self.res, *args, **kargs)
|
D | utils.py | 1477 def make_table(*args, **kargs): function
|
/external/markdown/ |
D | test-markdown.py | 273 htmlDiff = htmldiff.make_table(expected_lines, actual_lines,
|
/external/python/cpython2/Lib/ |
D | difflib.py | 1730 table = self.make_table(fromlines,tolines,fromdesc,todesc, 1941 def make_table(self,fromlines,tolines,fromdesc='',todesc='',context=False, member in HtmlDiff
|
/external/python/cpython3/Lib/ |
D | difflib.py | 1767 table=self.make_table(fromlines, tolines, fromdesc, todesc, 1980 def make_table(self,fromlines,tolines,fromdesc='',todesc='',context=False, member in HtmlDiff
|
/external/scapy/scapy/layers/ |
D | inet.py | 1073 …return self.make_table(lambda s_r: (s_r[0].sprintf("%IP.dst%:{TCP:tcp%ir,TCP.dport%}{UDP:udp%ir,UD…
|
D | inet6.py | 3164 …return self.make_table(lambda s_r: (s_r[0].sprintf("%-42s,IPv6.dst%:{TCP:tcp%TCP.dport%}{UDP:udp%U…
|
/external/python/cpython3/Doc/library/ |
D | difflib.rst | 139 .. method:: make_table(fromlines, tolines, fromdesc='', todesc='', context=False, numlines=5)
|
/external/python/cpython2/Doc/library/ |
D | difflib.rst | 124 .. function:: make_table(fromlines, tolines [, fromdesc][, todesc][, context][, numlines])
|
/external/scapy/test/ |
D | regression.uts | 1043 ans.make_table(lambda s_r: (s_r[0].dst, s_r[0].dport, s_r[1].sprintf("{TCP:%TCP.flags%}{ICMP:%ICMP.…
|