/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_build_scripts.py | 34 [os.path.join(source, fn) 35 for fn in expected]) 87 [os.path.join(source, fn) 88 for fn in expected])
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/ |
__init__.py | 50 for fn in os.listdir(here): 51 if fn.startswith("test") and fn.endswith(".py"): 52 modname = "json.tests." + fn[:-3]
|
/system/core/include/cutils/ |
config_utils.h | 40 void config_load_file(cnode *root, const char *fn);
|
/art/runtime/interpreter/ |
interpreter.cc | 141 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local 147 jresult = fn(soa.Env(), klass.get()); 152 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local 156 fn(soa.Env(), klass.get()); 159 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local 163 result->SetZ(fn(soa.Env(), klass.get())); 166 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local 170 result->SetB(fn(soa.Env(), klass.get(), args[0])); 173 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local 177 result->SetI(fn(soa.Env(), klass.get(), args[0])) 180 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local 193 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local 200 fntype* const fn = reinterpret_cast<fntype*>(const_cast<void*>( local 210 fntype* const fn = reinterpret_cast<fntype*>(const_cast<void*>(method->GetEntryPointFromJni())); local 217 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local 224 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local 235 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local 246 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local 255 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local 271 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local 282 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local 289 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local 303 fntype* const fn = reinterpret_cast<fntype*>(method->GetEntryPointFromJni()); local [all...] |
/bionic/tests/ |
signal_test.cpp | 46 template <typename Fn> 47 static void TestSigSet1(Fn fn) { 51 ASSERT_EQ(-1, fn(set_ptr)); 57 ASSERT_EQ(0, fn(&set)); 61 template <typename Fn> 62 static void TestSigSet2(Fn fn) { 66 ASSERT_EQ(-1, fn(set_ptr, SIGSEGV)); 74 ASSERT_EQ(-1, fn(&set, 0)) [all...] |
/bootable/recovery/minzip/ |
SysUtil.c | 161 int sysMapFile(const char* fn, MemMapping* pMap) 165 if (fn && fn[0] == '@') { 167 FILE* mapf = fopen(fn+1, "r"); 169 LOGV("Unable to open '%s': %s\n", fn+1, strerror(errno)); 174 LOGW("Map of '%s' failed\n", fn); 181 int fd = open(fn, O_RDONLY, 0); 183 LOGE("Unable to open '%s': %s\n", fn, strerror(errno)); 188 LOGE("Map of '%s' failed\n", fn);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
collector.py | 207 fn = tracer.start() 209 return fn 222 fn = self._start_tracer() 225 if fn: 226 fn = fn(frame_unused, event_unused, arg_unused) 228 return fn 247 fn = self._start_tracer() 252 fn(frame, event, arg, lineno=lineno)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/macholib/ |
dyld.py | 140 def framework_find(fn, executable_path=None, env=None): 150 return dyld_find(fn, executable_path=executable_path, env=env) 153 fmwk_index = fn.rfind('.framework') 155 fmwk_index = len(fn) 156 fn += '.framework' 157 fn = os.path.join(fn, os.path.basename(fn[:fmwk_index])) 159 return dyld_find(fn, executable_path=executable_path, env=env)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/macholib/ |
dyld.py | 140 def framework_find(fn, executable_path=None, env=None): 150 return dyld_find(fn, executable_path=executable_path, env=env) 153 fmwk_index = fn.rfind('.framework') 155 fmwk_index = len(fn) 156 fn += '.framework' 157 fn = os.path.join(fn, os.path.basename(fn[:fmwk_index])) 159 return dyld_find(fn, executable_path=executable_path, env=env)
|
/external/valgrind/main/callgrind/ |
dump.c | 139 p->fn = 0; 232 * tag can be "fn", "cfn", "jfn" 234 static void print_fn(Int fd, HChar* buf, const HChar* tag, fn_node* fn) 240 if (fn_dumped[fn->number]) 241 p += VG_(sprintf)(buf+p, "(%d)\n", fn->number); 244 fn->number, fn->name); 245 fn_dumped[fn->number] = True; 249 p += VG_(sprintf)(buf+p, "%s\n", fn->name); 275 CLG_ASSERT(cxt->fn[i-1]->pure_cxt != 0) [all...] |
clo.c | 318 static void update_fn_config1(fn_node* fn, fn_config* fnc) 321 fn->dump_before = (fnc->dump_before == CONFIG_TRUE); 324 fn->dump_after = (fnc->dump_after == CONFIG_TRUE); 327 fn->zero_before = (fnc->zero_before == CONFIG_TRUE); 330 fn->toggle_collect = (fnc->toggle_collect == CONFIG_TRUE); 333 fn->skip = (fnc->skip == CONFIG_TRUE); 336 fn->pop_on_jump = (fnc->pop_on_jump == CONFIG_TRUE); 339 fn->group = fnc->group; 342 fn->separate_callers = fnc->separate_callers; 345 fn->separate_recursions = fnc->separate_recursions [all...] |
/external/llvm/test/Bindings/Ocaml/ |
vmcore.ml | 532 let fn = define_function "use_function" ty m in var 533 let b = builder_at_end context (entry_block fn) in 535 let p1 = param fn 0 in 536 let p2 = param fn 1 in 559 let fn = define_function "user_function" ty m in var 560 let b = builder_at_end context (entry_block fn) in 562 let p1 = param fn 0 in 563 let p2 = param fn 1 in 599 let fn = declare_function "Fn1" ty m in var 600 insist (pointer_type ty = type_of fn); 614 let fn = declare_function "Fn2" ty m in var 620 let fn = define_function "Fn3" ty m in var 628 let fn = define_function "Fn4" ty m in var 642 let fn = define_function "Fn5" ty m in var 651 let fn = define_function "Fn6" ty m in var 738 let fn = declare_function "X" ty m in var 746 let fn = declare_function "X2" ty m in var 751 let fn = declare_function "X3" ty m in var 761 let fn = define_function "X4" ty m in var 769 let fn = define_function "X5" ty m in var 851 let fn = define_function "BuilderParent" fty m in var 869 let fn = declare_function "X6" fty m in var 880 let fn = declare_function "XA6" fty m in var 888 let fn = define_function "X7" fty m in var 1369 let fn = define_function "FunctionPassManager" fty m in var [all...] |
analysis.ml | 26 let fn = define_function "valid_fn" fty m in var 27 let at_entry = builder_at_end context (entry_block fn) in 37 if not (verify_function fn) then bomb "valid function failed verification!"; 49 if verify_function fn then bomb "invalid function passed verification!";
|
ipo_opts.ml | 42 let fn = define_function "fn" fty m in var 44 ignore (build_ret (const_int i8_type 4) (builder_at_end context (entry_block fn))); 46 ignore (build_ret (build_call fn [| |] "" b) b);
|
scalar_opts.ml | 41 let fn = define_function "fn" fty m in var 42 ignore (build_ret_void (builder_at_end context (entry_block fn))); 78 ++ PassManager.run_function fn
|
/bionic/libc/upstream-netbsd/lib/libc/gen/ |
ftw.c | 38 ftw(const char *path, int (*fn)(const char *, const struct stat *, int), 87 error = fn(cur->fts_path, cur->fts_statp, fnflag);
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
test_util.py | 44 def decorator(fn): 49 return fn(*args, **optargs)
|
/external/chromium_org/mojo/spy/ |
PRESUBMIT.py | 19 def RunWithPrependedPath(prepended_path, fn, *args): 24 return fn(*args)
|
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
logging.cc | 86 // Re-run fn until it doesn't cause EINTR. 87 #define NO_INTR(fn) do {} while ((fn) < 0 && errno == EINTR)
|
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
logging.cc | 86 // Re-run fn until it doesn't cause EINTR. 87 #define NO_INTR(fn) do {} while ((fn) < 0 && errno == EINTR)
|
/external/chromium_org/tools/telemetry/ |
PRESUBMIT.py | 38 def RunWithPrependedPath(prepended_path, fn, *args): 43 return fn(*args)
|
/external/chromium_org/ui/gl/ |
gl_implementation_ozone.cc | 57 ::gfx::g_driver_gl.fn.glClearDepthFn = MarshalClearDepthToClearDepthf; 58 ::gfx::g_driver_gl.fn.glDepthRangeFn = MarshalDepthRangeToDepthRangef;
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_platform_mac.cc | 95 int call_pthread_cancel_with_cleanup(int(*fn)(void *c, void *m, 102 res = fn(c, m, abstime);
|
/external/fdlibm/ |
e_rem_pio2.c | 90 double z,w,t,r,fn; local 126 fn = (double)n; 127 r = t-fn*pio2_1; 128 w = fn*pio2_1t; /* 1st round good to 85 bit */ 137 w = fn*pio2_2; 139 w = fn*pio2_2t-((t-r)-w); 144 w = fn*pio2_3; 146 w = fn*pio2_3t-((t-r)-w);
|
/external/llvm/tools/lli/ |
RemoteTarget.cpp | 59 int (*fn)(void) = (int(*)(void))Address; 60 RetVal = fn();
|