Lines Matching refs:newIntent

1558         Intent newIntent = new Intent(Intent.ACTION_VIEW);  in launchMenuActivity()  local
1567 newIntent.setClassName(PACKAGE_NAME, targetActivity); in launchMenuActivity()
1577 newIntent.putExtra("STATE", StkMenuActivity.STATE_SECONDARY); in launchMenuActivity()
1579 newIntent.putExtra("STATE", StkMenuActivity.STATE_MAIN); in launchMenuActivity()
1585 newIntent.putExtra("STATE", StkMenuActivity.STATE_SECONDARY); in launchMenuActivity()
1591 newIntent.putExtra(SLOT_ID, slotId); in launchMenuActivity()
1592 newIntent.setData(uriData); in launchMenuActivity()
1593 newIntent.setFlags(intentFlags); in launchMenuActivity()
1594 startActivity(newIntent); in launchMenuActivity()
1598 Intent newIntent = new Intent(Intent.ACTION_VIEW); in launchInputActivity() local
1606 newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK in launchInputActivity()
1608 newIntent.setClassName(PACKAGE_NAME, targetActivity); in launchInputActivity()
1609 newIntent.putExtra("INPUT", input); in launchInputActivity()
1610 newIntent.putExtra(SLOT_ID, slotId); in launchInputActivity()
1611 newIntent.setData(uriData); in launchInputActivity()
1616 startActivity(newIntent); in launchInputActivity()
1622 Intent newIntent = new Intent(); in launchTextDialog() local
1630 newIntent.setClassName(PACKAGE_NAME, targetActivity); in launchTextDialog()
1631 newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK in launchTextDialog()
1633 newIntent.setData(uriData); in launchTextDialog()
1634 newIntent.putExtra("TEXT", textMessage); in launchTextDialog()
1635 newIntent.putExtra(SLOT_ID, slotId); in launchTextDialog()
1640 startActivity(newIntent); in launchTextDialog()
2061 Intent newIntent = new Intent(); in launchConfirmationDialog() local
2067 newIntent.setClassName(this, targetActivity); in launchConfirmationDialog()
2068 newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK in launchConfirmationDialog()
2072 newIntent.putExtra("TEXT", msg); in launchConfirmationDialog()
2073 newIntent.putExtra(SLOT_ID, slotId); in launchConfirmationDialog()
2074 newIntent.setData(uriData); in launchConfirmationDialog()
2075 startActivity(newIntent); in launchConfirmationDialog()
2201 Intent newIntent = new Intent(this, ToneDialog.class); in launchToneDialog() local
2206 newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK in launchToneDialog()
2210 newIntent.putExtra("TEXT", mStkContext[slotId].mCurrentCmd.geTextMessage()); in launchToneDialog()
2211 newIntent.putExtra("TONE", mStkContext[slotId].mCurrentCmd.getToneSettings()); in launchToneDialog()
2212 newIntent.putExtra(SLOT_ID, slotId); in launchToneDialog()
2213 newIntent.setData(uriData); in launchToneDialog()
2214 startActivity(newIntent); in launchToneDialog()
2284 Intent newIntent = new Intent(sInstance, ToneDialog.class); in playTone() local
2287 newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK in playTone()
2290 newIntent.putExtra("TEXT", mStkContext[slotId].mCurrentCmd.geTextMessage()); in playTone()
2291 newIntent.putExtra(SLOT_ID, slotId); in playTone()
2292 newIntent.setData(uriData); in playTone()
2293 startActivity(newIntent); in playTone()