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

1 2 3 4 5 6 7

  /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/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 152 void fun(int x) {} function in namespace:test1
155 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)}}
157 ptr2 = &fun; // expected-error {{assigning to 'void (*)(int, int)' from incompatible type 'void (*)(int)': different number of parameters (2 vs 1)}}
161 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')}}
163 ptr2 = &fun; // expected-error {{assigning to 'void (*)(double)' from incompatible type 'void (*)(int)': type mismatch at 1st parameter ('double' vs 'int')}}
167 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')}}
169 ptr2 = &fun; // expected-error {{assigning to 'int (*)(int)' from incompatible type 'void (*)(int)': different return type ('int' vs 'void')}}
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptfunction_p.h 33 QNativeFunctionData(QScriptEnginePrivate* engine, QScriptEngine::FunctionSignature fun)
35 , fun(fun)
40 QScriptEngine::FunctionSignature fun; member in struct:QNativeFunctionData
45 QNativeFunctionWithArgData(QScriptEnginePrivate* engine, QScriptEngine::FunctionWithArgSignature fun, void* arg)
47 , fun(fun)
53 QScriptEngine::FunctionWithArgSignature fun; member in struct:QNativeFunctionWithArgData
qscriptengine.cpp 263 Creates a QScriptValue that wraps a native (C++) function. \a fun
265 \a length is the number of arguments that \a fun expects; this becomes
305 QScriptValue QScriptEngine::newFunction(QScriptEngine::FunctionSignature fun, int length)
307 return QScriptValuePrivate::get(d_ptr->newFunction(fun, 0, length));
311 Creates a constructor function from \a fun, with the given \a length.
335 QScriptValue QScriptEngine::newFunction(QScriptEngine::FunctionSignature fun, const QScriptValue& prototype, int length)
337 return QScriptValuePrivate::get(d_ptr->newFunction(fun, QScriptValuePrivate::get(prototype), length));
344 QScriptValue QScriptEngine::newFunction(QScriptEngine::FunctionWithArgSignature fun, void* arg)
346 return QScriptValuePrivate::get(d_ptr->newFunction(fun, arg));
qscriptengine.h 67 QScriptValue newFunction(FunctionSignature fun, int length = 0);
68 QScriptValue newFunction(FunctionSignature fun, const QScriptValue& prototype, int length = 0);
69 QScriptValue newFunction(FunctionWithArgSignature fun, void* arg);
  /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/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:__anon6726
30 buf->fun = 0;
  /external/webkit/Tools/Scripts/webkitpy/common/net/irc/
ircproxy_unittest.py 37 def fun(): function in function:IRCProxyTest.test_trivial
43 OutputCapture().assert_outputs(self, fun, expected_stderr=expected_stderr)
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptengine/
tst_qscriptengine.cpp 96 QScriptValue fun = eng.newFunction(myFunction); local
97 QCOMPARE(fun.isValid(), true);
98 QCOMPARE(fun.isFunction(), true);
99 QCOMPARE(fun.isObject(), true);
100 // QCOMPARE(fun.scriptClass(), (QScriptClass*)0);
103 QScriptValue prot = fun.property("prototype", QScriptValue::ResolveLocal);
105 QVERIFY(prot.property("constructor").strictlyEquals(fun));
107 QCOMPARE(fun.propertyFlags("prototype"), QScriptValue::Undeletable);
112 QCOMPARE(fun.prototype().isValid(), true);
113 QCOMPARE(fun.prototype().isFunction(), true)
122 QScriptValue fun = eng.newFunction(myFunctionWithArg, reinterpret_cast<void*>(&expectedResult)); local
147 QScriptValue fun = eng.newFunction(myFunction, proto); local
168 QScriptValue fun = eng.newFunction(myFunctionThatReturns); local
179 QScriptValue fun = eng.newFunction(myFunctionThatReturnsWithoutEngine); local
193 QScriptValue fun = eng.newFunction(myFunctionThatReturnsWrongEngine, reinterpret_cast<void*>(&wrongEngine)); local
609 QScriptValue fun = eng.evaluate("(function foo () { return null; });"); local
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
try-006.js 54 function TryObject( value, fun, exception ) {
59 this.check = fun;
try-007.js 57 function TryObject( value, fun, exception ) {
61 this.check = fun;
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.array/
p1.cpp 29 void fun(int p1[], Incomplete p2[10]);
  /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:__anon10087
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:__anon10088
312 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*); member in struct:__anon10089
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:__anon10095
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:__anon10096
313 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*); member in struct:__anon10097
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 665 milliseconds

1 2 3 4 5 6 7