HomeSort by relevance Sort by last modified time
    Searched refs:lambda (Results 1226 - 1250 of 2665) sorted by null

<<41424344454647484950>>

  /external/python/cpython2/Lib/lib2to3/pgen2/
parse.py 87 self.convert = convert or (lambda grammar, node: node)
  /external/python/cpython2/Lib/
sre_constants.py 224 items.sort(key=lambda a: a[1])
  /external/python/cpython2/Lib/test/
sortperf.py 121 L = map(lambda x: --x, L)
test_index.py 140 indexobj = lambda x, obj: obj.seq[x]
143 sliceobj = lambda x, obj: obj.seq[x:]
301 self.assertRaises(OverflowError, lambda: "a" * self.pos)
302 self.assertRaises(OverflowError, lambda: "a" * self.neg)
test_socket.py 499 g = lambda a: inet_pton(AF_INET, a)
521 f = lambda a: inet_pton(AF_INET6, a)
535 g = lambda a: inet_ntop(AF_INET, a)
555 f = lambda a: inet_ntop(AF_INET6, a)
    [all...]
  /external/python/cpython3/Lib/email/
_encoded_words.py 65 lambda m: bytes.fromhex(m.group(1).decode()))
  /external/python/cpython3/Lib/idlelib/idle_test/
test_autoexpand.py 22 cls.auto_expand.bell = lambda: None
33 ## cls.text.bell = lambda: None
  /external/python/cpython3/Lib/idlelib/
parenmatch.py 175 lambda self=self, c=self.counter: self.handle_restore_timer(c))
  /external/python/cpython3/Lib/lib2to3/pgen2/
parse.py 87 self.convert = convert or (lambda grammar, node: node)
  /external/python/cpython3/Lib/
rlcompleter.py 204 atexit.register(lambda: readline.set_completer(None))
socket.py 76 lambda C: C.isupper() and C.startswith('AF_'))
81 lambda C: C.isupper() and C.startswith('SOCK_'))
86 lambda C: C.isupper() and C.startswith('MSG_'))
91 lambda C: C.isupper() and C.startswith('AI_'))
  /external/python/cpython3/Lib/test/
sortperf.py 121 L = list(map(lambda x: --x, L))
test_mimetypes.py 72 locale.getpreferredencoding = lambda: 'ascii'
  /external/python/cpython3/Lib/test/test_importlib/import_/
test_meta_path.py 29 first.find_spec = lambda self, fullname, path=None, parent=None: None
  /external/python/cpython3/Lib/test/test_importlib/
test_locks.py 15 locktype = classmethod(lambda cls: cls.LockType("some_lock"))
  /external/python/cpython3/Tools/msi/
csv_to_wxs.py 36 lambda m: ID_CHAR_SUBS.get(m.group(0), '_'),
  /external/python/setuptools/setuptools/
__init__.py 101 return lambda name: any(fnmatchcase(name, pat=pat) for pat in patterns)
archive_util.py 142 tarobj.chown = lambda *args: None
monkey.py 42 lambda item: None
  /external/scapy/scapy/
utils6.py 423 if len(addr) != 20 or not reduce(lambda x,y: x and y,
527 fop = [ lambda x,y: x | y,
528 lambda x,y: x & y,
529 lambda x,y: x ^ y
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
Util.py 97 items.sort(key = lambda (_,v): v)
  /external/swiftshader/third_party/SPIRV-Tools/utils/
generate_grammar_tables.py 338 inst_table = sorted(inst_table, key=lambda k: (k['opcode'], k['opname']))
360 inst_table = sorted(inst_table, key=lambda k: k['opcode'])
442 functor = lambda k: (k['value'], k['enumerant'])
444 functor = lambda k: (int(k['value'], 16), k['enumerant'])
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/docker/scripts/llvm_checksum/
llvm_checksum.py 121 files.sort(key=lambda x: x[0])
  /external/syzkaller/pkg/report/
fuchsia.go 145 if strings.Contains(name, "<lambda(") {
147 name = "lambda"
  /external/syzkaller/tools/syz-headerparser/headerlib/
container.py 95 maxcolwidth = lambda rows, x: max([len(row[x])+5 for row in rows])

Completed in 1185 milliseconds

<<41424344454647484950>>