/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 { 222 * Action which brings up the "Create new XML File" wizard, pre-selected with th [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...] |
/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...") {
|
/frameworks/base/core/java/android/widget/ |
RemoteViews.java | 88 private ArrayList<Action> mActions; 142 * Exception to send when something goes wrong executing an action 186 private abstract static class Action implements Parcelable { 208 private class SetEmptyView extends Action { 244 private class SetOnClickFillInIntent extends Action { 325 private class SetPendingIntentTemplate extends Action { 408 private class SetRemoteViewsAdapterIntent extends Action { 432 Log.e("RemoteViews", "SetRemoteViewsAdapterIntent action can only be used for " + 467 private class SetOnClickPendingIntent extends Action { 560 private class SetDrawableParameters extends Action { [all...] |
/external/littlemock/src/com/google/testing/littlemock/ |
LittleMock.java | 118 return new BehaviourImpl(new Action() { 130 return new BehaviourImpl(new Action() { 140 return new BehaviourImpl(new Action() { 200 private static List<Action> sUnfinishedStubbingActions = new ArrayList<Action>(); 450 private final Action mAction; 452 private BehaviourImpl(Action action) { 453 mAction = action; 585 * The action to be associated with the stubbed method [all...] |
/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/lib/CodeGen/ |
CodeGenAction.cpp | 1 //===--- CodeGenAction.cpp - LLVM Code Generation Frontend Action ---------===// 39 BackendAction Action; 53 BackendConsumer(BackendAction action, DiagnosticsEngine &_Diags, 63 Action(action), 160 TheModule.get(), Action, AsmOutStream); 305 BackendAction Action) { 306 switch (Action) { 320 llvm_unreachable("Invalid action!");
|
/external/clang/tools/scan-build/ |
c++-analyzer | 419 my $Action = 'link'; 465 if ($Arg =~ /^-(E|MM?)$/) { $Action = 'preprocess'; } 466 elsif ($Arg eq '-c') { $Action = 'compile'; } 611 if ($Action eq 'compile' or $Action eq 'link') {
|
ccc-analyzer | 419 my $Action = 'link'; 465 if ($Arg =~ /^-(E|MM?)$/) { $Action = 'preprocess'; } 466 elsif ($Arg eq '-c') { $Action = 'compile'; } 611 if ($Action eq 'compile' or $Action eq 'link') {
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/ |
ComponentsView.java | 25 import org.eclipse.jface.action.Action; 26 import org.eclipse.jface.action.IAction; 27 import org.eclipse.jface.action.IMenuManager; 28 import org.eclipse.jface.action.Separator; 64 * There's only one available action from this view: read the local data files. This 107 Action filterAdvancedScenarios; 108 Action writeStatus; 167 // Action fingerprints = ComponentsView.this.filterNonFingerprints; 237 * @see org.eclipse.test.internal.performance.results.ui.PerformancesView#fillLocalPullDown(org.eclipse.jface.action.IMenuManager [all...] |
/frameworks/testing/uiautomator/utils/uiautomatorviewer/src/com/android/uiautomator/ |
UiAutomatorViewer.java | 27 import org.eclipse.jface.action.Action; 28 import org.eclipse.jface.action.ToolBarManager; 75 private Action mOpenFilesAction; 76 private Action mExpandAllAction; 77 private Action mScreenshotAction; 78 private Action mToggleNafAction;
|
/packages/apps/Contacts/src/com/android/contacts/activities/ |
ActionBarAdapter.java | 20 import com.android.contacts.activities.ActionBarAdapter.Listener.Action; 44 * Adapter for the action bar at the top of the Contacts activity. 49 public abstract class Action { 55 void onAction(int action); 100 * Extension of ArrayAdapter to be used for the action bar navigation drop list. It is not 344 * Note even if the action bar is in search mode, if the query is empty, the search fragment 390 // The current flags set to the action bar. (only the ones that we may change here) 416 // Since we have the {@link SearchView} in a custom action bar, we must manually handle 426 mListener.onAction(Action.START_SEARCH_MODE); 453 // Since we have the {@link SearchView} in a custom action bar, we must manually handl [all...] |
/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
|
/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 { 69 * Create an action from common {@link Data} elements. 193 // as a secondary action. 222 // Otherwise fall back to default VIEW action 312 public boolean collapseWith(Action other) { 320 public boolean shouldCollapseWith(Action t) {
|
/cts/tests/tests/drm/src/android/drm/cts/ |
DRMTest.java | 109 DrmStore.Action.DEFAULT); 135 DrmStore.Action.PLAY);
|
/frameworks/testing/uiautomator/utils/uiautomatorviewer/src/com/android/uiautomator/actions/ |
ScreenshotAction.java | 25 import org.eclipse.jface.action.Action; 39 public class ScreenshotAction extends Action {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
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; 555 manager.add(new Action("Add...", factory.getImageDescriptor("add")) { //$NON-NLS-1$ 566 manager.add(new Action("Remove", factory.getImageDescriptor("delete")) { //$NON-NLS-1$ 576 manager.add(new Action("Up", factory.getImageDescriptor("up")) { //$NON-NLS-1 900 DescriptorFilterAction action = ((DescriptorFilter) filter).getAction(); local [all...] |
/external/clang/lib/Driver/ |
Driver.cpp | 12 #include "clang/Driver/Action.h" 739 static unsigned PrintActions1(const Compilation &C, Action *A, 740 std::map<Action*, unsigned> &Ids) { 747 os << Action::getClassName(A->getKind()) << ", "; 756 for (Action::iterator it = A->begin(), ie = A->end(); it != ie;) { 774 std::map<Action*, unsigned> Ids; 782 static bool ContainsCompileOrAssembleAction(const Action *A) { 786 for (Action::const_iterator it = A->begin(), ie = A->end(); it != ie; ++it) 842 // Add in arch bindings for every top level action, as well as lipo and 845 Action *Act = SingleActions[i] [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
TreeWizard.cs | 81 System.Action<object> _action; 83 public ActionVisitor(System.Action<object> action) { 84 _action = action; 303 * of the visitor action method is never set (it's null) since using 311 public void Visit(object t, int ttype, System.Action<object> action) { 312 Visit(t, ttype, new ActionVisitor(action)); 353 * For all subtrees that match the pattern, execute the visit action.
|