HomeSort by relevance Sort by last modified time
    Searched refs:action (Results 226 - 250 of 1442) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
AccessibilityUtils.java 108 final int action = event.getAction(); local
110 return action == MotionEventCompatUtils.ACTION_HOVER_ENTER
111 || action == MotionEventCompatUtils.ACTION_HOVER_EXIT
112 || action == MotionEventCompatUtils.ACTION_HOVER_MOVE;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
FixProjectAction.java 30 import org.eclipse.jface.action.IAction;
41 * Action to fix the project properties:
54 public void setActivePart(IAction action, IWorkbenchPart targetPart) {
57 public void run(IAction action) {
77 public void selectionChanged(IAction action, ISelection selection) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringAction.java 26 import org.eclipse.jface.action.IAction;
47 * Action executed when the "Extract String" menu item is invoked.
49 * The intent of the action is to start a refactoring that extracts a source string and
54 * <li> The action is currently located in the Refactoring menu in the main menu.
56 * <li> The action is only enabled if the selection is 1 character or more. That is at least part
60 * <ul> The action gets the current {@link ISelection}. It also knows the current
68 * <li> The action creates a new {@link ExtractStringRefactoring} and make it run on in a new
92 * Examine the selection to determine if the action should be enabled or not.
96 public void selectionChanged(IAction action, ISelection selection) {
102 // At that point, just enable the action and later decide if it's valid when it actuall
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
CommonAction.java 20 import org.eclipse.jface.action.Action;
24 * Basic action extending the jFace Action class in order to implement
27 public class CommonAction extends Action implements ICommonAction {
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/action/
CaptureLayersAction.java 17 package com.android.hierarchyviewer.ui.action;
CaptureNodeAction.java 17 package com.android.hierarchyviewer.ui.action;
DumpDisplayListAction.java 16 package com.android.hierarchyviewer.ui.action;
InvalidateAction.java 17 package com.android.hierarchyviewer.ui.action;
RefreshWindowsAction.java 17 package com.android.hierarchyviewer.ui.action;
RequestLayoutAction.java 17 package com.android.hierarchyviewer.ui.action;
StartServerAction.java 17 package com.android.hierarchyviewer.ui.action;
StopServerAction.java 17 package com.android.hierarchyviewer.ui.action;
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/actions/
TreeViewEnabledAction.java 22 import org.eclipse.jface.action.Action;
25 public class TreeViewEnabledAction extends Action implements ITreeChangeListener {
  /system/vold/
Process.h 22 static void killProcessesWithOpenFiles(const char *path, int action);
  /external/icu4c/test/intltest/
restest.cpp 317 UnicodeString action; local
333 action = "Constructor for ";
334 action += param[i].name;
339 CONFIRM_UErrorCode(status, param[i].expected_constructor_status, action);
385 action = param[i].name;
386 action += ".getString(";
387 action += tag;
388 action += ")";
399 CONFIRM_UErrorCode(status, expected_resource_status, action);
406 CONFIRM_EQ(string, expected_string, action);
    [all...]
  /external/bison/src/
reader.c 220 | action) that was assigned to, as in "exp: { $$ = 1; } { $$ = $1; }". |
232 | should be no type clash on the default action. |
240 If there is an action, then there is nothing we can do: the user
243 Don't worry about the default action if $$ is untyped, since $$'s
245 if (!r->action && r->sym->type_name)
256 _("type clash on default action: <%s> != <%s>"),
262 _("empty rule for typed nonterminal, and no action"));
272 /* The default action, $$ = $1, `uses' both. */
273 || (!r->action && (n == 0 || n == 1))))
299 | The previous action turns out the be a mid-rule action. Attach it
    [all...]
  /cts/tests/src/android/widget/cts/
ViewGroupStubActivity.java 47 String action = getIntent().getAction(); local
48 if (action.equals(ACTION_INVALIDATE_CHILD)) {
  /cts/tests/tests/permission/src/android/permission/cts/
NoBroadcastPackageRemovedPermissionTest.java 98 private Intent createIntent(String action) {
100 intent.setAction(action);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LauncherShortcuts.java 44 * media item, or action.
63 final String action = intent.getAction(); local
67 if (Intent.ACTION_CREATE_SHORTCUT.equals(action)) {
116 * triggers the desired action within your Activity.
121 // data Uri in order to display a more specific result, or a custom action in order to
  /development/samples/ApiDemos/src/com/example/android/apis/view/
DragAndDropDemo.java 50 final int action = event.getAction();
51 switch (action) {
  /development/samples/NotePad/src/com/example/android/notepad/
NotesLiveFolder.java 48 * Gets the incoming Intent and its action. If the incoming Intent was
53 final String action = intent.getAction(); local
55 if (LiveFolders.ACTION_CREATE_LIVE_FOLDER.equals(action)) {
84 * Adds a base action for items in the live folder list, as an Intent. When the
87 * Its action is ACTION_EDIT, so it triggers the Note Editor activity. Its
105 // If the original action was not ACTION_CREATE_LIVE_FOLDER, creates an
  /external/chromium/chrome/browser/extensions/
extension_page_actions_module.cc 30 "This extension has no page action specified.";
32 const char kIconIndexOutOfBounds[] = "Page action icon index out of bounds.";
33 const char kNoIconSpecified[] = "Page action has no icons to show.";
40 DictionaryValue* action; local
41 EXTENSION_FUNCTION_VALIDATE(args_->GetDictionary(1, &action));
44 EXTENSION_FUNCTION_VALIDATE(action->GetInteger(keys::kTabIdKey, &tab_id));
46 EXTENSION_FUNCTION_VALIDATE(action->GetString(keys::kUrlKey, &url));
52 if (action->HasKey(keys::kTitleKey))
53 EXTENSION_FUNCTION_VALIDATE(action->GetString(keys::kTitleKey, &title));
54 if (action->HasKey(keys::kIconIdKey))
    [all...]
  /external/chromium/chrome/browser/password_manager/
password_store_change.h 33 form().action == other.form().action &&
  /external/chromium/webkit/glue/
password_form_dom_manager.cc 42 result->basic_data.action = form_on_page.action;
  /external/quake/src/com/android/quake/
QuakeLib.java 151 * @param action the kind of action being performed -- one of either
161 public native boolean motionEvent(long eventTime, int action,
167 * @param action the kind of action being performed -- one of either
174 public native boolean trackballEvent(long eventTime, int action,

Completed in 618 milliseconds

1 2 3 4 5 6 7 8 91011>>