Searched refs:d22v (Results 1 – 3 of 3) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/ |
D | py3_test_grammar.py | 260 def d22v(a, b, c=1, d=2, *rest): pass function 261 d22v(1, 2) 262 d22v(1, 2, 3) 263 d22v(1, 2, 3, 4) 264 d22v(1, 2, 3, 4, 5) 265 d22v(*(1, 2, 3, 4)) 266 d22v(1, 2, *(3, 4, 5)) 267 d22v(1, *(2, 3), **{'d': 4})
|
D | py2_test_grammar.py | 272 def d22v(a, b, c=1, d=2, *rest): pass function 273 d22v(1, 2) 274 d22v(1, 2, 3) 275 d22v(1, 2, 3, 4) 276 d22v(1, 2, 3, 4, 5) 277 d22v(*(1, 2, 3, 4)) 278 d22v(1, 2, *(3, 4, 5)) 279 d22v(1, *(2, 3), **{'d': 4})
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_grammar.py | 269 def d22v(a, b, c=1, d=2, *rest): pass function 270 d22v(1, 2) 271 d22v(1, 2, 3) 272 d22v(1, 2, 3, 4) 273 d22v(1, 2, 3, 4, 5) 274 d22v(*(1, 2, 3, 4)) 275 d22v(1, 2, *(3, 4, 5)) 276 d22v(1, *(2, 3), **{'d': 4})
|