HomeSort by relevance Sort by last modified time
    Searched refs:lambda (Results 726 - 750 of 1923) sorted by null

<<21222324252627282930>>

  /external/v8/build/android/pylib/base/
base_test_result.py 116 plural = lambda n, s, p: '%d %s' % (n, p if n != 1 else s)
117 tests = lambda n: plural(n, 'test', 'tests')
test_dispatcher.py 316 test_collection_factory = lambda: shared_test_collection
322 test_collection_factory = lambda: test_collection.TestCollection(
  /external/v8/test/promises-aplus/
testcfg.py 113 for chunk in iter(lambda: f.read(8192), ''):
135 for chunk in iter(lambda: f.read(8192), ''):
  /external/v8/tools/
generate-ten-powers.scm 178 (apply string-append (map (lambda (str)
279 (lambda ()
  /external/v8/tools/release/
common_includes.py 100 return "\n".join(filter(lambda x: not x.startswith("#"), text.split("\n")))
342 lambda s: re.match(r"^branch\-heads/\d+\.\d+$", s),
345 return map(lambda s: s[13:], branches)
463 retry_on = retry_on or (lambda x: False)
494 cmd = lambda: self._side_effect_handler.Command(
499 cmd = lambda: self._side_effect_handler.Command(
516 cmd = lambda: self._side_effect_handler.ReadURL(url, params)
648 return filter(lambda r: self.GetVersionTag(r), revisions.splitlines())
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
avcenc_int.h 46 #define LAMBDA_FACTOR(lambda) ((int)((double)(1<<LAMBDA_ACCURACY_BITS)*lambda+0.5))
  /prebuilts/clang/darwin-x86/host/3.6/tools/scan-view/
Reporter.py 80 return map(lambda x:TextParameter(x),['To', 'From', 'SMTP Server', 'SMTP Port'])
148 return map(lambda x:TextParameter(x),['URL','Product'])
  /prebuilts/clang/host/darwin-x86/3.8/tools/scan-view/
Reporter.py 80 return map(lambda x:TextParameter(x),['To', 'From', 'SMTP Server', 'SMTP Port'])
148 return map(lambda x:TextParameter(x),['URL','Product'])
  /prebuilts/clang/host/darwin-x86/clang-2629532/tools/scan-view/share/
Reporter.py 80 return map(lambda x:TextParameter(x),['To', 'From', 'SMTP Server', 'SMTP Port'])
148 return map(lambda x:TextParameter(x),['URL','Product'])
  /prebuilts/clang/host/darwin-x86/clang-2658975/tools/scan-view/share/
Reporter.py 80 return map(lambda x:TextParameter(x),['To', 'From', 'SMTP Server', 'SMTP Port'])
148 return map(lambda x:TextParameter(x),['URL','Product'])
  /prebuilts/clang/host/darwin-x86/clang-2690385/tools/scan-view/share/
Reporter.py 80 return map(lambda x:TextParameter(x),['To', 'From', 'SMTP Server', 'SMTP Port'])
148 return map(lambda x:TextParameter(x),['URL','Product'])
  /prebuilts/clang/host/linux-x86/3.8/tools/scan-view/
Reporter.py 80 return map(lambda x:TextParameter(x),['To', 'From', 'SMTP Server', 'SMTP Port'])
148 return map(lambda x:TextParameter(x),['URL','Product'])
  /prebuilts/clang/host/linux-x86/clang-2629532/tools/scan-view/share/
Reporter.py 80 return map(lambda x:TextParameter(x),['To', 'From', 'SMTP Server', 'SMTP Port'])
148 return map(lambda x:TextParameter(x),['URL','Product'])
  /prebuilts/clang/host/linux-x86/clang-2658975/tools/scan-view/share/
Reporter.py 80 return map(lambda x:TextParameter(x),['To', 'From', 'SMTP Server', 'SMTP Port'])
148 return map(lambda x:TextParameter(x),['URL','Product'])
  /prebuilts/clang/host/linux-x86/clang-2690385/tools/scan-view/share/
Reporter.py 80 return map(lambda x:TextParameter(x),['To', 'From', 'SMTP Server', 'SMTP Port'])
148 return map(lambda x:TextParameter(x),['URL','Product'])
  /prebuilts/clang/linux-x86/host/3.6/tools/scan-view/
Reporter.py 80 return map(lambda x:TextParameter(x),['To', 'From', 'SMTP Server', 'SMTP Port'])
148 return map(lambda x:TextParameter(x),['URL','Product'])
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/test/
test_distributed_transactions.py 60 adapt = lambda x : x
63 adapt = lambda x : bytes(x, "ascii")
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
FormatParagraph.py 48 lines = map(lambda st, l=len(comment_header): st[l:], lines)
64 builder = lambda item, prefix=comment_header: prefix+item
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_functools.py 36 p = self.thetype(map, lambda x: x*10)
340 self.assertEqual(reduce(lambda x, y: x+y, ['a', 'b', 'c'], ''), 'abc')
342 reduce(lambda x, y: x+y, [['a', 'c'], [], ['d', 'w']], []),
345 self.assertEqual(reduce(lambda x, y: x*y, range(2,8), 1), 5040)
347 reduce(lambda x, y: x*y, range(2,21), 1L),
350 self.assertEqual(reduce(lambda x, y: x+y, Squares(10)), 285)
351 self.assertEqual(reduce(lambda x, y: x+y, Squares(10), 0), 285)
352 self.assertEqual(reduce(lambda x, y: x+y, Squares(0), 0), 0)
test_pyclbr.py 11 StaticMethodType = type(staticmethod(lambda: None))
12 ClassMethodType = type(classmethod(lambda c: None))
  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/test/
test_distributed_transactions.py 60 adapt = lambda x : x
63 adapt = lambda x : bytes(x, "ascii")
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
FormatParagraph.py 48 lines = map(lambda st, l=len(comment_header): st[l:], lines)
64 builder = lambda item, prefix=comment_header: prefix+item
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_functools.py 36 p = self.thetype(map, lambda x: x*10)
340 self.assertEqual(reduce(lambda x, y: x+y, ['a', 'b', 'c'], ''), 'abc')
342 reduce(lambda x, y: x+y, [['a', 'c'], [], ['d', 'w']], []),
345 self.assertEqual(reduce(lambda x, y: x*y, range(2,8), 1), 5040)
347 reduce(lambda x, y: x*y, range(2,21), 1L),
350 self.assertEqual(reduce(lambda x, y: x+y, Squares(10)), 285)
351 self.assertEqual(reduce(lambda x, y: x+y, Squares(10), 0), 285)
352 self.assertEqual(reduce(lambda x, y: x+y, Squares(0), 0), 0)
test_pyclbr.py 11 StaticMethodType = type(staticmethod(lambda: None))
12 ClassMethodType = type(classmethod(lambda c: None))
  /prebuilts/misc/common/swig/include/2.0.11/python/
pythonkw.swg 33 PYTHONKW(lambda);

Completed in 625 milliseconds

<<21222324252627282930>>