Lines Matching refs:arg1

64         Object arg1;
203 msg.arg1, msg.arg2), args.seq);
219 msg.arg1, msg.arg2), args.seq);
235 msg.arg1), args.seq);
250 args.callback.setCursorCapsMode(ic.getCursorCapsMode(msg.arg1),
267 (ExtractedTextRequest)args.arg1, msg.arg1), args.seq);
279 ic.commitText((CharSequence)msg.obj, msg.arg1);
288 ic.setSelection(msg.arg1, msg.arg2);
297 ic.performEditorAction(msg.arg1);
306 ic.performContextMenuAction(msg.arg1);
333 ic.setComposingText((CharSequence)msg.obj, msg.arg1);
342 ic.setComposingRegion(msg.arg1, msg.arg2);
373 ic.clearMetaKeyStates(msg.arg1);
382 ic.deleteSurroundingText(msg.arg1, msg.arg2);
409 ic.reportFullscreenMode(msg.arg1 == 1);
419 ic.performPrivateCommand((String)args.arg1,
431 Message obtainMessageII(int what, int arg1, int arg2) {
432 return mH.obtainMessage(what, arg1, arg2);
435 Message obtainMessageO(int what, Object arg1) {
436 return mH.obtainMessage(what, 0, 0, arg1);
439 Message obtainMessageISC(int what, int arg1, int seq, IInputContextCallback callback) {
443 return mH.obtainMessage(what, arg1, 0, args);
446 Message obtainMessageIISC(int what, int arg1, int arg2, int seq, IInputContextCallback callback) {
450 return mH.obtainMessage(what, arg1, arg2, args);
453 Message obtainMessageIOSC(int what, int arg1, Object arg2, int seq,
456 args.arg1 = arg2;
459 return mH.obtainMessage(what, arg1, 0, args);
462 Message obtainMessageIO(int what, int arg1, Object arg2) {
463 return mH.obtainMessage(what, arg1, 0, arg2);
466 Message obtainMessageOO(int what, Object arg1, Object arg2) {
468 args.arg1 = arg1;