/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/action/ |
BackgroundAction.java | 17 package com.android.hierarchyviewer.ui.action;
|
/sdk/traceview/src/com/android/traceview/ |
Selection.java | 21 private Action mAction; 25 public Selection(Action action, String name, Object value) { 26 mAction = action; 32 return new Selection(Action.Highlight, name, value); 36 return new Selection(Action.Include, name, value); 40 return new Selection(Action.Exclude, name, value); 59 public void setAction(Action action) { 60 mAction = action; [all...] |
/development/tools/axl/ |
chewie.py | 92 thread, action = x[1], x[2] 93 if action == "Q": 96 elif action == "O": 101 elif action == "S": 107 elif action == "T": 111 elif action == "R": 117 elif action == 'U': 124 elif action == "D": 132 elif action == "B": 134 elif action == "HR" [all...] |
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
ResolveCache.java | 95 * Get the {@link Entry} best associated with the given {@link Action}, 98 protected Entry getEntry(Action action) { 99 final String mimeType = action.getMimeType(); 104 Intent intent = action.getIntent(); 174 * given {@link Action}. 176 public boolean hasResolve(Action action) { 177 return getEntry(action).bestResolve != null; 181 * Find the best description for the given {@link Action}, usually use [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
VisualRefactoringAction.java | 27 import org.eclipse.jface.action.Action; 28 import org.eclipse.jface.action.IAction; 56 * Examine the selection to determine if the action should be enabled or not. 60 public void selectionChanged(IAction action, ISelection selection) { 67 // At that point, just enable the action and later decide if it's valid when it actually 94 action.setEnabled((mTextSelection != null || mTreeSelection != null) 101 public abstract void run(IAction action); 139 private static class ActionWrapper extends Action { 152 VisualRefactoringAction action; local [all...] |
/development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/ |
WiFiDirectBroadcastReceiver.java | 58 String action = intent.getAction(); local 59 if (WifiP2pManager.WIFI_P2P_STATE_CHANGED_ACTION.equals(action)) { 72 } else if (WifiP2pManager.WIFI_P2P_PEERS_CHANGED_ACTION.equals(action)) { 82 } else if (WifiP2pManager.WIFI_P2P_CONNECTION_CHANGED_ACTION.equals(action)) { 103 } else if (WifiP2pManager.WIFI_P2P_THIS_DEVICE_CHANGED_ACTION.equals(action)) {
|
/external/blktrace/btt/ |
trace.c | 37 switch (iop->t.action & 0xffff) { 76 if (iop->t.action & BLK_TC_ACT(BLK_TC_NOTIFY)) { 77 if (iop->t.action == BLK_TN_PROCESS) { 87 } else if (iop->t.action == BLK_TN_MESSAGE) 90 } else if (iop->t.action & BLK_TC_ACT(BLK_TC_PC)) {
|
/external/bluetooth/bluez/cups/ |
spp.c | 88 memset(&action, 0, sizeof(action)); 89 sigemptyset(&action.sa_mask); 90 action.sa_handler = SIG_IGN; 91 sigaction(SIGTERM, &action, NULL);
|
/external/chromium/net/base/ |
listen_socket_unittest.h | 51 explicit ListenSocketTestAction(ActionType action) : action_(action) {} 52 ListenSocketTestAction(ActionType action, std::string data) 53 : action_(action), 77 void ReportAction(const ListenSocketTestAction& action);
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
ContactsIntentResolver.java | 58 String action = intent.getAction(); local 60 Log.i(TAG, "Called with action: " + action); 62 if (UI.LIST_DEFAULT.equals(action) ) { 64 } else if (UI.LIST_ALL_CONTACTS_ACTION.equals(action)) { 66 } else if (UI.LIST_CONTACTS_WITH_PHONES_ACTION.equals(action)) { 68 } else if (UI.LIST_STARRED_ACTION.equals(action)) { 70 } else if (UI.LIST_FREQUENT_ACTION.equals(action)) { 72 } else if (UI.LIST_STREQUENT_ACTION.equals(action)) { 74 } else if (UI.LIST_GROUP_ACTION.equals(action)) { [all...] |
/external/icu4c/test/intltest/ |
restsnew.cpp | 36 #define CONFIRM_EQ(actual,expected) if ((expected)==(actual)) { record_pass(); } else { record_fail(); errln(action + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of " + (expected)); } 37 #define CONFIRM_GE(actual,expected) if ((actual)>=(expected)) { record_pass(); } else { record_fail(); errln(action + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of x >= " + (expected)); } 38 #define CONFIRM_NE(actual,expected) if ((expected)!=(actual)) { record_pass(); } else { record_fail(); errln(action + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of x != " + (expected)); } 40 #define CONFIRM_UErrorCode(actual,expected) if ((expected)==(actual)) { record_pass(); } else { record_fail(); errln(action + (UnicodeString)" returned " + (UnicodeString)u_errorName(actual) + (UnicodeString)" instead of " + (UnicodeString)u_errorName(expected)); } 330 UnicodeString action; local 334 action = "te_IN"; 335 action +=".get("; 336 action += data[i]; 337 action +=", err)"; 341 action = "te_IN" 541 UnicodeString action; local 634 UnicodeString action; local 1009 char action[256]; local [all...] |
/external/chromium/net/tools/flip_server/ |
loadtime_measurement.h | 40 // remove "/testing/" from uri to get the action 41 std::string action = uri.substr(9); local 42 if (pageload_html_file_.find(action) != std::string::npos) { 46 if (action.find("get_total_iteration") == 0) { 52 if (action.find("geturl") == 0) { 53 size_t b = action.find_first_of('='); 55 int num = atoi(action.substr(b + 1).c_str()); 62 if (action.find("test_complete") == 0) { 71 if (action.find("record_page_load") == 0) { 73 split_string(action, '?', &query) [all...] |
/external/webkit/Source/WebKit2/Shared/ |
WebContextMenuItemData.cpp | 47 WebContextMenuItemData::WebContextMenuItemData(WebCore::ContextMenuItemType type, WebCore::ContextMenuAction action, const String& title, bool enabled, bool checked) 49 , m_action(action) 57 WebContextMenuItemData::WebContextMenuItemData(WebCore::ContextMenuAction action, const String& title, bool enabled, const Vector<WebContextMenuItemData>& submenu) 59 , m_action(action) 69 , m_action(item.action()) 112 uint32_t action; local 118 if (!decoder->decode(CoreIPC::Out(type, action, title, checked, enabled, submenu))) 125 item = WebContextMenuItemData(static_cast<WebCore::ContextMenuItemType>(type), static_cast<WebCore::ContextMenuAction>(action), title, enabled, checked); 128 item = WebContextMenuItemData(static_cast<WebCore::ContextMenuAction>(action), title, enabled, submenu);
|
/external/webkit/Source/WebKit/efl/ewk/ |
ewk_contextmenu.cpp | 54 Ewk_Context_Menu_Action action; /**< contains the action of the item */ member in struct:_Ewk_Context_Menu_Item 132 * @param action specifies a action of the item 142 Ewk_Context_Menu_Action action, Ewk_Context_Menu* submenu, 150 item->action = action; 171 WebCore::ContextMenuAction action = static_cast<WebCore::ContextMenuAction>(item->action); local 175 WebCore::ContextMenuItem core(type, action, WTF::String()) 403 Ewk_Context_Menu_Action action = static_cast<Ewk_Context_Menu_Action>(core.action()); local [all...] |
/external/chromium/chrome/browser/hang_monitor/ |
hung_plugin_action.cc | 24 ActionOnHungWindow* action) { 25 if (NULL == action) { 39 *action = HungWindowNotification::HUNG_WINDOW_IGNORE; 43 *action = HungWindowNotification::HUNG_WINDOW_TERMINATE_PROCESS; 66 *action = HungWindowNotification::HUNG_WINDOW_TERMINATE_PROCESS; 91 if (HungWindowNotification::HUNG_WINDOW_TERMINATE_PROCESS == *action) {
|
/external/quake/quake/src/WinQuake/ |
masterMain.cpp | 28 int AndroidMotionEvent(unsigned long long eventTime, int action, 30 int AndroidTrackballEvent(unsigned long long eventTime, int action, 47 qmotionevent(JNIEnv *env, jobject thiz, jlong eventTime, jint action, 50 action, x, y, pressure, size, 55 qtrackballevent(JNIEnv *env, jobject thiz, jlong eventTime, jint action, 58 action, x, y) ? JNI_TRUE : JNI_FALSE;
|
/external/webkit/Examples/NetscapeCocoaPlugin/ |
MenuHandler.m | 50 SEL sel = [anItem action]; 73 NSMenuItem *item = [[NSMenuItem alloc] initWithTitle:@"Open URL" action:@selector(_openURL:) keyEquivalent:@""]; 78 item = [[NSMenuItem alloc] initWithTitle:@"Disabled Item" action:@selector(_disabledItem:) keyEquivalent:@""];
|
/external/webkit/Source/WebCore/page/ |
DOMTimer.cpp | 65 DOMTimer::DOMTimer(ScriptExecutionContext* context, PassOwnPtr<ScheduledAction> action, int interval, bool singleShot) 69 , m_action(action) 88 int DOMTimer::install(ScriptExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot) 93 DOMTimer* timer = new DOMTimer(context, action, timeout, singleShot); 142 // Delete timer before executing the action for one-shot timers. 143 OwnPtr<ScheduledAction> action = m_action.release(); local 148 action->execute(context);
|
/external/webkit/Source/WebKit/chromium/src/ |
WebPasswordFormData.cpp | 121 // query and ref portions of URL, for the form action and form origin. 122 result->action = stripURL(fullAction); 164 // Calculate the canonical action URL 165 String action = form->action(); local 166 if (action.isNull()) 167 action = ""; // missing 'action' attribute implies current URL 168 KURL fullAction = frame->loader()->completeURL(action);
|
/external/webkit/Source/WebKit2/UIProcess/qt/ |
WebContextMenuProxyQt.cpp | 40 static QWKPage::WebAction webActionForContextMenuAction(WebCore::ContextMenuAction action) 42 switch (action) { 111 QWKPage::WebAction action = webActionForContextMenuAction(item.action()); local 112 QAction* qtAction = m_page->action(action);
|
/frameworks/base/core/java/com/android/internal/app/ |
ExternalMediaFormatActivity.java | 42 String action = intent.getAction(); 43 Log.d("ExternalMediaFormatActivity", "got action " + action); 45 if (action == Intent.ACTION_MEDIA_REMOVED || 46 action == Intent.ACTION_MEDIA_CHECKING || 47 action == Intent.ACTION_MEDIA_MOUNTED || 48 action == Intent.ACTION_MEDIA_SHARED) {
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
CellBroadcastDatabaseService.java | 32 /** Action to insert a new message (passed as CellBroadcastMessage extra). */ 35 /** Action to delete a single broadcast (row ID passed as extra). */ 38 /** Action to mark a broadcast as read by the user (by row ID or delivery time extra). */ 41 /** Action to delete all broadcasts from database (no extras). */ 89 String action = intent.getAction(); local 91 if (ACTION_INSERT_NEW_BROADCAST.equals(action)) { 106 } else if (ACTION_DELETE_BROADCAST.equals(action)) { 119 } else if (ACTION_DELETE_ALL_BROADCASTS.equals(action)) { 122 } else if (ACTION_MARK_BROADCAST_READ.equals(action)) { 145 Log.e(TAG, "ignoring unexpected Intent with action " + action) [all...] |
/packages/apps/Contacts/src/com/android/contacts/ |
ContactsLiveFolders.java | 37 final String action = intent.getAction(); local 39 if (LiveFolders.ACTION_CREATE_LIVE_FOLDER.equals(action)) { 60 final String action = intent.getAction(); local 62 if (LiveFolders.ACTION_CREATE_LIVE_FOLDER.equals(action)) { 83 final String action = intent.getAction(); local 85 if (LiveFolders.ACTION_CREATE_LIVE_FOLDER.equals(action)) {
|
/external/llvm/utils/Misc/ |
zkill | 146 action="store", default='INT', 150 action="store_true", default=False) 154 action="store_true", default=False) 157 action="store_true", default=False) 160 action="store_true", default=False) 163 action="store_true", default=False) 169 action="store", default=None) 172 action="store", default=None) 175 action="store", default=None) 178 action="store", type=float, default=None [all...] |
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
DownloadReceiver.java | 50 String action = intent.getAction(); local 51 if (action.equals(Intent.ACTION_BOOT_COMPLETED)) { 57 } else if (action.equals(Intent.ACTION_MEDIA_MOUNTED)) { 63 } else if (action.equals(ConnectivityManager.CONNECTIVITY_ACTION)) { 69 } else if (action.equals(Constants.ACTION_RETRY)) { 71 } else if (action.equals(Constants.ACTION_OPEN) 72 || action.equals(Constants.ACTION_LIST) 73 || action.equals(Constants.ACTION_HIDE)) { 83 String action = intent.getAction(); local 85 if (action.equals(Constants.ACTION_OPEN)) [all...] |