• Home
  • Raw
  • Download

Lines Matching refs:newIntent

1498         Intent newIntent = new Intent(Intent.ACTION_VIEW);  in launchMenuActivity()  local
1507 newIntent.setClassName(PACKAGE_NAME, targetActivity); in launchMenuActivity()
1517 newIntent.putExtra("STATE", StkMenuActivity.STATE_SECONDARY); in launchMenuActivity()
1519 newIntent.putExtra("STATE", StkMenuActivity.STATE_MAIN); in launchMenuActivity()
1525 newIntent.putExtra("STATE", StkMenuActivity.STATE_SECONDARY); in launchMenuActivity()
1528 newIntent.putExtra(SLOT_ID, slotId); in launchMenuActivity()
1529 newIntent.setData(uriData); in launchMenuActivity()
1530 newIntent.setFlags(intentFlags); in launchMenuActivity()
1531 startActivity(newIntent); in launchMenuActivity()
1535 Intent newIntent = new Intent(Intent.ACTION_VIEW); in launchInputActivity() local
1543 newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK in launchInputActivity()
1545 newIntent.setClassName(PACKAGE_NAME, targetActivity); in launchInputActivity()
1546 newIntent.putExtra("INPUT", input); in launchInputActivity()
1547 newIntent.putExtra(SLOT_ID, slotId); in launchInputActivity()
1548 newIntent.setData(uriData); in launchInputActivity()
1553 startActivity(newIntent); in launchInputActivity()
1558 Intent newIntent = new Intent(); in launchTextDialog() local
1566 newIntent.setClassName(PACKAGE_NAME, targetActivity); in launchTextDialog()
1567 newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK in launchTextDialog()
1570 newIntent.setData(uriData); in launchTextDialog()
1571 newIntent.putExtra("TEXT", textMessage); in launchTextDialog()
1572 newIntent.putExtra(SLOT_ID, slotId); in launchTextDialog()
1577 startActivity(newIntent); in launchTextDialog()
2046 Intent newIntent = new Intent(); in launchConfirmationDialog() local
2052 newIntent.setClassName(this, targetActivity); in launchConfirmationDialog()
2053 newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK in launchConfirmationDialog()
2057 newIntent.putExtra("TEXT", msg); in launchConfirmationDialog()
2058 newIntent.putExtra(SLOT_ID, slotId); in launchConfirmationDialog()
2059 newIntent.setData(uriData); in launchConfirmationDialog()
2060 startActivity(newIntent); in launchConfirmationDialog()
2186 Intent newIntent = new Intent(this, ToneDialog.class); in launchToneDialog() local
2191 newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK in launchToneDialog()
2195 newIntent.putExtra("TEXT", mStkContext[slotId].mCurrentCmd.geTextMessage()); in launchToneDialog()
2196 newIntent.putExtra("TONE", mStkContext[slotId].mCurrentCmd.getToneSettings()); in launchToneDialog()
2197 newIntent.putExtra(SLOT_ID, slotId); in launchToneDialog()
2198 newIntent.setData(uriData); in launchToneDialog()
2199 startActivity(newIntent); in launchToneDialog()
2272 Intent newIntent = new Intent(sInstance, ToneDialog.class); in playTone() local
2275 newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK in playTone()
2280 newIntent.putExtra("TEXT", mStkContext[slotId].mCurrentCmd.geTextMessage()); in playTone()
2281 newIntent.putExtra(SLOT_ID, slotId); in playTone()
2282 newIntent.setData(uriData); in playTone()
2283 startActivity(newIntent); in playTone()