HomeSort by relevance Sort by last modified time
    Searched refs:Action (Results 351 - 375 of 558) sorted by null

<<11121314151617181920>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ThemeMenuAction.java 30 import org.eclipse.jface.action.Action;
31 import org.eclipse.jface.action.ActionContributionItem;
32 import org.eclipse.jface.action.IAction;
33 import org.eclipse.jface.action.MenuManager;
34 import org.eclipse.jface.action.Separator;
48 * Action which creates a submenu displaying available themes
100 SelectThemeAction action = new SelectThemeAction(configChooser, local
104 action.setEnabled(false);
105 manager.add(action);
294 SelectThemeAction action = new SelectThemeAction(mConfigChooser, title, theme, selected); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceXmlTextAction.java 44 import org.eclipse.jface.action.Action;
68 * Text action for XML files to invoke renaming
75 public final class RenameResourceXmlTextAction extends Action {
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/i18n/
messages.properties 96 PreferencePage_HPROF_Action=HPROF Action:
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
StateViewPage.java 35 import org.eclipse.jface.action.Action;
36 import org.eclipse.jface.action.IToolBarManager;
134 manager.add(new Action("Save to File",
GLFunctionTraceViewer.java 39 import org.eclipse.jface.action.Action;
136 * rapidly (i.e., when the spinner or scale is moved to the target frame in a single action).
224 new Action("Copy") {
232 new Action("Select All") {
240 new Action("Find") {
    [all...]
  /external/chromium_org/chrome/browser/extensions/
active_script_controller.cc 133 return NULL; // No action for this extension.
140 linked_ptr<ExtensionAction> action(new ExtensionAction(
142 action->SetTitle(ExtensionAction::kDefaultTabId, extension->name());
143 action->SetIsVisible(ExtensionAction::kDefaultTabId, true);
150 action->set_default_icon(
154 active_script_actions_[extension->id()] = action;
155 return action.get();
158 LocationBarController::Action ActiveScriptController::OnClicked(
218 // Inform the location bar that the action is now gone.
  /external/chromium_org/chrome/browser/extensions/api/downloads/
downloads_api.h 205 DownloadDangerPrompt::Action action);
  /external/chromium_org/chromeos/dbus/
power_policy_controller.cc 41 // corresponding to |action|.
43 PowerPolicyController::Action action) {
44 switch (action) {
54 NOTREACHED() << "Unhandled action " << action;
  /external/chromium_org/content/renderer/media/
rtc_peer_connection_handler.cc 151 PeerConnectionTracker::Action action)
152 : handler_(handler), action_(action) {}
173 PeerConnectionTracker::Action action_;
184 PeerConnectionTracker::Action action)
185 : webkit_request_(request), tracker_(handler, action) {}
213 PeerConnectionTracker::Action action)
214 : webkit_request_(request), tracker_(handler, action) {}
    [all...]
  /external/chromium_org/tools/cr/cr/base/
context.py 51 class _ShowHelp(argparse.Action):
52 """An argparse action to print the help text.
54 This is like the built in help text printing action, except it knows to do
159 action=_ShowHelp, nargs=0,
164 action='store_true', default=None,
172 action='count', default=None,
  /external/chromium_org/tools/perf/page_sets/
presubmit_unittest.py 19 def __init__(self, absolute_local_path, action):
21 self.action = action
26 def Action(self):
27 return self.action
  /external/chromium_org/ui/events/gesture_detection/
velocity_tracker_unittest.cc 49 static MockMotionEvent Sample(MotionEvent::Action action,
55 return MockMotionEvent(action, t0 + dt, p.x(), p.y());
  /external/clang/include/clang/Driver/
ToolChain.h 13 #include "clang/Driver/Action.h"
87 virtual Tool *getTool(Action::ActionClass AC) const;
153 /// Choose a tool to use to handle the action \p JA.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
raseapif.h 121 PPP_EAP_ACTION Action;
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsession.cc 723 Action action = GetAction(desc->type()); local
724 if (state() == STATE_INIT && action == kOffer) {
740 if (action == kOffer && !CreateChannels(local_desc_->description())) {
750 if (!UpdateSessionState(action, cricket::CS_LOCAL, err_desc)) {
781 Action action = GetAction(desc->type()); local
782 if (action == kOffer && !CreateChannels(desc->description())) {
795 if (!UpdateSessionState(action, cricket::CS_REMOTE, err_desc)) {
828 Action action, cricket::ContentSource source
1621 Action action = GetAction(sdesc->type()); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
argparse.py 43 - Action -- The base class for parser actions. Typically actions are
45 the action= argument of add_argument(). However, for greater
46 customization of ArgumentParser actions, subclasses of Action may
47 be defined and passed as the action= argument.
75 'Action',
253 def add_argument(self, action):
254 if action.help is not SUPPRESS:
258 invocations = [get_invocation(action)]
259 for subaction in self._iter_indented_subactions(action):
269 self._add_item(self._format_action, [action])
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
argparse.py 43 - Action -- The base class for parser actions. Typically actions are
45 the action= argument of add_argument(). However, for greater
46 customization of ArgumentParser actions, subclasses of Action may
47 be defined and passed as the action= argument.
75 'Action',
253 def add_argument(self, action):
254 if action.help is not SUPPRESS:
258 invocations = [get_invocation(action)]
259 for subaction in self._iter_indented_subactions(action):
269 self._add_item(self._format_action, [action])
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
performanceui.jar 
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
session.cc 281 ContentAction action,
284 if (action == CA_ANSWER) {
288 action,
297 ContentAction action,
300 if (action == CA_ANSWER) {
304 action,
435 ContentAction action,
439 action,
443 action,
449 ContentAction action,
838 ContentAction action; local
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 729 default: llvm_unreachable("This action is not supported yet!");
    [all...]
  /external/chromium_org/cc/scheduler/
scheduler.cc 617 // The top-level call will iteratively execute the next action for us anyway.
623 SchedulerStateMachine::Action action; local
625 action = state_machine_.NextAction();
630 state_machine_.UpdateState(action);
631 base::AutoReset<SchedulerStateMachine::Action>
632 mark_inside_action(&inside_action_, action);
633 switch (action) {
658 // No action is actually performed, but this allows the state machine to
668 } while (action != SchedulerStateMachine::ACTION_NONE)
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/walkers/
abstract_shifter.js 140 * @param {string} name Action name.
141 * @return {boolean} True if this shifter contains action.
149 * Delegates an action to the current walker.
150 * @param {string} name The action name.
152 * @return {cvox.CursorSelection} The selection after the action.
  /external/chromium_org/third_party/webrtc/video/
call_perf_tests.cc 102 virtual Action OnSendRtcp(const uint8_t* packet, size_t length) OVERRIDE {
415 virtual Action OnSendRtp(const uint8_t* packet, size_t length) {
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/image_editor/
image_buffer.js 100 * Searches for an action for the double tap enumerating
104 * @return {ImageBuffer.DoubleTapAction} Action to perform as result.
108 var action = this.overlays_[i].getDoubleTapAction(x, y);
109 if (action != ImageBuffer.DoubleTapAction.NOTHING)
110 return action;

Completed in 1374 milliseconds

<<11121314151617181920>>