Searched defs:myfunc (Results 1 - 5 of 5) sorted by relevance

/external/ltrace/testsuite/ltrace.minor/
H A Dtrace-clone.c19 typedef int (* myfunc)(); typedef
29 pid = __clone2((myfunc)&child, stack, STACK_SIZE, CLONE_FS, NULL);
31 pid = clone((myfunc)&child, stack + STACK_SIZE, CLONE_FS, NULL);
/external/v8/test/mjsunit/regress/
H A Dregress-842.js32 Array.prototype.myfunc = function() {};
/external/v8/test/webkit/fast/js/kde/
H A Dobject_prototype.js91 function myfunc(a,b,c) function
94 myfunc.someproperty = 4;
96 shouldBe("myfunc.length","3");
97 shouldBe("myfunc.someproperty","4");
98 shouldBe("myfunc.propertyIsEnumerable('length')","false");
99 shouldBe("myfunc.propertyIsEnumerable('someproperty')","true");
100 shouldBe("checkEnumerable(myfunc,'length')","false");
101 shouldBe("checkEnumerable(myfunc,'someproperty')","true");
H A Dexception_propagation.js26 function myfunc() { function
65 myfunc(throwex(), set_from_func_throw_args = 1);
75 myfunc(set_from_before_func_throw_args = 1, throwex());
94 myfunc(aparam(),bparam(),cparam());
109 new myfunc(anewparam(),bnewparam(),cnewparam());
/external/lldb/test/lang/cpp/namespace/
H A Dmain.cpp25 int myfunc (int a);
30 float myfunc (float f) function in namespace:A::B
48 using Foo::myfunc; // using declaration
60 int Foo::myfunc(int a) function in class:Foo
77 return Foo::myfunc(12);

Completed in 5294 milliseconds