/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_linecache.py | 86 cached_empty = [fn for fn in cached if fn not in linecache.cache] 91 cached_empty = [fn for fn in cached if fn in linecache.cache]
|
/prebuilts/go/darwin-x86/doc/progs/ |
slices.go | 29 // the elements of s that satisfy fn. 30 func Filter(s []int, fn func(int) bool) []int { 33 if fn(i) {
|
/prebuilts/go/darwin-x86/test/ |
inline_caller.go | 69 fn := runtime.FuncForPC(frame.pc) 73 if fn.Name() != expected[i].funcName { 74 panic(fmt.Sprintf("skip=%d expected function %s, got %s", i, expected[i].funcName, fn.Name()))
|
/prebuilts/go/linux-x86/doc/progs/ |
slices.go | 29 // the elements of s that satisfy fn. 30 func Filter(s []int, fn func(int) bool) []int { 33 if fn(i) {
|
/prebuilts/go/linux-x86/test/ |
inline_caller.go | 69 fn := runtime.FuncForPC(frame.pc) 73 if fn.Name() != expected[i].funcName { 74 panic(fmt.Sprintf("skip=%d expected function %s, got %s", i, expected[i].funcName, fn.Name()))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_linecache.py | 86 cached_empty = [fn for fn in cached if fn not in linecache.cache] 91 cached_empty = [fn for fn in cached if fn in linecache.cache]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_linecache.py | 86 cached_empty = [fn for fn in cached if fn not in linecache.cache] 91 cached_empty = [fn for fn in cached if fn in linecache.cache]
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
alg.go | 207 fn := dclfunc(sym, tfn) 241 fn.Nbody.Append(n) 264 fn.Nbody.Append(nod(OAS, nh, call)) 281 fn.Nbody.Append(nod(OAS, nh, call)) 289 fn.Nbody.Append(r) 292 dumplist("genhash body", fn.Nbody) 296 Curfn = fn 297 fn.Func.SetDupok(true) 298 fn = typecheck(fn, Etop [all...] |
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
alg.go | 207 fn := dclfunc(sym, tfn) 241 fn.Nbody.Append(n) 264 fn.Nbody.Append(nod(OAS, nh, call)) 281 fn.Nbody.Append(nod(OAS, nh, call)) 289 fn.Nbody.Append(r) 292 dumplist("genhash body", fn.Nbody) 296 Curfn = fn 297 fn.Func.SetDupok(true) 298 fn = typecheck(fn, Etop [all...] |
/bionic/libc/arch-mips64/bionic/ |
__bionic_clone.S | 44 // pid_t __bionic_clone(int flags, void* child_stack, pid_t* parent_tid, void* tls, pid_t* child_tid, int (*fn)(void*), void* arg); 53 PTR_L $t0,FRAMESZ+5*REGSZ($sp) # fn 55 PTR_S $t0,FRAME_FN($a1) # fn 60 PTR_S $a5,FRAME_FN($a1) # fn 82 PTR_L $a0,FRAME_FN($sp) # fn
|
/device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/src/ |
main.c | 39 * the 'fn' function to 'v' and exits if the value is NULL. 41 #define CHECK_NULL(v, fn) \ 43 v = fn; \ 170 if (cert->fn == NULL) { 191 if (!new_keys && key->fn == NULL) { 329 key->fn = strdup(optarg); 334 cert->fn = strdup(optarg); 367 ERROR("Error loading '%s'\n", keys[i].fn); 382 ERROR("Error opening '%s'\n", keys[i].fn); 456 if (cert->fn && !cert_new(key_alg, cert, VAL_DAYS, 0, sk)) [all...] |
/external/clang/test/CodeGenCXX/ |
microsoft-abi-vtables-return-thunks.cpp | 177 struct A { virtual A *fn(); }; 178 struct B : virtual A { virtual B *fn(); }; 183 D *fn(); 189 // VFTABLES-NEXT: 0 | test3::D *test3::D::fn() 192 // VFTABLES-NEXT: 1 | test3::D *test3::D::fn() 195 // VFTABLES-NEXT: 2 | test3::D *test3::D::fn() 200 // GLOBALS: @"\01?fn@D@test3@@$4PPPPPPPM@A@AEPAUA@2@XZ" 201 // GLOBALS: @"\01?fn@D@test3@@$4PPPPPPPM@A@AEPAUB@2@XZ" 202 // GLOBALS: @"\01?fn@D@test3@@$4PPPPPPPM@A@AEPAU12@XZ"
|
/external/clang/test/SemaCXX/ |
warn-assignment-condition.cpp | 125 void (*fn)(); variable 128 if ((fn == test2)) {} // expected-warning {{equality comparison with extraneous parentheses}} \ 131 if ((test2 == fn)) {}
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_linux_s390.cc | 58 uptr internal_clone(int (*fn)(void *), void *child_stack, int flags, void *arg, 60 if (!fn || !child_stack) 72 ((unsigned long *)child_stack)[1] = (uptr)fn; 95 /* Call "fn(arg)". */
|
/external/dtc/ |
dtc-lexer.l | 78 struct data fn; 93 fn = data_copy_escape_string(fnstart + 1, 97 if (memchr(fn.val, '\0', fn.len - 1)) 101 srcpos_set_line(xstrdup(fn.val), atoi(line) - 1); 102 data_free(fn);
|
/external/icu/icu4c/source/test/perf/strsrchperf/ |
strsrchperf.h | 23 StrSrchFn fn; member in class:StringSearchPerfFunction 32 (*fn)(srch, src, srcLen, pttrn, pttrnLen, status); 40 fn = func;
|
/external/kmod/tools/ |
log.c | 67 const char *fn, const char *format, va_list args) 81 fn, str); 89 fn, str);
|
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/ |
unique_ptr.pass.cpp | 47 void fn ( const std::shared_ptr<int> &) {} function 48 void fn ( const std::shared_ptr<B> &) { assert (false); } function 93 fn(std::unique_ptr<int>(new int));
|
/external/libffi/src/powerpc/ |
ffi.c | 74 ffi_call(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue) 100 ffi_call_LINUX64 (&ecif, -(long) cif->bytes, cif->flags, ecif.rvalue, fn); 102 ffi_call_SYSV (&ecif, -cif->bytes, cif->flags, ecif.rvalue, fn);
|
/external/python/cpython2/Modules/_ctypes/libffi/src/powerpc/ |
ffi.c | 74 ffi_call(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue) 100 ffi_call_LINUX64 (&ecif, -(long) cif->bytes, cif->flags, ecif.rvalue, fn); 102 ffi_call_SYSV (&ecif, -cif->bytes, cif->flags, ecif.rvalue, fn);
|
/external/python/cpython3/Lib/test/ |
test_fnmatch.py | 9 def check_match(self, filename, pattern, should_match=1, fn=fnmatch): 11 self.assertTrue(fn(filename, pattern), 15 self.assertTrue(not fn(filename, pattern),
|
/external/python/cpython3/Modules/_ctypes/libffi/src/powerpc/ |
ffi.c | 74 ffi_call(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue) 100 ffi_call_LINUX64 (&ecif, -(long) cif->bytes, cif->flags, ecif.rvalue, fn); 102 ffi_call_SYSV (&ecif, -cif->bytes, cif->flags, ecif.rvalue, fn);
|
/external/skia/include/private/ |
SkTHash.h | 123 // Call fn on every entry in the table. You may mutate the entries, but be very careful. 124 template <typename Fn> // f(T*) 125 void foreach(Fn&& fn) { 128 fn(&fSlots[i].val); 133 // Call fn on every entry in the table. You may not mutate anything. 134 template <typename Fn> // f(T) or f(const T&) 135 void foreach(Fn&& fn) const { 138 fn(fSlots[i].val) [all...] |
/external/skqp/include/private/ |
SkTHash.h | 123 // Call fn on every entry in the table. You may mutate the entries, but be very careful. 124 template <typename Fn> // f(T*) 125 void foreach(Fn&& fn) { 128 fn(&fSlots[i].val); 133 // Call fn on every entry in the table. You may not mutate anything. 134 template <typename Fn> // f(T) or f(const T&) 135 void foreach(Fn&& fn) const { 138 fn(fSlots[i].val) [all...] |
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/ |
unique_ptr.pass.cpp | 47 void fn ( const std::shared_ptr<int> &) {} function 48 void fn ( const std::shared_ptr<B> &) { assert (false); } function 93 fn(std::unique_ptr<int>(new int));
|