| /src/external/apache2/llvm/dist/libcxx/utils/libcxx/test/ |
| features.py | 14 _isClang = lambda cfg: '__clang__' in compilerMacros(cfg) and '__apple_build_version__' not in compilerMacros(cfg) 15 _isAppleClang = lambda cfg: '__apple_build_version__' in compilerMacros(cfg) 16 _isGCC = lambda cfg: '__GNUC__' in compilerMacros(cfg) and '__clang__' not in compilerMacros(cfg) 17 _isMSVC = lambda cfg: '_MSC_VER' in compilerMacros(cfg) 18 _msvcVersion = lambda cfg: (int(compilerMacros(cfg)['_MSC_VER']) // 100, int(compilerMacros(cfg)['_MSC_VER']) % 100) 22 when=lambda cfg: hasCompileFlag(cfg, '-fcoroutines-ts') and 27 when=lambda cfg: hasCompileFlag(cfg, '-Werror=thread-safety'), 31 when=lambda cfg: hasCompileFlag(cfg, '-Wuser-defined-warnings'), 34 Feature(name='has-fblocks', when=lambda cfg: hasCompileFlag(cfg, '-fblocks')), 35 Feature(name='-fsized-deallocation', when=lambda cfg: hasCompileFlag(cfg, '-fsized-deallocation')) [all...] |
| params.py | 60 actions=lambda triple: filter(None, [ 74 default=lambda cfg: next(s for s in reversed(_allStandards) if getStdFlag(cfg, s)), 75 actions=lambda std: [ 77 AddCompileFlag(lambda cfg: getStdFlag(cfg, std)), 82 actions=lambda exceptions: [] if exceptions else [ 89 actions=lambda rtti: [] if rtti else [ 96 actions=lambda stdlib: [ 102 actions=lambda warnings: [] if not warnings else [ 108 actions=lambda debugLevel: [] if debugLevel == '' else [ 115 actions=lambda sanitizer: filter(None, [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-guile/ |
| hello.scm | 11 (catch #t (lambda () (setlocale LC_ALL "")) (lambda args #f))
|
| /src/crypto/external/bsd/heimdal/dist/lib/wind/ |
| stringprep.py | 60 return "|".join(map(lambda x: "WIND_PROFILE_%s" % (x.upper()), list)) 64 _merge_table(d, dict(map(lambda x: [x, ['name']], name_error))) 65 _merge_table(d, dict(map(lambda x: [x, ['ldap']], ldap_error))) 66 _merge_table(d, dict(map(lambda x: [x, ['sasl']], sasl_error))) 71 _merge_table(d, dict(map(lambda x: [x, ['name']], name_map))) 72 _merge_table(d, dict(map(lambda x: [x, ['ldap']], ldap_map))) 73 _merge_table(d, dict(map(lambda x: [x, ['ldap_case']], ldap_case_map))) 74 _merge_table(d, dict(map(lambda x: [x, ['sasl']], sasl_map)))
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.guile/ |
| scm-pretty-print.scm | 22 (let ((next! (lambda (iter) 36 (let ((next! (lambda (iter) 56 (lambda (printer) 72 (lambda (printer) 75 (lambda (printer) 86 (lambda (printer) 89 (lambda (printer) 103 (lambda (printer) #f) 104 (lambda (printer) 121 (lambda (printer [all...] |
| scm-frame-args.scm | 21 (lambda (printer) 29 (lambda (printer) "super struct") 30 (lambda (printer) 33 (lambda (iter) 60 (lambda (matcher val)
|
| scm-section-script.scm | 23 (lambda (printer) 46 (lambda (matcher val)
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.guile/ |
| scm-pretty-print.scm | 22 (let ((next! (lambda (iter) 36 (let ((next! (lambda (iter) 56 (lambda (printer) 72 (lambda (printer) 75 (lambda (printer) 86 (lambda (printer) 89 (lambda (printer) 103 (lambda (printer) #f) 104 (lambda (printer) 121 (lambda (printer [all...] |
| scm-frame-args.scm | 21 (lambda (printer) 29 (lambda (printer) "super struct") 30 (lambda (printer) 33 (lambda (iter) 60 (lambda (matcher val)
|
| scm-section-script.scm | 23 (lambda (printer) 46 (lambda (matcher val)
|
| /src/external/gpl3/gdb.old/dist/gdb/guile/lib/gdb/ |
| experimental.scm | 34 (lambda (p) (with-gdb-output-to-port p thunk))))
|
| types.scm | 36 (let ((find-in-baseclass (lambda (field) 43 (lambda (type) 94 (for-each (lambda (enum)
|
| /src/external/gpl3/gdb/dist/gdb/guile/lib/gdb/ |
| experimental.scm | 34 (lambda (p) (with-gdb-output-to-port p thunk))))
|
| types.scm | 36 (let ((find-in-baseclass (lambda (field) 43 (lambda (type) 94 (for-each (lambda (enum)
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.perf/ |
| gmonster-ptype-string.py | 43 func1 = lambda: utils.safe_execute("ptype hello") 44 func = lambda: utils.run_n_times(2, func1)
|
| template-breakpoints.py | 33 tfunc = lambda bound_bpcount=bpcount: self._do_test(bound_bpcount)
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.perf/ |
| gmonster-ptype-string.py | 43 func1 = lambda: utils.safe_execute("ptype hello") 44 func = lambda: utils.run_n_times(2, func1)
|
| template-breakpoints.py | 33 tfunc = lambda bound_bpcount=bpcount: self._do_test(bound_bpcount)
|
| /src/external/gpl3/gcc/dist/gcc/config/riscv/ |
| multilib-generator | 77 exts = list(map(lambda x: '_' + x, exts)) 121 ext = list(reduce(lambda x, y: x + y, ext_combs, [])) 126 ext = map(lambda e : reduce(lambda x, y: x + y, e), ext) 133 multilib_cfgs = filter(lambda x:not x.startswith("--"), sys.argv[1:]) 134 options = filter(lambda x:x.startswith("--"), sys.argv[1:]) 172 alts = filter(lambda x: len(x) != 0, alts) 173 alts = list(map(lambda a : arch_canonicalize(a, args.misa_spec), alts))
|
| /src/external/gpl3/gcc/dist/contrib/ |
| check-MAINTAINERS.py | 88 lines = list(dropwhile(lambda x: x.strip() != needle, lines)) 95 lines = list(dropwhile(lambda x: needle not in x, lines)) 102 lines = list(dropwhile(lambda x: needle not in x, lines)) 109 lines = list(dropwhile(lambda x: needle not in x, lines))[1:] 110 lines = list(dropwhile(lambda x: not has_tab(x), lines))
|
| /src/external/gpl3/gcc.old/dist/contrib/ |
| check-MAINTAINERS.py | 88 lines = list(dropwhile(lambda x: x.strip() != needle, lines)) 95 lines = list(dropwhile(lambda x: needle not in x, lines)) 102 lines = list(dropwhile(lambda x: needle not in x, lines)) 109 lines = list(dropwhile(lambda x: needle not in x, lines))[1:] 110 lines = list(dropwhile(lambda x: not has_tab(x), lines))
|
| /src/external/apache2/llvm/dist/llvm/utils/emacs/ |
| emacs.el | 29 (lambda nil
|
| /src/external/gpl3/gcc.old/dist/gcc/config/riscv/ |
| arch-canonicalize | 84 long_ext_prefixes_idx = map(lambda x: arch.find(x), LONG_EXT_PREFIXES) 87 long_ext_prefixes_idx = list(filter(lambda x: x != -1, long_ext_prefixes_idx)) 117 std_exts += list(filter(lambda x:len(x) == 1, long_exts)) 134 long_exts = list(sorted(filter(lambda x:len(x) != 1, long_exts),
|
| /src/external/gpl3/gcc/dist/gcc/cp/ |
| lambda.cc | 1 /* Perform the semantic phase of lambda parsing, i.e., the process of 36 /* Constructor for a lambda expression. */ 41 tree lambda = make_node (LAMBDA_EXPR); local 42 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) = CPLD_NONE; 43 LAMBDA_EXPR_CAPTURE_LIST (lambda) = NULL_TREE; 44 LAMBDA_EXPR_THIS_CAPTURE (lambda) = NULL_TREE; 45 LAMBDA_EXPR_REGEN_INFO (lambda) = NULL_TREE; 46 LAMBDA_EXPR_PENDING_PROXIES (lambda) = NULL; 47 return lambda; 70 /* Make sure any error messages refer to the lambda-introducer. * 736 tree lambda = TREE_VALUE (node); local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/cp/ |
| lambda.cc | 1 /* Perform the semantic phase of lambda parsing, i.e., the process of 36 /* Constructor for a lambda expression. */ 41 tree lambda = make_node (LAMBDA_EXPR); local 42 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) = CPLD_NONE; 43 LAMBDA_EXPR_CAPTURE_LIST (lambda) = NULL_TREE; 44 LAMBDA_EXPR_THIS_CAPTURE (lambda) = NULL_TREE; 45 LAMBDA_EXPR_REGEN_INFO (lambda) = NULL_TREE; 46 LAMBDA_EXPR_PENDING_PROXIES (lambda) = NULL; 47 LAMBDA_EXPR_MUTABLE_P (lambda) = false; 48 return lambda; 709 tree lambda = TREE_VALUE (node); local [all...] |