/third_party/quickjs/tests/ |
D | test_language.js | 484 f = function myfunc() { function 485 myfunc = 1; 486 return myfunc; 490 f = function myfunc() { 491 myfunc = 1; 493 myfunc = 1; 495 return myfunc; 499 f = function myfunc() { 501 return myfunc; 508 f = function myfunc() { [all …]
|
/third_party/skia/third_party/externals/spirv-cross/shaders-msl/comp/ |
D | functions.comp | 4 void myfunc() 11 myfunc();
|
/third_party/node/deps/npm/node_modules/move-concurrently/node_modules/aproba/ |
D | README.md | 9 function myfunc(a, b, c) { 14 myfunc('test', 23, function () {}) // ok 15 myfunc(123, 23, function () {}) // type error 16 myfunc('test', 23) // missing arg error 17 myfunc('test', 23, function () {}, true) // too many args error
|
/third_party/node/deps/npm/node_modules/aproba/ |
D | README.md | 9 function myfunc(a, b, c) { 14 myfunc('test', 23, function () {}) // ok 15 myfunc(123, 23, function () {}) // type error 16 myfunc('test', 23) // missing arg error 17 myfunc('test', 23, function () {}, true) // too many args error
|
/third_party/node/deps/npm/node_modules/run-queue/node_modules/aproba/ |
D | README.md | 9 function myfunc(a, b, c) { 14 myfunc('test', 23, function () {}) // ok 15 myfunc(123, 23, function () {}) // type error 16 myfunc('test', 23) // missing arg error 17 myfunc('test', 23, function () {}, true) // too many args error
|
/third_party/node/deps/npm/node_modules/copy-concurrently/node_modules/aproba/ |
D | README.md | 9 function myfunc(a, b, c) { 14 myfunc('test', 23, function () {}) // ok 15 myfunc(123, 23, function () {}) // type error 16 myfunc('test', 23) // missing arg error 17 myfunc('test', 23, function () {}, true) // too many args error
|
/third_party/node/deps/npm/node_modules/gentle-fs/node_modules/aproba/ |
D | README.md | 9 function myfunc(a, b, c) { 14 myfunc('test', 23, function () {}) // ok 15 myfunc(123, 23, function () {}) // type error 16 myfunc('test', 23) // missing arg error 17 myfunc('test', 23, function () {}, true) // too many args error
|
/third_party/node/deps/npm/node_modules/gauge/node_modules/aproba/ |
D | README.md | 9 function myfunc(a, b, c) { 14 myfunc('test', 23, function () {}) // ok 15 myfunc(123, 23, function () {}) // type error 16 myfunc('test', 23) // missing arg error 17 myfunc('test', 23, function () {}, true) // too many args error
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-msl/comp/ |
D | functions.comp | 9 void myfunc(threadgroup int (&foo)[1337]) 17 myfunc(foo);
|
/third_party/boost/libs/signals2/test/ |
D | track_test.cpp | 52 static int myfunc(int i, double z) in myfunc() function 90 boost::signals2::slot<int (double)> other_slot(&myfunc, boost::cref(*shorty.get()), _1); in BOOST_AUTO_TEST_CASE() 102 s2.connect(sig_type::slot_type(&myfunc, _1, 0.7)); in BOOST_AUTO_TEST_CASE()
|
/third_party/skia/infra/bots/recipe_modules/run/examples/ |
D | full.py | 18 def myfunc(api, i): function 34 api.run.run_once(myfunc, api, i)
|
/third_party/flutter/skia/infra/bots/recipe_modules/run/examples/ |
D | full.py | 17 def myfunc(api, i): function 33 api.run.run_once(myfunc, api, i)
|
/third_party/mindspore/tests/ut/python/pynative_mode/ |
D | test_parse_method.py | 331 def myfunc(x): function 354 y = myfunc(x) + y
|
/third_party/node/deps/cares/m4/ |
D | cares-compilers.m4 | 1247 struct mystruct myfunc(); 1248 typedef char good_t1[sizeof(myfunc().mi) == sizeof(int) ? 1 : -1 ]; 1249 typedef char good_t2[sizeof(myfunc().mc) == sizeof(char) ? 1 : -1 ]; 1269 struct mystruct myfunc(); 1270 typedef char bad_t1[sizeof(myfunc().mi) != sizeof(int) ? 1 : -1 ]; 1271 typedef char bad_t2[sizeof(myfunc().mc) != sizeof(char) ? 1 : -1 ];
|
/third_party/curl/m4/ |
D | curl-compilers.m4 | 1348 struct mystruct myfunc(); 1349 typedef char good_t1[sizeof(myfunc().mi) == sizeof(int) ? 1 : -1 ]; 1350 typedef char good_t2[sizeof(myfunc().mc) == sizeof(char) ? 1 : -1 ]; 1370 struct mystruct myfunc(); 1371 typedef char bad_t1[sizeof(myfunc().mi) != sizeof(int) ? 1 : -1 ]; 1372 typedef char bad_t2[sizeof(myfunc().mc) != sizeof(char) ? 1 : -1 ];
|
/third_party/python/Lib/unittest/test/testmock/ |
D | testhelpers.py | 957 def myfunc(x, y): pass function 959 mock = create_autospec(myfunc) 963 self.assertEqual(inspect.signature(mock), inspect.signature(myfunc))
|
/third_party/python/Doc/library/ |
D | dis.rst | 28 Example: Given the function :func:`myfunc`:: 30 def myfunc(alist): 34 :func:`myfunc`:: 36 >>> dis.dis(myfunc) 101 >>> bytecode = dis.Bytecode(myfunc)
|
D | re.rst | 872 ... 'def myfunc():')
|
/third_party/python/Doc/howto/ |
D | logging-cookbook.rst | 112 logging.debug('Hi from myfunc') 136 0 Thread-1 Hi from myfunc 138 505 Thread-1 Hi from myfunc 140 1007 Thread-1 Hi from myfunc 142 1508 Thread-1 Hi from myfunc 143 2010 Thread-1 Hi from myfunc 145 2512 Thread-1 Hi from myfunc 147 3013 Thread-1 Hi from myfunc 148 3515 Thread-1 Hi from myfunc 150 4017 Thread-1 Hi from myfunc [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/val/ |
D | val_decoration_test.cpp | 4858 OpName %myfunc "myfunc" in ShaderWithUniformLikeDecoration()
|
/third_party/skia/third_party/externals/spirv-tools/test/val/ |
D | val_decoration_test.cpp | 4858 OpName %myfunc "myfunc" in ShaderWithUniformLikeDecoration()
|
/third_party/spirv-tools/test/val/ |
D | val_decoration_test.cpp | 4860 OpName %myfunc "myfunc" in ShaderWithUniformLikeDecoration()
|
/third_party/ffmpeg/doc/ |
D | developer.texi | 109 int myfunc(int my_parameter)
|