Searched refs:fn (Results 26 - 50 of 687) sorted by relevance

1234567891011>>

/external/chromium-trace/trace-viewer/src/base/unittest/
H A Dassertions_test.js11 global.rawAssertThrows = function(fn) {
13 fn();
17 throw new Error('Expected <' + fn + '> to throw');
20 global.rawAssertNotThrows = function(fn) {
22 fn();
24 throw new Error('Expected <' + fn + '> to not throw');
/external/chromium_org/third_party/npapi/npspy/extern/java/
H A Dzip.h52 zip_get(zip_t *zip, const char *fn, void HUGEP *buf, int32_t len);
55 zip_open(const char *fn);
58 zip_stat(zip_t *zip, const char *fn, struct stat *sbuf);
/external/valgrind/main/drd/
H A Ddrd_darwin_intercepts.c45 OrigFn fn; local
47 VALGRIND_GET_ORIG_FN(fn);
50 CALL_FN_W_WW(res, fn, imageLoaderCache, lazyBindingInfoOffset);
/external/chromium_org/third_party/re2/util/
H A Dtest.cc14 void (*fn)(void); member in struct:Test
21 void RegisterTest(void (*fn)(void), const char *name) { argument
22 tests[ntests].fn = fn;
41 tests[i].fn();
/external/regex-re2/util/
H A Dtest.cc12 void (*fn)(void); member in struct:Test
19 void RegisterTest(void (*fn)(void), const char *name) { argument
20 tests[ntests].fn = fn;
35 tests[i].fn();
/external/chromium_org/remoting/webapp/
H A Devent_handlers.js69 /** @type {Array.<{event: string, id: string, fn: function(Event):void}>} */
71 { event: 'click', id: 'access-mode-button', fn: goEnterAccessCode },
72 { event: 'submit', id: 'access-code-form', fn: sendAccessCode },
73 { event: 'click', id: 'cancel-access-code-button', fn: cancelAccessCode},
74 { event: 'click', id: 'cancel-share-button', fn: remoting.cancelShare },
75 { event: 'click', id: 'client-finished-it2me-button', fn: goHome },
77 fn: remoting.showIT2MeUiAndSave },
78 { event: 'click', id: 'host-finished-button', fn: goHome },
79 { event: 'click', id: 'share-button', fn: remoting.tryShare }
81 /** @type {Array.<{event: string, id: string, fn
[all...]
/external/chromium_org/v8/test/webkit/
H A DtoString-elision-trailing-comma.js97 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/valgrind/main/memcheck/tests/
H A Dthreadname_xml.stderr.exp40 <fn>bad_things</fn>
48 <fn>main</fn>
59 <fn>malloc</fn>
67 <fn>bad_things</fn>
75 <fn>main</fn>
[all...]
H A Dwrap3.c28 OrigFn fn; local
29 VALGRIND_GET_ORIG_FN(fn);
31 CALL_FN_W_W(r,fn,n);
39 OrigFn fn; local
40 VALGRIND_GET_ORIG_FN(fn);
42 CALL_FN_W_W(r,fn,n);
H A Dwrap4.c32 OrigFn fn; local
33 VALGRIND_GET_ORIG_FN(fn);
35 CALL_FN_W_W(r, fn, n);
44 OrigFn fn; local
45 VALGRIND_GET_ORIG_FN(fn);
47 CALL_FN_W_W(r, fn, n);
H A Dxml1.stderr.exp40 <fn>frame3</fn>
48 <fn>frame2</fn>
56 <fn>frame1</fn>
64 <fn>main</fn>
75 <fn>malloc</fn>
[all...]
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A DNonVolatileStore.cpp65 std::string fn = get_storage_location(); local
68 fn.append (filename_prefix);
69 if (fn.length() > 200)
74 snprintf (filename, sizeof(filename), "%s%u", fn.c_str(), block);
123 std::string fn = get_storage_location(); local
127 fn.append (filename_prefix);
128 if (fn.length() > 200)
133 snprintf (filename, sizeof(filename), "%s%u", fn.c_str(), block);
198 std::string fn = get_storage_location(); local
208 fn
242 std::string fn = get_storage_location(); local
[all...]
/external/ltrace/sysdeps/linux-gnu/arm/
H A Dregs.h23 #define BITS(obj,st,fn) (((obj) >> (st)) & SUBMASK((fn) - (st)))
24 #define SBITS(obj,st,fn) \
25 ((long) (BITS(obj,st,fn) | ((long) BIT(obj,fn) * ~ SUBMASK(fn - st))))
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-builtin-array-op.js32 Array.prototype.sort = function(fn) { foo = "fisk"; };
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-interface.cpp15 int fn() { function
/external/clang/test/Sema/
H A Dms-keyword-system-header.c9 void fn() { function
/external/clang/test/SemaCXX/
H A Ddeleted-function.cpp5 void fn() = delete; // expected-note {{candidate function has been explicitly deleted}}
19 void fn() = delete; // expected-note {{'fn' has been explicitly marked deleted here}}
27 fn(); // expected-error {{call to deleted function 'fn'}}
33 d->fn(); // expected-error {{attempt to use a deleted function}}
H A Dnew-delete-cxx0x.cpp22 void fn() { function
/external/valgrind/main/drd/tests/
H A Dannotate_barrier_xml.stderr.exp43 <fn>barrier_init</fn>
51 <fn>barriers_and_races</fn>
59 <fn>main</fn>
76 <fn>barrier_wait</fn>
84 <fn>threadfunc</fn>
[all...]
/external/valgrind/main/callgrind/
H A Dcontext.c140 static UWord cxt_hash_val(fn_node** fn, UInt size) argument
144 while(*fn != 0) {
145 hash = (hash<<7) + (hash>>25) + (UWord)(*fn);
146 fn--;
154 static Bool is_cxt(UWord hash, fn_node** fn, Context* cxt) argument
162 cxt_fn = &(cxt->fn[0]);
163 while((*fn != 0) && (count>0)) {
164 if (*cxt_fn != *fn) return False;
165 fn--;
175 static Context* new_cxt(fn_node** fn) argument
235 get_cxt(fn_node** fn) argument
281 push_cxt(fn_node* fn) argument
[all...]
/external/chromium_org/sync/internal_api/public/util/
H A Dweak_handle.cc28 const base::Closure& fn) const {
29 if (!owner_loop_proxy_->PostTask(from_here, fn)) {
/external/chromium_org/tools/json_schema_compiler/
H A Dmemoize.py5 def memoize(fn):
6 '''Decorates |fn| to memoize.
12 memory[full_args] = fn(*args, **optargs)
/external/chromium_org/v8/test/mjsunit/
H A Dcall.js77 function fn() { function
81 assertEquals(0, fn.call());
82 assertEquals(0, fn.call(this));
83 assertEquals(0, fn.call(null));
84 assertEquals(0, fn.call(void 0));
85 assertEquals(1, fn.call(this, 1));
86 assertEquals(2, fn.call(this, 1, 2));
87 assertEquals(3, fn.call(this, 1, 2, 3));
/external/clang/test/Index/
H A Dprint-type.c3 int *f(int *p, char *x, FooType z, int arr[5], void (*fn)(int)) { argument
4 fn(*p);
23 // CHECK: ParmDecl=fn:3:55 (Definition) [type=void (*)(int)] [typekind=Pointer] [canonicaltype=void (*)(int)] [canonicaltypekind=Pointer] [isPOD=1] [pointeetype=void (int)] [pointeekind=Unexposed]
26 // CHECK: CallExpr=fn:3:55 [type=void] [typekind=Void] [args= [int] [Int]] [isPOD=0]
27 // CHECK: DeclRefExpr=fn:3:55 [type=void (*)(int)] [typekind=Pointer] [canonicaltype=void (*)(int)] [canonicaltypekind=Pointer] [isPOD=1] [pointeetype=void (int)] [pointeekind=Unexposed]
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_thread.h78 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
81 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthread, _endthread)
83 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, NULL, NULL)
85 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthreadex, _endthreadex)
88 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data);

Completed in 640 milliseconds

1234567891011>>