Searched refs:in1 (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppLauncherActivity.java143 Intent in1 = new Intent(BluetoothDevicePicker.ACTION_LAUNCH);
144 in1.setFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
145 in1.putExtra(BluetoothDevicePicker.EXTRA_NEED_AUTH, false);
146 in1.putExtra(BluetoothDevicePicker.EXTRA_FILTER_TYPE,
148 in1.putExtra(BluetoothDevicePicker.EXTRA_LAUNCH_PACKAGE,
150 in1.putExtra(BluetoothDevicePicker.EXTRA_LAUNCH_CLASS,
153 this.startActivity(in1);
H A DBluetoothOppReceiver.java77 Intent in1 = new Intent(BluetoothDevicePicker.ACTION_LAUNCH);
78 in1.putExtra(BluetoothDevicePicker.EXTRA_NEED_AUTH, false);
79 in1.putExtra(BluetoothDevicePicker.EXTRA_FILTER_TYPE,
81 in1.putExtra(BluetoothDevicePicker.EXTRA_LAUNCH_PACKAGE,
83 in1.putExtra(BluetoothDevicePicker.EXTRA_LAUNCH_CLASS,
86 in1.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
87 context.startActivity(in1);
/packages/apps/Camera/jni/feature_stab/src/dbreg/
H A Ddbstabsmooth.cpp24 static bool vpmotion_add(VP_MOTION *in1, VP_MOTION *in2, VP_MOTION *out);
25 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out);
307 static bool vpmotion_add(VP_MOTION *in1, VP_MOTION *in2, VP_MOTION *out) argument
310 if(in1 == NULL || in2 == NULL || out == NULL)
314 out->par[i] = in1->par[i] + in2->par[i];
319 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out) argument
322 if(in1 == NULL || out == NULL)
326 out->par[i] = in1->par[i] * factor;

Completed in 55 milliseconds