/third_party/parse5/test/data/parser-feedback/ |
D | tests12.test | 4 …><body><p>foo<math><mtext><i>baz</i></mtext><annotation-xml><svg><desc><b>eggs</b></desc><g><forei… 5 …><body><p>foo<math><mtext><i>baz</i></mtext><annotation-xml><svg><desc><b>eggs</b></desc><g><forei… 77 "eggs" 174 …tml><body>foo<math><mtext><i>baz</i></mtext><annotation-xml><svg><desc><b>eggs</b></desc><g><forei… 175 …tml><body>foo<math><mtext><i>baz</i></mtext><annotation-xml><svg><desc><b>eggs</b></desc><g><forei… 242 "eggs"
|
/third_party/node/tools/gyp/ |
D | .gitignore | 12 develop-eggs/ 15 eggs/ 16 .eggs/
|
/third_party/python/Lib/test/ |
D | inspect_fodder.py | 9 eggs(b + d, c + f) 12 def eggs(x, y): function
|
D | test_named_expressions.py | 405 def eggs(b): function 408 res = [spam(a := eggs(b := h)) for h in range(2)] 418 def eggs(b): function 421 res = [spam(a := eggs(a := h)) for h in range(2)]
|
D | test_yield_from.py | 971 def eggs(g): function 977 for stack in spam(eggs(gen())):
|
D | test_class.py | 440 testme.eggs = "spam, spam, spam and ham"
|
/third_party/python/Doc/library/ |
D | pprint.rst | 88 >>> stuff = ['spam', 'eggs', 'lumberjack', 'knights', 'ni'] 92 [ ['spam', 'eggs', 'lumberjack', 'knights', 'ni'], 94 'eggs', 100 [['spam', 'eggs', 'lumberjack', 102 'spam', 'eggs', 'lumberjack', 'knights', 104 >>> tup = ('spam', ('eggs', ('lumberjack', ('knights', ('ni', ('dead', 108 ('spam', ('eggs', ('lumberjack', ('knights', ('ni', ('dead', (...))))))) 161 >>> stuff = ['spam', 'eggs', 'lumberjack', 'knights', 'ni'] 166 'eggs', 199 "[<Recursion on list with id=...>, 'spam', 'eggs', 'lumberjack', 'knights', 'ni']"
|
D | traceback.rst | 509 >>> traceback.format_list([('spam.py', 3, '<module>', 'spam.eggs()'), 510 ... ('eggs.py', 42, 'eggs', 'return "bacon"')]) 511 [' File "spam.py", line 3, in <module>\n spam.eggs()\n', 512 ' File "eggs.py", line 42, in eggs\n return "bacon"\n']
|
D | unittest.mock-examples.rst | 531 …... response = self.backend.get_endpoint('foobar').create_call('spam', 'eggs').start_call() 571 >>> chained = call.get_endpoint('foobar').create_call('spam', 'eggs').start_call() 765 >>> mock.foo_bar('baz', spam='eggs') 766 >>> mock.foo_bar.assert_called_with('baz', spam='eggs') 772 >>> mock.foo_bar.assert_called_once_with('baz', spam='eggs') 774 >>> mock.foo_bar.assert_called_once_with('baz', spam='eggs') 1022 >>> mock['d'] = 'eggs' 1026 'eggs' 1034 [call('b', 'fish'), call('d', 'eggs')] 1036 {'a': 1, 'b': 'fish', 'c': 3, 'd': 'eggs'}
|
D | shelve.rst | 55 db['eggs'] = 'eggs'
|
D | fileinput.rst | 70 with fileinput.input(files=('spam.txt', 'eggs.txt'), encoding="utf-8") as f: 168 with FileInput(files=('spam.txt', 'eggs.txt')) as input:
|
D | difflib.rst | 176 >>> s1 = ['bacon\n', 'eggs\n', 'ham\n', 'guido\n'] 184 ! eggs 308 >>> s1 = ['bacon\n', 'eggs\n', 'ham\n', 'guido\n'] 315 -eggs
|
D | zipfile.rst | 195 myzip.write('eggs.txt') 260 with myzip.open('eggs.txt') as myfile: 801 $ python -m zipfile -c monty.zip spam.txt eggs.txt
|
D | csv.rst | 78 >>> with open('eggs.csv', newline='') as csvfile: 108 with open('eggs.csv', 'w', newline='') as csvfile:
|
D | functools.rst | 481 >>> fun(['spam', 'spam', 'eggs', 'spam'], verbose=True) 485 2 eggs
|
/third_party/python/Lib/importlib/metadata/ |
D | __init__.py | 791 self.eggs = FreezableDefaultDict(list) 803 self.eggs[legacy_normalized].append(path.joinpath(child)) 806 self.eggs.freeze() 814 eggs = ( 815 self.eggs[prepared.legacy_normalized] 817 else itertools.chain.from_iterable(self.eggs.values()) 819 return itertools.chain(infos, eggs)
|
/third_party/grpc/src/python/grpcio/ |
D | .gitignore | 7 *.eggs/
|
/third_party/python/Lib/test/test_importlib/ |
D | test_spec.py | 47 module.eggs = self.EGGS 258 self.assertEqual(module.eggs, 1) 268 self.assertEqual(loaded.eggs, 1) 348 self.assertEqual(loaded.eggs, 1) 356 loaded.eggs = 2 359 self.assertEqual(loaded.eggs, 1)
|
/third_party/python/Doc/tutorial/ |
D | inputoutput.rst | 88 ... repr((x, y, ('spam', 'eggs'))) 89 "(32.5, 40000, ('spam', 'eggs'))" 154 >>> print('{0} and {1}'.format('spam', 'eggs')) 155 spam and eggs 156 >>> print('{1} and {0}'.format('spam', 'eggs')) 157 eggs and spam
|
D | errors.rst | 203 ... raise Exception('spam', 'eggs') 214 ('spam', 'eggs') 215 ('spam', 'eggs') 217 y = eggs
|
D | controlflow.rst | 1041 >>> def f(ham: str, eggs: str = 'eggs') -> str: 1043 ... print("Arguments:", ham, eggs) 1044 ... return ham + ' and ' + eggs 1047 Annotations: {'ham': <class 'str'>, 'return': <class 'str'>, 'eggs': <class 'str'>} 1048 Arguments: spam eggs 1049 'spam and eggs'
|
D | introduction.rst | 149 >>> 'spam eggs' # single quotes 150 'spam eggs'
|
/third_party/littlefs/tests/ |
D | test_alloc.toml | 9 const char *names[FILES] = {"bacon", "eggs", "pancakes"}; 52 const char *names[FILES] = {"bacon", "eggs", "pancakes"}; 92 const char *names[FILES] = {"bacon", "eggs", "pancakes"}; 147 const char *names[FILES] = {"bacon", "eggs", "pancakes"};
|
/third_party/protobuf/ |
D | .gitignore | 57 python/.eggs/
|
/third_party/python/Modules/_ctypes/ |
D | _ctypes_test.c | 489 EXPORT(int) getSPAMANDEGGS(EGG **eggs) in getSPAMANDEGGS() argument 491 *eggs = my_eggs; in getSPAMANDEGGS()
|