/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 | 206 i.make_table(f1a,t1a,'from','to',context=True), 208 i.make_table(f1b,t1b,'from','to',context=True), 210 i.make_table(f1a,t1a,'from','to',context=True,numlines=6), 212 i.make_table(f1a,t1a,'from','to',context=True,numlines=0), 214 i.make_table(f1a,f1a,'from','to',context=True), 216 i.make_table(f1a,f1a,'from','to',context=False), 218 i.make_table([],[],'from','to',context=True), 220 i.make_table([],[],'from','to',context=False), 222 j.make_table(f2,t2), 224 i.make_table(f2,t2), [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/ |
D | wasm2yaml.cpp | 35 static WasmYAML::Table make_table(const wasm::WasmTable &Table) { in make_table() function 179 Im.TableImport = make_table(Import.Table); in dump() 201 TableSec->Tables.push_back(make_table(Table)); in dump()
|
/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/scapy/doc/scapy/ |
D | usage.rst | 405 Even better, a table can be built using the ``make_table()`` function to display information about … 412 >>> ans.make_table( 434 >>> ans.filter(lambda (s,r):TCP in r and r[TCP].flags&2).make_table(lambda (s,r): 860 single: tables, make_table() 862 Now we have a demonstration of the ``make_table()`` presentation function. It takes a list as param… 868 >>> ans.make_table( lambda (s,r): (s.dst, s.ttl, r.src) ) 883 >>> ans.make_table(lambda (s,r): (s.dst, s.dport, r.sprintf("%IP.id%"))) 1286 >>> res.make_table(lambda (s,r): (s.dst, s.ttl, r.src))
|
/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 | 1768 table=self.make_table(fromlines, tolines, fromdesc, todesc, 1981 def make_table(self,fromlines,tolines,fromdesc='',todesc='',context=False, member in HtmlDiff
|
/external/scapy/doc/notebooks/ |
D | Scapy in 15 minutes.ipynb | 85 …"ans.make_table(lambda (x, y): (\", \".join(z.summary() for z in x[IP].options) or '-', x[IP].ttl,… 923 "The `PacketList.make_table()` function can be very helpful. Here is a simple \"port scanner\":" 947 …"ans.make_table(lambda (x, y): (x[IP].dst, x.sprintf('%IP.proto%/{TCP:%r,TCP.dport%}{UDP:%r,UDP.dp…
|
/external/python/cpython3/Doc/library/ |
D | difflib.rst | 134 .. method:: make_table(fromlines, tolines, fromdesc='', todesc='', context=False, numlines=5)
|
/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/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.…
|