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

1 2 3 4 5 6

  /external/valgrind/main/
bionic.supp 12 fun:__dl_strlen
14 fun:__dl_find_library
15 fun:__dl_dlopen
glibc-2.X-drd.supp 41 # fun:_ZNSsC1ERKSs
47 fun:pthread_cond_broadcast@*
48 fun:__cxa_guard_release
60 fun:pthread_create*
65 fun:pthread_join
66 fun:pthread_join
72 fun:__deallocate_stack
77 fun:__free_stacks
83 fun:__free_tcb
88 fun:__nptl_deallocate_ts
    [all...]
  /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 9 void fun(const char* text) { function
44 fun(ptr);
  /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/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/CodeGen/
2009-01-05-BlockInlining.c 10 static int fun(int x) { function
24 print(fun(x));
  /external/valgrind/tsan/
ignore.h 9 string fun; member in struct:IgnoreTriple
13 IgnoreTriple(string ifun, string iobj, string ifile) : fun(ifun) {
25 IgnoreFun(string fun) : IgnoreTriple(fun, "*", "*") {}
47 const string& fun,
ignore.cc 51 } else if (CutStringPrefixIfPresent(input_line, "fun:", &tail)) {
79 const string& fun,
83 if ((fun.size() == 0 || StringMatch(v[i].fun, fun)) &&
86 if ((fun.size() == 0 || v[i].fun == "*") &&
92 // fun="fun", obj="obj.o", file="".
  /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/v8/test/cctest/
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/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/clang/test/Parser/
ms-inline-asm.c 12 int 0x2c ; } asm comments are fun! }{
  /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:__anon7559
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:__anon7560
312 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*); member in struct:__anon7561
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:__anon7567
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:__anon7568
313 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*); member in struct:__anon7569
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*),
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
tree-flow-inline.h 33 gimple_in_ssa_p (const struct function *fun)
35 return fun && fun->gimple_df && fun->gimple_df->in_ssa_p;
40 gimple_aliases_computed_p (const struct function *fun)
42 gcc_assert (fun && fun->gimple_df);
43 return fun->gimple_df->aliases_computed_p;
54 gimple_addressable_vars (const struct function *fun)
56 gcc_assert (fun && fun->gimple_df)
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
tree-flow-inline.h 33 gimple_in_ssa_p (const struct function *fun)
35 return fun && fun->gimple_df && fun->gimple_df->in_ssa_p;
40 gimple_aliases_computed_p (const struct function *fun)
42 gcc_assert (fun && fun->gimple_df);
43 return fun->gimple_df->aliases_computed_p;
54 gimple_addressable_vars (const struct function *fun)
56 gcc_assert (fun && fun->gimple_df)
    [all...]

Completed in 496 milliseconds

1 2 3 4 5 6