HomeSort by relevance Sort by last modified time
    Searched refs:fun (Results 1 - 25 of 257) sorted by null

1 2 3 4 5 6 7 8 91011

  /ndk/tests/build/issue52819-STLPORT_FORCE_REBUILD/jni/
my_jni_module.cpp 1 int fun(int i) function
  /external/clang/test/CodeGenCXX/
2003-12-08-ArrayOfPtrToMemberFunc.cpp 4 void fun ();
8 static memfunptr jumpTable[] = { &Evil::fun };
10 void Evil::fun() { function in class:Evil
  /external/chromium_org/tools/valgrind/tsan/
suppressions_win32.txt 7 fun:UuidCreate
14 fun:ILFindLastID
21 fun:RpcServerUnregisterIf
28 fun:unnamedImageEntryPoint
34 fun:CoFreeAllLibraries
40 fun:GetLocalIdFromEndpointId
51 fun:*InitializeClock*
58 fun:_initterm
59 fun:doexit
65 fun:*~Lock
    [all...]
  /external/clang/test/SemaCXX/
writable-strings-deprecated.cpp 6 char *fun(void) function
goto2.cpp 10 void fun(const char* text) { function
45 fun(ptr);
addr-of-overloaded-function.cpp 179 void fun(int x) {} function in namespace:test1
182 void (*ptr1)(int, int) = &fun; // expected-error {{cannot initialize a variable of type 'void (*)(int, int)' with an rvalue of type 'void (*)(int)': different number of parameters (2 vs 1)}}
184 ptr2 = &fun; // expected-error {{assigning to 'void (*)(int, int)' from incompatible type 'void (*)(int)': different number of parameters (2 vs 1)}}
188 void (*ptr1)(double) = &fun; // expected-error {{cannot initialize a variable of type 'void (*)(double)' with an rvalue of type 'void (*)(int)': type mismatch at 1st parameter ('double' vs 'int')}}
190 ptr2 = &fun; // expected-error {{assigning to 'void (*)(double)' from incompatible type 'void (*)(int)': type mismatch at 1st parameter ('double' vs 'int')}}
194 int (*ptr1)(int) = &fun; // expected-error {{cannot initialize a variable of type 'int (*)(int)' with an rvalue of type 'void (*)(int)': different return type ('int' vs 'void')}}
196 ptr2 = &fun; // expected-error {{assigning to 'int (*)(int)' from incompatible type 'void (*)(int)': different return type ('int' vs 'void')}}
rval-references.cpp 25 void fun();
54 fun_type &&fun_ref = fun; // works because functions are special
  /external/valgrind/main/
glibc-2.X-drd.supp 30 fun:write
46 # fun:_ZNSsC1ERKSs
52 fun:pthread_cond_broadcast@*
53 fun:__cxa_guard_release
65 fun:pthread_create*
70 fun:pthread_join
71 fun:pthread_join
77 fun:__deallocate_stack
82 fun:__free_stacks
88 fun:__free_tc
    [all...]
  /external/clang/test/PCH/
struct.c 15 return fun->is_ptr? fun->ptr : 0;
26 int *int_ptr_fail = &fun->is_ptr; // expected-error{{address of bit-field requested}}
struct.h 11 struct Fun;
13 struct Fun *fun; variable in typeref:struct:Fun
15 struct Fun {
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p4.cpp 16 template<typename S> void fun(const int* const S::* member) {} function in namespace:PR12132
19 fun(&A::x);
  /external/clang/test/CodeGen/
2009-01-05-BlockInlining.c 10 static int fun(int x) { function
24 print(fun(x));
  /external/chromium_org/v8/test/cctest/
test-random.cc 47 void TestSeeds(Handle<JSFunction> fun,
57 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
59 CHECK(fun->IsOptimized());
88 Handle<JSFunction> fun(JSFunction::cast(fun_object->ToObjectChecked()));
91 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
92 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
93 if (!fun->IsOptimized()) fun->MarkForLazyRecompilation();
96 TestSeeds(fun, context, 0xC0C0AFFE, 0x31415926);
97 TestSeeds(fun, context, 0x01020304, 0xFFFFFFFF)
    [all...]
test-compiler.cc 124 Handle<JSFunction> fun = Compile(buffer.start()); local
125 if (fun.is_null()) return -1;
129 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
143 Handle<JSFunction> fun = Compile("result = x + y;"); local
144 if (fun.is_null()) return -1;
150 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
164 Handle<JSFunction> fun = Compile("if (x < 0) result = -x; else result = x;"); local
165 if (fun.is_null()) return -1;
170 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
184 Handle<JSFunction> fun local
208 Handle<JSFunction> fun = Compile(source); local
241 Handle<JSFunction> fun = Compile(source); local
256 Handle<JSFunction> fun = Compile(source); local
383 v8::Local<v8::Function> fun = local
    [all...]
  /external/v8/test/cctest/
test-random.cc 50 void TestSeeds(Handle<JSFunction> fun,
60 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
62 CHECK(fun->IsOptimized());
89 Handle<JSFunction> fun(JSFunction::cast(fun_object->ToObjectChecked()));
92 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
93 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
94 if (!fun->IsOptimized()) fun->MarkForLazyRecompilation();
97 TestSeeds(fun, context, 0xC0C0AFFE, 0x31415926);
98 TestSeeds(fun, context, 0x01020304, 0xFFFFFFFF)
    [all...]
test-compiler.cc 137 Handle<JSFunction> fun = Compile(buffer.start()); local
138 if (fun.is_null()) return -1;
142 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
156 Handle<JSFunction> fun = Compile("result = x + y;"); local
157 if (fun.is_null()) return -1;
163 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
177 Handle<JSFunction> fun = Compile("if (x < 0) result = -x; else result = x;"); local
178 if (fun.is_null()) return -1;
183 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
197 Handle<JSFunction> fun local
221 Handle<JSFunction> fun = Compile(source); local
254 Handle<JSFunction> fun = Compile(source); local
269 Handle<JSFunction> fun = Compile(source); local
358 v8::Local<v8::Function> fun = local
    [all...]
  /external/clang/test/Sema/
invalid-decl.c 27 FunctionType fun; // expected-error {{field 'fun' declared as a function}} member in struct:__anon18712
30 buf->fun = 0;
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.array/
p1.cpp 29 void fun(int p1[], Incomplete p2[10]);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-embedded-cons-string.js 37 function test(fun) {
38 fun();
39 fun();
41 %OptimizeFunctionOnNextCall(fun, "parallel");
43 fun();
47 assertUnoptimized(fun, "no sync");
49 assertOptimized(fun, "sync");
regress-map-invalidation-2.js 45 var fun = g();
46 fun();
47 assertOptimized(fun);
48 fun();
  /external/chromium_org/v8/src/
execution.cc 246 Object* fun = *object; local
247 while (fun->IsJSFunctionProxy()) {
248 fun = JSFunctionProxy::cast(fun)->call_trap();
250 if (fun->IsJSFunction()) return Handle<Object>(fun, isolate);
254 if (fun->IsHeapObject() &&
255 HeapObject::cast(fun)->map()->has_instance_call_handler()) {
270 Object* fun = *object; local
271 while (fun->IsJSFunctionProxy())
303 Object* fun = *object; local
331 Object* fun = *object; local
842 Object* fun = it.frame()->function(); local
    [all...]
  /external/v8/src/
execution.cc 232 Object* fun = *object; local
233 while (fun->IsJSFunctionProxy()) {
234 fun = JSFunctionProxy::cast(fun)->call_trap();
236 if (fun->IsJSFunction()) return Handle<Object>(fun);
240 if (fun->IsHeapObject() &&
241 HeapObject::cast(fun)->map()->has_instance_call_handler()) {
256 Object* fun = *object; local
257 while (fun->IsJSFunctionProxy())
289 Object* fun = *object; local
317 Object* fun = *object; local
837 Object* fun = it.frame()->function(); local
    [all...]
  /external/libffi/src/
raw_api.c 208 (*cl->fun) (cif, rvalue, raw, cl->user_data);
214 void (*fun)(ffi_cif*,void*,ffi_raw*,void*),
227 cl->fun = fun;
246 void (*fun)(ffi_cif*,void*,ffi_raw*,void*),
249 return ffi_prep_raw_closure_loc (cl, cif, fun, user_data, cl);
  /external/libffi/darwin-x86/
ffi.h 255 void (*fun)(ffi_cif*,void*,void**,void*); member in struct:__anon22136
265 void (*fun)(ffi_cif*,void*,void**,void*),
271 void (*fun)(ffi_cif*,void*,void**,void*),
291 void (*fun)(ffi_cif*,void*,ffi_raw*,void*); member in struct:__anon22137
312 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*); member in struct:__anon22138
320 void (*fun)(ffi_cif*,void*,ffi_raw*,void*),
326 void (*fun)(ffi_cif*,void*,ffi_raw*,void*),
333 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*),
339 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*),
  /external/libffi/include/
ffi_real.h 256 void (*fun)(ffi_cif*,void*,void**,void*); member in struct:__anon22144
266 void (*fun)(ffi_cif*,void*,void**,void*),
272 void (*fun)(ffi_cif*,void*,void**,void*),
292 void (*fun)(ffi_cif*,void*,ffi_raw*,void*); member in struct:__anon22145
313 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*); member in struct:__anon22146
321 void (*fun)(ffi_cif*,void*,ffi_raw*,void*),
327 void (*fun)(ffi_cif*,void*,ffi_raw*,void*),
334 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*),
340 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*),

Completed in 524 milliseconds

1 2 3 4 5 6 7 8 91011