/external/valgrind/main/drd/tests/ |
fp_race_xml.stderr.exp | 45 <fn>main</fn> 68 <fn>main</fn>
|
/external/valgrind/main/tests/ |
filter_xml_frames | 19 my $has_function_name = 0; # <fn> 47 $has_function_name = 1 if ($line =~ /<fn>/);
|
/ndk/tests/device/math/jni/ |
math.c | 23 float f, f1, fn; variable 52 fn = nanf("");
|
math.cpp | 23 float f, f1, fn; variable 52 fn = nanf("");
|
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/ |
sdk_update_main.py | 45 def hook(fn): 46 fn.usage_more = more 47 return fn 51 def hide(fn): 52 fn.hide = True 53 return fn 370 cmds = [fn[3:] for fn in dir(sys.modules[__name__]) if fn.startswith('CMD')] 372 cmds = filter(lambda fn: not getattr(Command(fn), 'hide', 0), cmds [all...] |
/external/chromium_org/v8/test/webkit/ |
toString-elision-trailing-comma.js | 97 function testToStringAndLength(fn, length, lastElement) 100 shouldBe(""+ fn +"().length", "" + length); 103 shouldBe(""+ fn +"()[" + length +"-1]", "" + lastElement); 107 shouldBe("unevalf(eval(unevalf("+fn+")))", "unevalf(" + fn + ")"); 111 shouldBe("eval(unevalf("+fn+"))().length", ""+length); 112 shouldBe("eval(unevalf("+fn+"))()[" + length +"-1]", ""+lastElement);
|
/external/llvm/test/Bindings/Ocaml/ |
executionengine.ml | 27 let fn = 32 let b = builder_at_end (global_context ()) (entry_block fn) in 34 fn 37 let fn = define_function "plus" (function_type i32_type [| i32_type; 39 let b = builder_at_end (global_context ()) (entry_block fn) in 40 let add = build_add (param fn 0) (param fn 1) "sum" b in
|
/external/chromium_org/v8/tools/testrunner/local/ |
pool.py | 27 def Worker(fn, work_queue, done_queue, done): 36 done_queue.put(NormalResult(fn(*args))) 71 def imap_unordered(self, fn, gen): 72 """Maps function "fn" to items in generator "gen" on the worker processes 80 p = Process(target=Worker, args=(fn,
|
/frameworks/base/cmds/screencap/ |
screencap.cpp | 118 const char* fn = argv[0]; local 119 fd = open(fn, O_WRONLY | O_CREAT | O_TRUNC, 0664); 121 fprintf(stderr, "Error opening file: %s (%s)\n", fn, strerror(errno)); 124 const int len = strlen(fn); 125 if (len >= 4 && 0 == strcmp(fn+len-4, ".png")) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
sortperf.py | 22 fn = os.path.join(td, "rr%06d" % n) 24 fp = open(fn, "rb") 30 fp = open(fn, "wb") 37 os.unlink(fn) 41 print "can't write", fn, ":", msg
|
test_ntpath.py | 8 def tester(fn, wantResult): 9 fn = fn.replace("\\", "\\\\") 10 gotResult = eval(fn) 13 %(str(fn), str(wantResult), str(gotResult))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
sortperf.py | 22 fn = os.path.join(td, "rr%06d" % n) 24 fp = open(fn, "rb") 30 fp = open(fn, "wb") 37 os.unlink(fn) 41 print "can't write", fn, ":", msg
|
test_ntpath.py | 8 def tester(fn, wantResult): 9 fn = fn.replace("\\", "\\\\") 10 gotResult = eval(fn) 13 %(str(fn), str(wantResult), str(gotResult))
|
/system/core/init/ |
ueventd_parser.c | 200 static void parse_config(const char *fn, char *s) 206 state.filename = fn; 233 int ueventd_parse_config_file(const char *fn) 236 data = read_file(fn, 0); 239 parse_config(fn, data);
|
/external/clang/lib/CodeGen/ |
CGCXX.cpp | 218 auto *fn = cast<llvm::Function>( local 220 setFunctionLinkage(GlobalDecl(ctor, ctorType), fn); local 222 CodeGenFunction(*this).GenerateCode(GlobalDecl(ctor, ctorType), fn, fnInfo); local 224 setFunctionDefinitionAttributes(ctor, fn); 225 SetLLVMFunctionAttributesForDefinition(ctor, fn); 275 auto *fn = cast<llvm::Function>( local 277 setFunctionLinkage(GlobalDecl(dtor, dtorType), fn); local 279 CodeGenFunction(*this).GenerateCode(GlobalDecl(dtor, dtorType), fn, fnInfo); local 281 setFunctionDefinitionAttributes(dtor, fn); 282 SetLLVMFunctionAttributesForDefinition(dtor, fn); [all...] |
/external/blktrace/ |
blkiomon.c | 68 char *fn; member in struct:output 110 if (!debug.fn) 134 if (!debug.fn) 239 if (!binary.fn) 249 fprintf(stderr, "blkiomon: could not write to %s\n", binary.fn); 251 binary.fn = NULL; 433 if (!drvdata.fn) 445 fprintf(stderr, "blkiomon: could not write to %s\n", drvdata.fn); 447 drvdata.fn = NULL; 530 if (!out->fn) [all...] |
/external/chromium_org/v8/test/mjsunit/es6/ |
microtask-delivery.js | 47 function newPromise(id, fn) { 52 if (fn) fn(); 62 then: function(fn) { 65 return fn ? fn(value) : value; 73 function newObserver(id, fn, obj) { 82 if (fn) fn();
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pkgutil.py | 204 for fn in filenames: 205 modname = inspect.getmodulename(fn) 209 path = os.path.join(self.path, fn) 212 if not modname and os.path.isdir(path) and '.' not in fn: 213 modname = fn 219 for fn in dircontents: 220 subname = inspect.getmodulename(fn) 338 for fn in dirlist: 339 if not fn.startswith(_prefix): 342 fn = fn[plen:].split(os.sep [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pkgutil.py | 204 for fn in filenames: 205 modname = inspect.getmodulename(fn) 209 path = os.path.join(self.path, fn) 212 if not modname and os.path.isdir(path) and '.' not in fn: 213 modname = fn 219 for fn in dircontents: 220 subname = inspect.getmodulename(fn) 338 for fn in dirlist: 339 if not fn.startswith(_prefix): 342 fn = fn[plen:].split(os.sep [all...] |
/external/tcpdump/ |
print-smb.c | 37 void (*fn)(const u_char *, const u_char *, const u_char *, const u_char *); member in struct:smbdescript 45 void (*fn)(const u_char *, const u_char *, int, int); member in struct:smbdescriptint 176 static struct smbfnsint *fn = &trans2_fns[0]; local 189 fn = smbfindint(EXTRACT_LE_16BITS(w + 14 * 2), trans2_fns); 192 printf("%s\n", fn->name); 203 printf("%s param_length=%d data_length=%d\n", fn->name, pcnt, dcnt); 216 f1 = fn->descript.req_f1; 217 f2 = fn->descript.req_f2; 222 f1 = fn->descript.rep_f1; 223 f2 = fn->descript.rep_f2 802 struct smbfns *fn; local [all...] |
/external/valgrind/main/coregrind/ |
pub_core_tooliface.h | 45 #define VG_TDICT_CALL(fn, args...) \ 46 ( tl_assert2(VG_(tdict).fn, \ 47 "you forgot to set VgToolInterface function '" #fn "'"), \ 48 VG_(tdict).fn(args) ) 50 #define VG_TRACK(fn, args...) \ 52 if (VG_(tdict).track_##fn) \ 53 VG_(tdict).track_##fn(args); \
|
/frameworks/native/opengl/libs/EGL/ |
getProcAddress.cpp | 84 register void** fn; \ 86 "mov %%gs:0, %[fn]\n" \ 87 "mov %P[tls](%[fn]), %[fn]\n" \ 88 "test %[fn], %[fn]\n" \ 89 "cmovne %P[api](%[fn]), %[fn]\n" \ 90 "test %[fn], %[fn]\n" [all...] |
/frameworks/native/opengl/libs/GLES_CM/ |
gl.cpp | 144 register void* fn; \ 146 "mov %%gs:0, %[fn]\n" \ 147 "mov %P[tls](%[fn]), %[fn]\n" \ 148 "test %[fn], %[fn]\n" \ 150 "jmp *%P[api](%[fn])\n" \ 152 : [fn] "=r" (fn) \ 163 register void** fn; \ [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
GrepDialog.py | 82 for fn in list: 84 f = open(fn) 98 sys.stdout.write("%s: %s: %s\n" % (fn, lineno, line)) 119 fn = os.path.join(dir, name) 120 if os.path.isdir(fn): 121 subdirs.append(fn) 124 list.append(fn)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
GrepDialog.py | 82 for fn in list: 84 f = open(fn) 98 sys.stdout.write("%s: %s: %s\n" % (fn, lineno, line)) 119 fn = os.path.join(dir, name) 120 if os.path.isdir(fn): 121 subdirs.append(fn) 124 list.append(fn)
|