/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
PasteAction.java | 24 import org.eclipse.jface.action.Action; 41 public class PasteAction extends Action {
|
CopyCutAction.java | 26 import org.eclipse.jface.action.Action; 50 public class CopyCutAction extends Action { 58 * Creates a new Copy or Cut action. 69 * Creates a new Copy or Cut action. 100 * Performs the cut or copy action.
|
UiTreeBlock.java | 32 import org.eclipse.jface.action.Action; 33 import org.eclipse.jface.action.IMenuListener; 34 import org.eclipse.jface.action.IMenuManager; 35 import org.eclipse.jface.action.MenuManager; 36 import org.eclipse.jface.action.Separator; 37 import org.eclipse.jface.action.ToolBarManager; 550 manager.add(new Action("Add...", factory.getImageDescriptor("add")) { //$NON-NLS-1$ 561 manager.add(new Action("Remove", factory.getImageDescriptor("delete")) { //$NON-NLS-1$ 571 manager.add(new Action("Up", factory.getImageDescriptor("up")) { //$NON-NLS-1 893 DescriptorFilterAction action = ((DescriptorFilter) filter).getAction(); local [all...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfException.h | 56 /// 2. The action table, in our case, is composed of pairs of type ids 57 /// and next action offset. Starting with the action index from the 60 /// on to the landing pad. Otherwise the next action is looked up. This 61 /// chain is terminated with a next action of zero. If no type id is 98 unsigned Action; 102 /// action index for each landing pad site. 113 /// appropriate action. The entry for an ordinary call has a try-range 114 /// containing the call and zero for the landing pad and the action. Calls
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ListViewTypeMenu.java | 34 import org.eclipse.jface.action.Action; 35 import org.eclipse.jface.action.ActionContributionItem; 36 import org.eclipse.jface.action.IAction; 37 import org.eclipse.jface.action.Separator; 75 IAction action = new PickLayoutAction("Choose Layout...", KEY_LV_ITEM); local 76 new ActionContributionItem(action).fill(menu, -1); 87 action = new SetListTypeAction("Spinner Item", 89 new ActionContributionItem(action).fill(menu, -1); 90 action = new SetListTypeAction("Spinner Dropdown Item" [all...] |
PlayAnimationMenu.java | 33 import org.eclipse.jface.action.Action; 34 import org.eclipse.jface.action.ActionContributionItem; 35 import org.eclipse.jface.action.IAction; 36 import org.eclipse.jface.action.Separator; 108 IAction action = new PlayAnimationAction(title, animation, mFramework); local 109 new ActionContributionItem(action).fill(menu, -1); 118 // "Create New" action 132 private class PlayAnimationAction extends Action { 217 * Action which brings up the "Create new XML File" wizard, pre-selected with th [all...] |
DynamicContextMenu.java | 46 import org.eclipse.jface.action.Action; 47 import org.eclipse.jface.action.ActionContributionItem; 48 import org.eclipse.jface.action.ContributionItem; 49 import org.eclipse.jface.action.IAction; 50 import org.eclipse.jface.action.IContributionItem; 51 import org.eclipse.jface.action.IMenuListener; 52 import org.eclipse.jface.action.IMenuManager; 53 import org.eclipse.jface.action.MenuManager; 54 import org.eclipse.jface.action.Separator [all...] |
FragmentMenu.java | 41 import org.eclipse.jface.action.Action; 42 import org.eclipse.jface.action.ActionContributionItem; 43 import org.eclipse.jface.action.IAction; 44 import org.eclipse.jface.action.Separator; 78 IAction action = new PickLayoutAction("Choose Layout..."); local 79 new ActionContributionItem(action).fill(menu, -1); 157 action = new SetFragmentLayoutAction(layout.getFirst(), 159 new ActionContributionItem(action).fill(menu, -1); 167 action = new SetFragmentLayoutAction("Clear", null, null) [all...] |
OutlinePage.java | 51 import org.eclipse.jface.action.Action; 52 import org.eclipse.jface.action.ActionContributionItem; 53 import org.eclipse.jface.action.IAction; 54 import org.eclipse.jface.action.IContributionItem; 55 import org.eclipse.jface.action.IMenuListener; 56 import org.eclipse.jface.action.IMenuManager; 57 import org.eclipse.jface.action.MenuManager; 58 import org.eclipse.jface.action.Separator; 139 /** Action to Select All in the tree * [all...] |
/sdk/traceview/src/com/android/traceview/ |
MainWindow.java | 21 import org.eclipse.jface.action.Action; 22 import org.eclipse.jface.action.MenuManager; 120 Action showPropertiesAction = new Action("Show Properties...") {
|
/external/chromium/chrome/browser/sync/glue/ |
autofill_change_processor.cc | 27 sync_api::SyncManager::ChangeRecord::Action action_; 30 AutofillChangeRecord(sync_api::SyncManager::ChangeRecord::Action action, 32 : action_(action), 211 sync_api::SyncManager::ChangeRecord::Action action(changes[i].action); 212 if (sync_api::SyncManager::ChangeRecord::ACTION_DELETE == action) { 219 autofill_changes_.push_back(AutofillChangeRecord(changes[i].action, 245 autofill_changes_.push_back(AutofillChangeRecord(changes[i].action, [all...] |
/external/clang/tools/scan-build/ |
c++-analyzer | 395 my $Action = 'link'; 441 if ($Arg =~ /^-(E|MM?)$/) { $Action = 'preprocess'; } 442 elsif ($Arg eq '-c') { $Action = 'compile'; } 587 if ($Action eq 'compile' or $Action eq 'link') {
|
ccc-analyzer | 395 my $Action = 'link'; 441 if ($Arg =~ /^-(E|MM?)$/) { $Action = 'preprocess'; } 442 elsif ($Arg eq '-c') { $Action = 'compile'; } 587 if ($Action eq 'compile' or $Action eq 'link') {
|
/sdk/emulator/qtools/ |
callstack.h | 77 enum Action { NONE, PUSH, POP, NATIVE_PUSH }; 79 Action getAction(BBEvent *event, symbol_type *function); 86 void doPop(BBEvent *event, symbol_type *function, Action methodAction); 172 Action action = getAction(event, function); local 177 action = NONE; 184 if (action == PUSH) { 186 } else if (action == POP) { 192 if (action == POP && mPrevFunction->vm_sym == NULL) { 203 action = methodAction 249 Action action; local [all...] |
/external/ppp/pppd/plugins/radius/etc/ |
dictionary | 71 ATTRIBUTE Termination-Action 29 integer 182 VALUE Termination-Action Default 0 183 VALUE Termination-Action RADIUS-Request 1
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/ |
OldLogCatView.java | 35 import org.eclipse.jface.action.Action; 36 import org.eclipse.jface.action.IAction; 37 import org.eclipse.jface.action.IMenuManager; 38 import org.eclipse.jface.action.IToolBarManager; 39 import org.eclipse.jface.action.Separator; 117 private Action mClearAction; 167 * double-click or by the Go to Problem action. 317 Action a = mLogLevelActions[i]; 334 mClearAction = new Action(Messages.LogCatView_Clear_Log) [all...] |
LogCatView.java | 38 import org.eclipse.jface.action.Action; 100 new Action(Messages.LogCatView_Copy) { 108 new Action(Messages.LogCatView_Select_All) { 122 * double-click or by the Go to Problem action.
|
/external/chromium/testing/gmock/scripts/ |
gmock_doctor.py | 177 r'::operator Action<.*>\' requested here') 179 You are using a Return() action in a function that returns a reference to 202 You are using an action that returns void, but it needs to return 227 r'::operator Action<void \(.*\)>\' requested here') 234 r'::operator Action<(?P<return_type>.*) \(.*\)>\' ' 237 You are using an action that returns %(return_type)s, but it needs to return 238 void. Please use a void-returning action instead. 318 return _GenericDiagnoser('OFA', 'Overloaded Function Action', 347 return _GenericDiagnoser('OMA', 'Overloaded Method Action', 415 '::operator testing::Action<Func>\(\) const.*\n' [all...] |
/external/webkit/Source/WebCore/platform/graphics/ca/ |
GraphicsLayerCA.h | 382 enum Action { Remove, Pause }; 384 AnimationProcessingAction(Action action = Remove, double timeOffset = 0) 385 : action(action) 389 Action action; member in struct:WebCore::GraphicsLayerCA::AnimationProcessingAction
|
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
DataAction.java | 49 public class DataAction implements Action { 68 * Create an action from common {@link Data} elements. 194 // as a secondary action. 221 // Otherwise fall back to default VIEW action 315 public boolean collapseWith(Action other) { 323 public boolean shouldCollapseWith(Action t) {
|
QuickContactActivity.java | 122 * Keeps the default action per mimetype. Empty if no default actions are set 124 private HashMap<String, Action> mDefaultsMap = new HashMap<String, Action>(); 127 * Set of {@link Action} that are associated with the aggregate currently 129 * MIME-type to a list of {@link Action}. 445 // Build an action for this data entry, find a mapping to a UI 448 final Action action = new DataAction(context, mimeType, kind, dataId, cursor); local 449 final boolean wasAdded = considerAdd(action, cache); 453 mDefaultsMap.put(mimeType, action); 464 final DataAction action = new DataAction(context, Im.CONTENT_ITEM_TYPE, imKind, local 539 mActions.put(action.getMimeType(), action); local [all...] |
/external/llvm/lib/CompilerDriver/ |
Action.cpp | 1 //===--- Action.cpp - The LLVM Compiler Driver ------------------*- C++ -*-===// 10 // Action class - implementation and auxiliary functions. 14 #include "llvm/CompilerDriver/Action.h" 113 int llvmc::Action::Execute () const {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/i18n/ |
messages.properties | 74 LogCatPreferencePage_Double_Click_Action=Double-click Action: 100 PreferencePage_HPROF_Action=HPROF Action:
|
/cts/tests/tests/drm/src/android/drm/cts/ |
DRMTest.java | 113 DrmStore.Action.DEFAULT); 139 DrmStore.Action.PLAY);
|
/external/clang/lib/Driver/ |
Driver.cpp | 16 #include "clang/Driver/Action.h" 541 static unsigned PrintActions1(const Compilation &C, Action *A, 542 std::map<Action*, unsigned> &Ids) { 549 os << Action::getClassName(A->getKind()) << ", "; 558 for (Action::iterator it = A->begin(), ie = A->end(); it != ie;) { 576 std::map<Action*, unsigned> Ids; 584 static bool ContainsCompileOrAssembleAction(const Action *A) { 588 for (Action::const_iterator it = A->begin(), ie = A->end(); it != ie; ++it) 643 // Add in arch bindings for every top level action, as well as lipo and 646 Action *Act = SingleActions[i] [all...] |