/prebuilts/go/darwin-x86/test/ |
closure.go | 81 func newfunc() func(int) int { return func(x int) int { return x } } func 102 x, y := newfunc(), newfunc() 104 println("newfunc returned broken funcs") 110 println("newfunc allocated unexpectedly")
|
/prebuilts/go/linux-x86/test/ |
closure.go | 81 func newfunc() func(int) int { return func(x int) int { return x } } func 102 x, y := newfunc(), newfunc() 104 println("newfunc returned broken funcs") 110 println("newfunc allocated unexpectedly")
|
/external/google-breakpad/src/processor/ |
module_comparer.h | 82 bool CompareFunction(const BasicFunc *oldfunc, const FastFunc *newfunc) const;
|
/toolchain/binutils/binutils-2.25/bfd/ |
hash.c | 369 struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *, 404 table->newfunc = newfunc; 412 struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *, 417 return bfd_hash_table_init_n (table, newfunc, entsize, 509 hashp = (*table->newfunc) (NULL, table, string);
|
coff-h8300.c | 151 struct bfd_hash_entry *(*newfunc) 161 return (bfd_hash_table_init (&table->root, newfunc, entsize)); [all...] |
bfd-in.h | 366 struct bfd_hash_entry *(*newfunc) 360 struct bfd_hash_entry *(*newfunc) member in struct:bfd_hash_table [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
funcobject.c | 372 PyFunctionObject *newfunc;
local 426 newfunc = (PyFunctionObject *)PyFunction_New((PyObject *)code,
428 if (newfunc == NULL)
433 Py_DECREF(newfunc->func_name);
434 newfunc->func_name = name;
438 newfunc->func_defaults = defaults;
442 newfunc->func_closure = closure;
445 return (PyObject *)newfunc;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
funcobject.c | 372 PyFunctionObject *newfunc;
local 426 newfunc = (PyFunctionObject *)PyFunction_New((PyObject *)code,
428 if (newfunc == NULL)
433 Py_DECREF(newfunc->func_name);
434 newfunc->func_name = name;
438 newfunc->func_defaults = defaults;
442 newfunc->func_closure = closure;
445 return (PyObject *)newfunc;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
pstats.py | 259 newfunc = func_strip_path(func)
260 if len(func_std_string(newfunc)) > max_name_len:
261 max_name_len = len(func_std_string(newfunc))
266 if newfunc in newstats:
267 newstats[newfunc] = add_func_stats(
268 newstats[newfunc],
271 newstats[newfunc] = (cc, nc, tt, ct, newcallers)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
pstats.py | 251 newfunc = func_strip_path(func) 252 if len(func_std_string(newfunc)) > max_name_len: 253 max_name_len = len(func_std_string(newfunc)) 258 if newfunc in newstats: 259 newstats[newfunc] = add_func_stats( 260 newstats[newfunc], 263 newstats[newfunc] = (cc, nc, tt, ct, newcallers)
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
pstats.py | 251 newfunc = func_strip_path(func) 252 if len(func_std_string(newfunc)) > max_name_len: 253 max_name_len = len(func_std_string(newfunc)) 258 if newfunc in newstats: 259 newstats[newfunc] = add_func_stats( 260 newstats[newfunc], 263 newstats[newfunc] = (cc, nc, tt, ct, newcallers)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pstats.py | 251 newfunc = func_strip_path(func) 252 if len(func_std_string(newfunc)) > max_name_len: 253 max_name_len = len(func_std_string(newfunc)) 258 if newfunc in newstats: 259 newstats[newfunc] = add_func_stats( 260 newstats[newfunc], 263 newstats[newfunc] = (cc, nc, tt, ct, newcallers)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pstats.py | 251 newfunc = func_strip_path(func) 252 if len(func_std_string(newfunc)) > max_name_len: 253 max_name_len = len(func_std_string(newfunc)) 258 if newfunc in newstats: 259 newstats[newfunc] = add_func_stats( 260 newstats[newfunc], 263 newstats[newfunc] = (cc, nc, tt, ct, newcallers)
|
/device/linaro/bootloader/edk2/StdLib/Include/sys/ |
sysctl.h | 119 int (*newfunc)(struct sysctl_req *, void *, size_t);
member in struct:sysctl_req 151 #define SYSCTL_IN(r, p, l) (r->newfunc)(r, p, l)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_functools.py | 11 def newfunc(*fargs, **fkeywords):
function in function:PythonPartial 15 newfunc.func = func
16 newfunc.args = args
17 newfunc.keywords = keywords
18 return newfunc
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_functools.py | 11 def newfunc(*fargs, **fkeywords): function in function:PythonPartial 15 newfunc.func = func 16 newfunc.args = args 17 newfunc.keywords = keywords 18 return newfunc
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_functools.py | 11 def newfunc(*fargs, **fkeywords): function in function:PythonPartial 15 newfunc.func = func 16 newfunc.args = args 17 newfunc.keywords = keywords 18 return newfunc
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_functools.py | 11 def newfunc(*fargs, **fkeywords): function in function:PythonPartial 15 newfunc.func = func 16 newfunc.args = args 17 newfunc.keywords = keywords 18 return newfunc
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_functools.py | 11 def newfunc(*fargs, **fkeywords): function in function:PythonPartial 15 newfunc.func = func 16 newfunc.args = args 17 newfunc.keywords = keywords 18 return newfunc
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
object.h | 321 typedef PyObject *(*newfunc)(struct _typeobject *, PyObject *, PyObject *);
typedef 390 newfunc tp_new;
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
object.h | 321 typedef PyObject *(*newfunc)(struct _typeobject *, PyObject *, PyObject *);
typedef 390 newfunc tp_new;
[all...] |
/prebuilts/gdb/darwin-x86/include/python2.7/ |
object.h | 321 typedef PyObject *(*newfunc)(struct _typeobject *, PyObject *, PyObject *); typedef 390 newfunc tp_new; [all...] |
/prebuilts/gdb/linux-x86/include/python2.7/ |
object.h | 321 typedef PyObject *(*newfunc)(struct _typeobject *, PyObject *, PyObject *); typedef 390 newfunc tp_new; [all...] |
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
object.h | 321 typedef PyObject *(*newfunc)(struct _typeobject *, PyObject *, PyObject *); typedef 390 newfunc tp_new; [all...] |
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
object.h | 321 typedef PyObject *(*newfunc)(struct _typeobject *, PyObject *, PyObject *); typedef 390 newfunc tp_new; [all...] |