| /external/libvpx/libvpx/vp9/encoder/ |
| vp9_mcomp.c | [all...] |
| /external/python/cpython2/Lib/test/ |
| mapping_tests.py | 55 self.assertRaises(KeyError, lambda:d[knownkey]) 104 self.assertRaises(KeyError, lambda:p[key]) 351 k.sort(key=lambda k: (id(type(k)), k))
|
| test_audioop.py | 18 1: lambda *data: pack(1, data), 19 2: lambda *data: pack(2, data), 20 4: lambda *data: pack(4, data),
|
| test_file2k.py | 177 self.assertRaises(IOError, lambda: [line for line in self.f]) 559 lambda: io_func(), 560 lambda: self._close_and_reopen_file(), 716 'signal.SIGINT, lambda s, f: sys.stderr.write("$\\n")) ;' [all...] |
| test_struct.py | 465 self.test_pack_into(cls=lambda b: array.array('c', b), 470 self.test_pack_into(cls=lambda b: memoryview(bytearray(b)), 477 pack_into = lambda *args: struct.pack_into(fmt, *args)
|
| test_with.py | 527 with cm(lambda: True): 532 with cm(lambda: False): 537 with cm(lambda: 1 // 0):
|
| test_zlib.py | 183 compress = lambda s: zlib.compress(s, 1) 595 compress = lambda s: c.compress(s) + c.flush() 601 decompress = lambda s: d.decompress(s) + d.flush()
|
| /external/python/cpython3/Lib/ |
| enum.py | 659 members.sort(key=lambda t: (t[1], t[0])) 662 members.sort(key=lambda t: t[0]) [all...] |
| /external/python/cpython3/Lib/test/ |
| test_abc.py | 417 lambda x: [], 418 lambda: 42, 419 lambda: [42],
|
| test_generators.py | 92 # Issue #23192: Test that a lambda returning a generator behaves 94 f = lambda: (yield 1) 98 f2 = lambda: (yield from g()) 101 f3 = lambda: (yield from f()) [all...] |
| test_with.py | 535 with cm(lambda: True): 540 with cm(lambda: False): 545 with cm(lambda: 1//0):
|
| /external/python/cpython3/Lib/test/test_importlib/ |
| test_util.py | 137 func = self.util.module_for_loader(lambda x: x) 140 fxn = self.module_for_loader(lambda self, module: module) 260 fxn = lambda: module
|
| /external/python/cpython3/Lib/unittest/test/ |
| test_result.py | 418 result._exc_info_to_string = lambda *_: '' 424 result._exc_info_to_string = lambda *_: '' 430 result._exc_info_to_string = lambda *_: ''
|
| /external/python/setuptools/setuptools/tests/ |
| test_easy_install.py | 93 cmd.check_pth_processing = lambda: True 103 cmd.check_pth_processing = lambda: True 127 mock_gsp = lambda: [path]
|
| /external/scapy/scapy/ |
| sendrecv.py | 431 def __sr_loop(srfunc, pkts, prn=lambda x:x[1].summary(), prnfail=lambda x:x.summary(), inter=1, timeout=None, count=None, verbose=None, store=1, *args, **kargs): 497 def sndrcvflood(pks, pkt, inter=0, verbose=None, chainCC=False, prn=lambda x: x): 617 Ex: prn = lambda x: x.summary() 624 Ex: lfilter = lambda x: x.haslayer(Padding) 639 Ex: stop_filter = lambda x: x.haslayer(TCP) 652 >>> sniff(lfilter=lambda pkt: ARP in pkt) 657 ... prn=lambda pkt: "%s: %s" % (pkt.sniffed_on, 661 ... prn=lambda pkt: "%s: %s" % (pkt.sniffed_on,
|
| /external/tensorflow/tensorflow/contrib/slim/python/slim/nets/ |
| inception_v3.py | 32 trunc_normal = lambda stddev: init_ops.truncated_normal_initializer(0.0, stddev) 103 depth = lambda d: max(int(d * depth_multiplier), min_depth) 570 depth = lambda d: max(int(d * depth_multiplier), min_depth)
|
| /external/tensorflow/tensorflow/python/keras/engine/ |
| training_dataset_test.py | 447 dataset = dataset.filter(lambda x, y: True).batch(10) 484 dataset = dataset.filter(lambda x, y: True).batch(10) 518 dataset = dataset.filter(lambda x, y: True).batch(10)
|
| /external/tensorflow/tensorflow/python/keras/optimizer_v2/ |
| adagrad_test.py | 80 learning_rate = lambda: 3.0 350 loss_repeated = lambda: math_ops.reduce_sum( # pylint: disable=g-long-lambda 354 loss_aggregated = lambda: 2 * math_ops.reduce_sum( # pylint: disable=g-long-lambda
|
| optimizer_v2.py | 89 loss = lambda: 3 * var1 * var1 + 2 * var2 * var2 188 loss = lambda: 3 * var1 + 2 * var2 856 deferred_restorations.sort(key=lambda position: position.restore_uid [all...] |
| /external/tensorflow/tensorflow/python/ops/parallel_for/ |
| gradients_test.py | 396 y = functional_ops.scan(lambda a, e: a + e, elems, initializer=x) 405 _, y = tf_control_flow_ops.while_loop(lambda i, a: i > 5., 406 lambda i, a: (i + 1, a + i),
|
| /external/toolchain-utils/cros_utils/ |
| pstat.py | 220 column = map(lambda x: x[index], listoflists) 223 column = abut(column, map(lambda x: x[index], listoflists)) 225 evalstring = 'map(lambda x: x' + cnums + ', listoflists)' 229 column = map(lambda x: x[index], listoflists) 330 function = 'filter(lambda x: ' + criterion + ',listoflists)' 371 function = 'filter(lambda x: ' + criterion + ',listoflists)' 401 function = 'filter(lambda x: ' + criterion + ',listoflists)' 627 returned ... map(lambda x: 'criterion',listoflists). 632 function = 'map(lambda x: ' + criterion + ',listoflists)' 861 function = 'filter(lambda x: ' + criterion + ',a) [all...] |
| /external/webrtc/webrtc/modules/audio_processing/aecm/ |
| aecm_core_mips.c | 73 const int16_t* lambda); [all...] |
| /external/python/cpython2/Lib/lib-tk/test/test_ttk/ |
| test_widgets.py | 227 btn = ttk.Button(self.root, command=lambda: success.append(1)) 344 test_invalid = lambda: success.append(True) 347 self.entry['validatecommand'] = lambda: False 358 self.entry['validatecommand'] = lambda: True 447 lambda evt: success.append(True)) 463 self.combo['postcommand'] = lambda: success.append(True) 703 conv = lambda x: x 785 funcid = self.scale.bind('<<RangeChanged>>', lambda evt: failure.pop()) 803 conv = lambda x: x 821 conv = lambda x: [all...] |
| /external/tensorflow/tensorflow/contrib/cudnn_rnn/python/kernel_tests/ |
| cudnn_rnn_test.py | 239 single_cell = lambda: cudnn_rnn_ops.CudnnCompatibleLSTMCell(num_units) 241 single_cell = lambda: cudnn_rnn_ops.CudnnCompatibleGRUCell(num_units) 243 single_cell = (lambda: rnn_cell_impl.BasicRNNCell(num_units, math_ops.tanh)) 246 lambda: rnn_cell_impl.BasicRNNCell(num_units, gen_nn_ops.relu)) 769 lambda: rnn_cell_impl.MultiRNNCell([single_cell_fn()]), [all...] |
| /external/tensorflow/tensorflow/contrib/eager/python/ |
| network_test.py | 249 map_func=lambda full_name: name_mapping[full_name]) 353 make_checkpoint, self.get_temp_dir(), map_func=lambda n: "foo") 357 map_func=lambda n: "foo") 360 loader, checkpoint, map_func=lambda n: "foo") 373 loader, checkpoint, map_func=lambda n: "foo") [all...] |