/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
finddiv.py | 78 fn = os.path.join(dir, name)
79 if os.path.normcase(fn).endswith(".py") or os.path.isdir(fn):
80 files.append(fn)
83 for fn in files:
84 x = process(fn, listnames)
|
/external/python/cpython2/Tools/scripts/ |
finddiv.py | 78 fn = os.path.join(dir, name) 79 if os.path.normcase(fn).endswith(".py") or os.path.isdir(fn): 80 files.append(fn) 83 for fn in files: 84 x = process(fn, listnames)
|
/external/python/cpython3/Tools/scripts/ |
finddiv.py | 78 fn = os.path.join(dir, name) 79 if os.path.normcase(fn).endswith(".py") or os.path.isdir(fn): 80 files.append(fn) 83 for fn in files: 84 x = process(fn, listnames)
|
/external/valgrind/memcheck/tests/ |
wrap8.c | 61 OrigFn fn; local 62 VALGRIND_GET_ORIG_FN(fn); 65 CALL_FN_W_W(r, fn, n); 75 OrigFn fn; local 76 VALGRIND_GET_ORIG_FN(fn); 79 CALL_FN_W_W(r, fn, n);
|
/libnativehelper/platform_include/nativehelper/ |
jni_macros.h | 100 * C++ function type of the form "CRet fn(JNIEnv*, jclass|jobject, CArgs...)", 101 * or for @CriticalNative of the form "CRet fn(CArgs...)" 249 #define _NATIVEHELPER_JNI_MAKE_METHOD_OLD(kind, name, sig, fn) \ 254 _NATIVEHELPER_JNI_MACRO_CAST(reinterpret_cast, void *)(fn) \ 261 #define _NATIVEHELPER_JNI_MAKE_METHOD(kind, name, sig, fn) \ 262 MAKE_CHECKED_JNI_NATIVE_METHOD(kind, name, sig, fn) 271 #define _NATIVEHELPER_JNI_MAKE_METHOD(kind, name, sig, fn) \ 272 _NATIVEHELPER_JNI_MAKE_METHOD_OLD(kind, name, sig, fn)
|
/prebuilts/go/darwin-x86/src/runtime/ |
sys_x86.go | 14 // adjust Gobuf as if it executed a call to fn with context ctxt 16 func gostartcall(buf *gobuf, fn, ctxt unsafe.Pointer) { 25 buf.pc = uintptr(fn)
|
/prebuilts/go/linux-x86/src/runtime/ |
sys_x86.go | 14 // adjust Gobuf as if it executed a call to fn with context ctxt 16 func gostartcall(buf *gobuf, fn, ctxt unsafe.Pointer) { 25 buf.pc = uintptr(fn)
|
/prebuilts/misc/common/swig/include/2.0.11/lua/ |
lua_fnptr.i | 15 int my_func(int a, int b, SWIGLUA_FN fn); 23 int my_func(int a, int b, SWIGLUA_FN fn) 25 SWIGLUA_FN_GET(fn); 26 lua_pushnumber(fn.L,a); 27 lua_pushnumber(fn.L,b); 28 lua_call(fn.L,2,1); // 2 in, 1 out 29 return luaL_checknumber(fn.L,-1); 44 #define SWIGLUA_FN_GET(fn) {lua_pushvalue(fn.L,fn.idx); [all...] |
/art/openjdkjvmti/ |
events-inl.h | 90 #define FORALL_EVENT_TYPES(fn) \ 91 fn(VMInit, ArtJvmtiEvent::kVmInit) \ 92 fn(VMDeath, ArtJvmtiEvent::kVmDeath) \ 93 fn(ThreadStart, ArtJvmtiEvent::kThreadStart) \ 94 fn(ThreadEnd, ArtJvmtiEvent::kThreadEnd) \ 95 fn(ClassFileLoadHook, ArtJvmtiEvent::kClassFileLoadHookRetransformable) \ 96 fn(ClassFileLoadHook, ArtJvmtiEvent::kClassFileLoadHookNonRetransformable) \ 97 fn(ClassLoad, ArtJvmtiEvent::kClassLoad) \ 98 fn(ClassPrepare, ArtJvmtiEvent::kClassPrepare) \ 99 fn(VMStart, ArtJvmtiEvent::kVmStart) [all...] |
/external/syslinux/core/fs/pxe/ |
http_readdir.c | 437 const char *fn, *sp; local 440 fn = http_get_filename(inode, buf); 442 if (!fn) 446 if (strchr(fn, '#')) 448 if (strchr(fn, '?')) 452 sp = strchr(fn, '/'); 454 if (sp == fn || sp[1]) 457 sp = strchr(fn, '\0'); 460 if (sp > fn + NAME_MAX) 465 dirent->d_reclen = offsetof(struct dirent, d_name) + (sp-fn) + 1 [all...] |
/external/tensorflow/tensorflow/contrib/learn/python/learn/ |
metric_spec.py | 34 def _args(fn): 38 fn: Function, or function-like object (e.g., result of `functools.partial`). 43 if hasattr(fn, 'func') and hasattr(fn, 'keywords'): 46 [arg for arg in _args(fn.func) if arg not in set(fn.keywords.keys())]) 48 return tuple(tf_inspect.getargspec(fn).args) 98 def _fn_name(fn): 99 if hasattr(fn, '__name__'): 100 return fn.__name_ [all...] |
/hardware/qcom/wlan/qcwcn/wifi_hal/ |
wifi_hal.cpp | 332 wifi_error init_wifi_vendor_hal_func_table(wifi_hal_fn *fn) { 333 if (fn == NULL) { 337 fn->wifi_initialize = wifi_initialize; 338 fn->wifi_wait_for_driver_ready = wifi_wait_for_driver_ready; 339 fn->wifi_cleanup = wifi_cleanup; 340 fn->wifi_event_loop = wifi_event_loop; 341 fn->wifi_get_supported_feature_set = wifi_get_supported_feature_set; 342 fn->wifi_get_concurrency_matrix = wifi_get_concurrency_matrix; 343 fn->wifi_set_scanning_mac_oui = wifi_set_scanning_mac_oui; 344 fn->wifi_get_ifaces = wifi_get_ifaces [all...] |
/art/libartbase/base/ |
systrace.h | 35 template <typename Fn> 36 explicit ScopedTrace(Fn fn) { 38 ATRACE_BEGIN(fn().c_str());
|
/build/make/tools/releasetools/ |
make_recovery_patch | 47 def output_sink(fn, data): 48 with open(os.path.join(output_dir, "SYSTEM", *fn.split("/")), "wb") as f:
|
make_recovery_patch.py | 47 def output_sink(fn, data): 48 with open(os.path.join(output_dir, "SYSTEM", *fn.split("/")), "wb") as f:
|
/external/annotation-tools/asmx/test/conform/org/objectweb/asm/tree/ |
UnitTest.class | |
/external/clang/test/SemaTemplate/ |
instantiate-decl-init.cpp | 17 void fn(T t, const arg& arg) { function 22 fn(1, arg());
|
/external/compiler-rt/test/tsan/ |
vptr_harmful_race3.cc | 28 static void (A::*fn)() = &A::F; variable 31 (obj->*fn)();
|
/external/python/cpython2/Mac/Demo/sound/ |
playaiff.py | 6 fn = 'f:just samples:2ndbeat.aif' variable 7 af = aifc.open(fn, 'r')
|
/external/skia/bench/ |
SwizzleBench.cpp | 13 SwizzleBench(const char* name, SkOpts::Swizzle_8888 fn) : fName(name), fFn(fn) {}
|
/external/skia/include/core/ |
SkICC.h | 41 * equation, returns true and sets |fn| to the proper values. 49 bool isNumericalTransferFn(SkColorSpaceTransferFn* fn) const; 97 * Write an ICC profile with transfer function |fn| and gamut |toXYZD50|. 99 static sk_sp<SkData> WriteToICC(const SkColorSpaceTransferFn& fn, const SkMatrix44& toXYZD50);
|
/external/skia/include/private/ |
SkOnce.h | 24 template <typename Fn, typename... Args> 25 void operator()(Fn&& fn, Args&&... args) { 32 // If it looks like no one has started calling fn(), try to claim that job. 36 // Great! We'll run fn() then notify the other threads by releasing Done into fState. 37 fn(std::forward<Args>(args)...); 41 // Some other thread is calling fn().
|
/external/skia/tests/ |
TLSTest.cpp | 34 template <typename Fn> 35 static void test_threads(Fn fn) { 39 thread = std::thread(fn);
|
/external/skqp/bench/ |
SwizzleBench.cpp | 13 SwizzleBench(const char* name, SkOpts::Swizzle_8888 fn) : fName(name), fFn(fn) {}
|