Home
last modified time | relevance | path

Searched refs:newIntent (Results 1 – 5 of 5) sorted by relevance

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothPairingHelper.java115 Intent newIntent = in onReceive() local
128 newIntent.setClassName(mReturnPackage, mReturnClass); in onReceive()
130 newIntent.putExtra(BluetoothDevice.EXTRA_CONNECTION_ACCESS_RESULT, in onReceive()
132 newIntent.putExtra(BluetoothDevice.EXTRA_ALWAYS_ALLOWED, true); in onReceive()
133 newIntent.putExtra(BluetoothDevice.EXTRA_DEVICE, mDevice); in onReceive()
134 newIntent.putExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE, in onReceive()
138 c.sendBroadcast(newIntent, in onReceive()
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/service/
DScriptingLayerService.java269 Intent newIntent = new Intent(ScriptingLayerService.this, ScriptingLayerService.class); in launchScript()
270 newIntent.setAction(Constants.ACTION_KILL_PROCESS); in launchScript()
271 newIntent.putExtra(Constants.EXTRA_PROXY_PORT, port); in launchScript()
273 newIntent.toUri(0))); in launchScript()
274 startService(newIntent); in launchScript()
285 Intent newIntent = new Intent(ScriptingLayerService.this, ScriptingLayerService.class); in launchInterpreter()
286 newIntent.setAction(Constants.ACTION_KILL_PROCESS); in launchInterpreter()
287 newIntent.putExtra(Constants.EXTRA_PROXY_PORT, port); in launchInterpreter()
289 newIntent.toUri(0))); in launchInterpreter()
290 startService(newIntent); in launchInterpreter()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowAlarmManagerTest.java273 Intent newIntent = new Intent("someAction"); in cancel_removesMatchingPendingIntentsWithActions() local
274 PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, newIntent, 0); in cancel_removesMatchingPendingIntentsWithActions()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/controller/
DActivityController.java228 public ActivityController<T> newIntent(Intent intent) { in newIntent() method in ActivityController
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/controller/
DActivityControllerTest.java190 controller.create().newIntent(new Intent(Intent.ACTION_VIEW)); in newIntent_callsOnNewIntentWhilePaused()