Searched defs:actions (Results 1 - 4 of 4) sorted by relevance

/frameworks/compile/mclinker/unittests/
H A DInputTreeTest.cpp65 std::vector<InputAction*> actions; local
68 actions.push_back(new StartGroupAction(position++));
69 actions.push_back(new InputFileAction(position++, "path1"));
70 actions.push_back(new EndGroupAction(position++));
73 for (action = actions.begin(); action != actions.end(); ++action) {
/frameworks/compile/mclinker/lib/CodeGen/
H A DMCLinker.cpp262 std::vector<InputAction*> actions; local
263 actions.reserve(num_actions);
271 actions.push_back(new InputFileAction(pos, *input));
272 actions.push_back(new ContextAction(pos));
273 actions.push_back(new MemoryAreaAction(pos, FileHandle::ReadOnly));
283 actions.push_back(new NamespecAction(pos, *namespec,
285 actions.push_back(new ContextAction(pos));
286 actions.push_back(new MemoryAreaAction(pos, FileHandle::ReadOnly));
296 actions.push_back(new WholeArchiveAction(pos));
304 actions
[all...]
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
H A DBluetoothTestUtils.java419 * actions were broadcast.
479 * actions were broadcast.
539 * is in discoverable mode and that the correct actions were broadcast.
582 * device is in in connectable mode and that the correct actions were broadcast.
625 * and that the correct actions were broadcast.
663 * and that the correct actions were broadcast.
737 * and that the correct actions were broadcast.
750 * and that the correct actions were broadcast.
836 * and that the correct actions were broadcast.
897 * profile is connected and that the correct actions wer
1377 addReceiver(BroadcastReceiver receiver, String[] actions) argument
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java587 * attach actions.
659 * interface for invoking actions.
661 public Action[] actions; field in class:Notification
757 actions = parcel.createTypedArray(Action.CREATOR); // may be null
836 if (this.actions != null) {
837 that.actions = new Action[this.actions.length];
838 for(int i=0; i<this.actions.length; i++) {
839 that.actions[i] = this.actions[
[all...]

Completed in 667 milliseconds