/external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/ |
copy.pass.cpp | 32 std::function<float(float, float)> fnc = _pow; local 33 auto task = std::bind(fnc, 2.f, 4.f);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.bind/ |
copy.pass.cpp | 30 std::function<float(float, float)> fnc = _pow; local 31 auto task = std::bind(fnc, 2.f, 4.f);
|
/external/libchrome/sandbox/linux/seccomp-bpf/ |
trap.h | 30 uint16_t Add(TrapFnc fnc, const void* aux, bool safe) override; 44 TrapKey() : fnc(NULL), aux(NULL), safe(false) {} 45 TrapKey(TrapFnc f, const void* a, bool s) : fnc(f), aux(a), safe(s) {} 46 TrapFnc fnc; member in struct:sandbox::Trap::TrapKey
|
/external/valgrind/callgrind/ |
clo.c | 101 fn_config* fnc = (fn_config*) CLG_MALLOC("cl.clo.nf.1", local 104 fnc->dump_before = CONFIG_DEFAULT; 105 fnc->dump_after = CONFIG_DEFAULT; 106 fnc->zero_before = CONFIG_DEFAULT; 107 fnc->toggle_collect = CONFIG_DEFAULT; 108 fnc->skip = CONFIG_DEFAULT; 109 fnc->pop_on_jump = CONFIG_DEFAULT; 110 fnc->group = CONFIG_DEFAULT; 111 fnc->separate_callers = CONFIG_DEFAULT; 112 fnc->separate_recursions = CONFIG_DEFAULT 302 fn_config* fnc; local 432 fn_config* fnc = get_fnc(tmp_str); local 437 fn_config* fnc = get_fnc(tmp_str); local 442 fn_config* fnc = get_fnc(tmp_str); local 447 fn_config* fnc = get_fnc(tmp_str); local 452 fn_config* fnc = get_fnc(tmp_str); local 463 fn_config* fnc = get_fnc(tmp_str); local 472 fn_config* fnc; local 487 fn_config* fnc; local 496 fn_config* fnc; local 505 fn_config* fnc; local [all...] |
/external/libchrome/sandbox/linux/bpf_dsl/ |
trap_registry.h | 48 virtual uint16_t Add(TrapFnc fnc, const void* aux, bool safe) = 0;
|
/external/blktrace/btt/ |
dip_rb.c | 68 void (*fnc)(struct io *iop, struct io *this), 77 if (fnc) fnc(iop, this); 82 rb_foreach(n->rb_left, iop, fnc, head); 84 rb_foreach(n->rb_right, iop, fnc, head);
|
/frameworks/rs/driver/runtime/ |
rs_cl.c | 25 #define FN_FUNC_FN(fnc) \ 26 extern float2 __attribute__((overloadable)) fnc(float2 v) { \ 28 r.x = fnc(v.x); \ 29 r.y = fnc(v.y); \ 32 extern float3 __attribute__((overloadable)) fnc(float3 v) { \ 34 r.x = fnc(v.x); \ 35 r.y = fnc(v.y); \ 36 r.z = fnc(v.z); \ 39 extern float4 __attribute__((overloadable)) fnc(float4 v) { \ 41 r.x = fnc(v.x); [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/ |
cfadmin | 17 def help(cf, fnc=None): 21 if fnc: 23 cmd = getattr(self, fnc) 27 print "No function named: %s found" % fnc 31 print "Usage: %s %s" % (fnc, " ".join([ "[%s]" % a for a in args[1:]]))
|
cwutil | 94 def help(fnc=None): 100 if fnc: 102 cmd = getattr(self, fnc) 106 print "No function named: %s found" % fnc 110 print "Usage: %s %s" % (fnc, " ".join([ "[%s]" % a for a in args]))
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/ |
sequence.py | 108 def __init__(self, id=None, domain_name=None, fnc=increment_by_one, init_val=None): 123 :param fnc: Optional function to use for the incrementation, by default we just increment by one 126 :type fnc: function, str 138 init_val = fnc(init_val) 144 self.item_type = type(fnc(None)) 147 if isinstance(fnc, six.string_types): 149 fnc = find_class(fnc) 150 self.fnc = fnc [all...] |
/ndk/tests/device/test-stlport_shared-exception/jni/ |
catch3.cpp | 22 void fnc(C *obj) { throw obj; } function 95 try { fnc((C *)d); } 101 try { fnc((C *)d); } 107 try { fnc((C *)d); }
|
catch3p.cpp | 21 void fnc(C *obj) { throw obj; } function 89 try { fnc((C *)d); } 95 try { fnc((C *)d); } 101 try { fnc((C *)d); }
|
catch4.cpp | 21 void fnc(C *obj) { throw obj; } function 86 try { fnc((C *)d); } 92 try { fnc((C *)d); } 98 try { fnc((C *)d); }
|
catch4p.cpp | 21 void fnc(C *obj) { throw obj; } function 86 try { fnc((C *)d); } 92 try { fnc((C *)d); } 98 try { fnc((C *)d); }
|
catch9.cpp | 21 void fnc(C *obj) { throw obj; } function 89 try { fnc((C *)d); } 95 try { fnc((C *)d); } 101 try { fnc((C *)d); }
|
catch9p.cpp | 21 void fnc(C *obj) { throw obj; } function 89 try { fnc((C *)d); } 95 try { fnc((C *)d); } 101 try { fnc((C *)d); }
|
catch8.cpp | 20 void fnc(C *obj) { throw obj; } function 87 try { fnc((C *)d); } 94 try { fnc((C *)d); }
|
catch8p.cpp | 20 void fnc(C *obj) { throw obj; } function 88 try { fnc((C *)d); } 95 try { fnc((C *)d); }
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
catch3.cpp | 22 void fnc(C *obj) { throw obj; } function 95 try { fnc((C *)d); } 101 try { fnc((C *)d); } 107 try { fnc((C *)d); }
|
catch3p.cpp | 21 void fnc(C *obj) { throw obj; } function 89 try { fnc((C *)d); } 95 try { fnc((C *)d); } 101 try { fnc((C *)d); }
|
catch4.cpp | 21 void fnc(C *obj) { throw obj; } function 86 try { fnc((C *)d); } 92 try { fnc((C *)d); } 98 try { fnc((C *)d); }
|
catch4p.cpp | 21 void fnc(C *obj) { throw obj; } function 86 try { fnc((C *)d); } 92 try { fnc((C *)d); } 98 try { fnc((C *)d); }
|
catch9.cpp | 21 void fnc(C *obj) { throw obj; } function 89 try { fnc((C *)d); } 95 try { fnc((C *)d); } 101 try { fnc((C *)d); }
|
catch9p.cpp | 21 void fnc(C *obj) { throw obj; } function 89 try { fnc((C *)d); } 95 try { fnc((C *)d); } 101 try { fnc((C *)d); }
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/db/ |
test_sequence.py | 73 s = Sequence(fnc=increment_string) 90 s = Sequence(fnc=fib) 103 s = Sequence(fnc=increment_string)
|