Home | History | Annotate | Download | only in runtime

Lines Matching defs:args

144     jvalue args[1];
146 args[0].b = 0;
147 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
150 args[0].b = -1;
151 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
154 args[0].b = SCHAR_MAX;
155 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
158 args[0].b = (SCHAR_MIN << 24) >> 24;
159 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
168 jvalue args[1];
170 args[0].i = 0;
171 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
174 args[0].i = -1;
175 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
178 args[0].i = INT_MAX;
179 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
182 args[0].i = INT_MIN;
183 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
192 jvalue args[1];
194 args[0].d = 0.0;
195 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
198 args[0].d = -1.0;
199 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
202 args[0].d = DBL_MAX;
203 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
206 args[0].d = DBL_MIN;
207 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
216 jvalue args[2];
218 args[0].i = 1;
219 args[1].i = 2;
220 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
223 args[0].i = -2;
224 args[1].i = 5;
225 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
228 args[0].i = INT_MAX;
229 args[1].i = INT_MIN;
230 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
233 args[0].i = INT_MAX;
234 args[1].i = INT_MAX;
235 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
244 jvalue args[3];
246 args[0].i = 0;
247 args[1].i = 0;
248 args[2].i = 0;
249 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
252 args[0].i = 1;
253 args[1].i = 2;
254 args[2].i = 3;
255 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
258 args[0].i = -1;
259 args[1].i = 2;
260 args[2].i = -3;
261 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
264 args[0].i = INT_MAX;
265 args[1].i = INT_MIN;
266 args[2].i = INT_MAX;
267 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
270 args[0].i = INT_MAX;
271 args[1].i = INT_MAX;
272 args[2].i = INT_MAX;
273 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
282 jvalue args[4];
284 args[0].i = 0;
285 args[1].i = 0;
286 args[2].i = 0;
287 args[3].i = 0;
288 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
291 args[0].i = 1;
292 args[1].i = 2;
293 args[2].i = 3;
294 args[3].i = 4;
295 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
298 args[0].i = -1;
299 args[1].i = 2;
300 args[2].i = -3;
301 args[3].i = 4;
302 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
305 args[0].i = INT_MAX;
306 args[1].i = INT_MIN;
307 args[2].i = INT_MAX;
308 args[3].i = INT_MIN;
309 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
312 args[0].i = INT_MAX;
313 args[1].i = INT_MAX;
314 args[2].i = INT_MAX;
315 args[3].i = INT_MAX;
316 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
325 jvalue args[5];
327 args[0].i = 0;
328 args[1].i = 0;
329 args[2].i = 0;
330 args[3].i = 0;
331 args[4].i = 0;
332 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
335 args[0].i = 1;
336 args[1].i = 2;
337 args[2].i = 3;
338 args[3].i = 4;
339 args[4].i = 5;
340 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
343 args[0].i = -1;
344 args[1].i = 2;
345 args[2].i = -3;
346 args[3].i = 4;
347 args[4].i = -5;
348 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
351 args[0].i = INT_MAX;
352 args[1].i = INT_MIN;
353 args[2].i = INT_MAX;
354 args[3].i = INT_MIN;
355 args[4].i = INT_MAX;
356 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
359 args[0].i = INT_MAX;
360 args[1].i = INT_MAX;
361 args[2].i = INT_MAX;
362 args[3].i = INT_MAX;
363 args[4].i = INT_MAX;
364 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
373 jvalue args[2];
375 args[0].d = 0.0;
376 args[1].d = 0.0;
377 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
380 args[0].d = 1.0;
381 args[1].d = 2.0;
382 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
385 args[0].d = 1.0;
386 args[1].d = -2.0;
387 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
390 args[0].d = DBL_MAX;
391 args[1].d = DBL_MIN;
392 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
395 args[0].d = DBL_MAX;
396 args[1].d = DBL_MAX;
397 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
406 jvalue args[3];
408 args[0].d = 0.0;
409 args[1].d = 0.0;
410 args[2].d = 0.0;
411 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
414 args[0].d = 1.0;
415 args[1].d = 2.0;
416 args[2].d = 3.0;
417 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
420 args[0].d = 1.0;
421 args[1].d = -2.0;
422 args[2].d = 3.0;
423 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
432 jvalue args[4];
434 args[0].d = 0.0;
435 args[1].d = 0.0;
436 args[2].d = 0.0;
437 args[3].d = 0.0;
438 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
441 args[0].d = 1.0;
442 args[1].d = 2.0;
443 args[2].d = 3.0;
444 args[3].d = 4.0;
445 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
448 args[0].d = 1.0;
449 args[1].d = -2.0;
450 args[2].d = 3.0;
451 args[3].d = -4.0;
452 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
461 jvalue args[5];
463 args[0].d = 0.0;
464 args[1].d = 0.0;
465 args[2].d = 0.0;
466 args[3].d = 0.0;
467 args[4].d = 0.0;
468 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
471 args[0].d = 1.0;
472 args[1].d = 2.0;
473 args[2].d = 3.0;
474 args[3].d = 4.0;
475 args[4].d = 5.0;
476 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
479 args[0].d = 1.0;
480 args[1].d = -2.0;
481 args[2].d = 3.0;
482 args[3].d = -4.0;
483 args[4].d = 5.0;
484 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args);
515 jvalue args[1];
516 args[0].l = nullptr;
517 InvokeWithJValues(soa, nullptr, soa.EncodeMethod(method), args);