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

<<11121314151617181920>>

  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/config/
_apple.h 112 # define _STLP_MPWFIX_CATCH_ACTION(action) }catch(...){action;throw;} //*TY 06/01/2000 - exception handling bug workaround
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
PropertyCallback.java 41 * {@link #action(RuleAction, List, String, Boolean)} method.
42 * @param undoLabel the label to use for the undo action
56 public void action(RuleAction action, List<? extends INode> selectedNodes, method in class:PropertyCallback
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/
PixelPerfectTreeView.java 22 import org.eclipse.jface.action.IMenuManager;
23 import org.eclipse.jface.action.IToolBarManager;
PixelPerfectView.java 24 import org.eclipse.jface.action.IMenuManager;
25 import org.eclipse.jface.action.IToolBarManager;
  /external/chromium/third_party/libjingle/source/talk/session/phone/
channel.h 104 ContentAction action);
106 ContentAction action);
196 ContentAction action)
197 : content(content), action(action), result(false) {}
199 ContentAction action; member in struct:cricket::BaseChannel::SetContentData
207 ContentAction action) = 0;
209 ContentAction action) = 0;
211 bool SetSrtp_w(const std::vector<CryptoParams>& params, ContentAction action,
213 bool SetRtcpMux_w(bool enable, ContentAction action, ContentSource src)
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.cpp 138 bool EditorClientQt::shouldInsertText(const String& string, Range* range, EditorInsertAction action)
148 QString(string).toUtf8().constData(), dumpRange(range).toUtf8().constData(), insertactionstring[action]);
308 bool EditorClientQt::shouldInsertNode(Node* node, Range* range, EditorInsertAction action)
318 dumpRange(range).toUtf8().constData(), insertactionstring[action]);
438 QWebPage::WebAction action = QWebPagePrivate::editorActionForKeyEvent(kevent->qtEvent()); local
439 if (action != QWebPage::NoWebAction && !doSpatialNavigation) {
440 const char* cmd = QWebPagePrivate::editorCommandForWebActions(action);
448 m_page->triggerAction(action);
505 QWebPage::WebAction action = QWebPagePrivate::editorActionForKeyEvent(kevent->qtEvent()); local
506 ASSERT(action != QWebPage::NoWebAction)
538 QWebPage::WebAction action = QWebPagePrivate::editorActionForKeyEvent(kevent->qtEvent()); local
    [all...]
  /frameworks/base/core/java/android/view/
InputEventConsistencyVerifier.java 201 final int action = event.getAction(); local
205 switch (action) {
237 problem("Invalid action " + KeyEvent.actionToString(action)
263 final int action = event.getAction(); local
266 switch (action) {
291 problem("Invalid action " + MotionEvent.actionToString(action)
323 final int action = event.getAction(); local
324 final boolean newStream = action == MotionEvent.ACTION_DOW
467 final int action = event.getAction(); local
    [all...]
DragEvent.java 31 * an action type that indicates the state of the drag and drop operation. This allows a View
33 * For example, a View can react to the {@link #ACTION_DRAG_ENTERED} action type by
38 * is called a drag shadow. Several action types reflect the position of the drag shadow relative
144 * Action constant returned by {@link #getAction()}: Signals the start of a
163 * Action constant returned by {@link #getAction()}: Sent to a View after
184 * Action constant returned by {@link #getAction()}: Signals to a View that the user
195 * The View can also react to this action by changing its appearance.
204 * Action constant returned by {@link #getAction()}: Signals to a View that the drag and drop
222 * Action constant returned by {@link #getAction()}: Signals to a View that the drag point has
240 * Action constant returned by {@link #getAction()}: Signals that the user has moved th
    [all...]
  /external/iproute2/tc/
m_skbedit.c 105 sel.action = TC_ACT_RECLASSIFY;
108 sel.action = TC_ACT_PIPE;
112 sel.action = TC_ACT_SHOT;
115 sel.action = TC_ACT_UNSPEC;
118 sel.action = TC_ACT_OK;
  /frameworks/base/core/java/android/bluetooth/
BluetoothProfileState.java 60 String action = intent.getAction();
65 if (action.equals(BluetoothHeadset.ACTION_CONNECTION_STATE_CHANGED)) {
71 } else if (action.equals(BluetoothA2dp.ACTION_CONNECTION_STATE_CHANGED)) {
77 } else if (action.equals(BluetoothInputDevice.ACTION_CONNECTION_STATE_CHANGED)) {
83 } else if (action.equals(BluetoothDevice.ACTION_ACL_DISCONNECTED)) {
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LaunchpadActivity.java 171 String action = getIntent().getAction(); local
174 if (LIFECYCLE_BASIC.equals(action)) {
177 } else if (LIFECYCLE_SCREEN.equals(action)) {
182 } else if (LIFECYCLE_DIALOG.equals(action)) {
186 } else if (LIFECYCLE_FINISH_CREATE.equals(action)) {
194 } else if (LIFECYCLE_FINISH_START.equals(action)) {
227 String action = getIntent().getAction(); local
231 if (LAUNCH.equals(action)) {
238 } else if (FORWARD_RESULT.equals(action)) {
243 } else if (BAD_PARCELABLE.equals(action)) {
    [all...]
  /packages/apps/Settings/tests/src/com/android/settings/tests/
BluetoothRequestPermissionTest.java 143 String action = intent.getAction();
144 if (BluetoothAdapter.ACTION_STATE_CHANGED.equals(action)) {
161 } else if (action.equals(BluetoothDevice.ACTION_FOUND)) {
164 } else if (action.equals(BluetoothAdapter.ACTION_DISCOVERY_STARTED)) {
166 } else if (action.equals(BluetoothAdapter.ACTION_DISCOVERY_FINISHED)) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
CompatUtils.java 40 final String action; local
46 action = INPUT_METHOD_SUBTYPE_SETTINGS;
47 intent = new Intent(action);
55 action = INPUT_LANGUAGE_SELECTION;
56 intent = new Intent(action);
  /external/webkit/Tools/BuildSlaveSupport/
built-product-archive 31 parser = optparse.OptionParser("usage: %prog [options] [action]")
33 parser.add_option("--debug", action="store_const", const="debug", dest="configuration")
34 parser.add_option("--release", action="store_const", const="release", dest="configuration")
36 options, (action, ) = parser.parse_args()
41 if action not in ('archive', 'extract'):
42 parser.error("Action is required")
44 if action == 'archive':
  /packages/apps/Mms/src/com/android/mms/ui/
SlideshowPresenter.java 166 MediaAction action = audio.getCurrentAction(); local
167 if (action == MediaAction.START) {
169 } else if (action == MediaAction.PAUSE) {
171 } else if (action == MediaAction.STOP) {
173 } else if (action == MediaAction.SEEK) {
238 MediaAction action = video.getCurrentAction(); local
239 if (action == MediaAction.START) {
241 } else if (action == MediaAction.PAUSE) {
243 } else if (action == MediaAction.STOP) {
245 } else if (action == MediaAction.SEEK)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
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...]
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkpage.cpp 63 static WebCore::ContextMenuAction contextMenuActionForWebAction(QWKPage::WebAction action)
65 switch (action) {
337 void QWKPagePrivate::updateAction(QWKPage::WebAction action)
340 Q_UNUSED(action)
342 QAction* a = actions[action];
353 switch (action) {
391 QWKPage::WebAction action = static_cast<QWKPage::WebAction>(a->data().toInt());
392 q->triggerAction(action, checked);
717 QAction* qtAction = action(webAction);
724 QAction* QWKPage::action(WebAction action) cons function in class:QWKPage
    [all...]
  /external/chromium/chrome/browser/password_manager/
password_form_manager.cc 65 // The action URL must also match, but the form is allowed to have an empty
66 // action URL (See bug 1107719).
67 if (form.action.is_valid() && (form.action != observed_form_.action))
71 // password, the origin of the new form may equal the action of the "first"
74 (form.origin == observed_form_.action))) {
169 // that contained no action URL (IE6/7 imported passwords, for example),
170 // bless it with the action URL from the observed form. See bug 1107719.
171 if (pending_credentials_.action.is_empty()
    [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/utils/
FuzzTest 199 action='store_true', dest="verbose", default=False)
201 action="store_true", dest="succinct", default=False)
209 type=int, action="append", dest="extra_exit_codes",
217 action="store_true", dest="log_all", default=False)
223 type=str, action="append", dest="input_files", default=[])
226 type=int, action="append", dest="filelists", default=[])
234 action="append", help="Add a replacement string to use",
238 action="append", default=[])
240 action='store_false', dest="enable_delete", default=True)
242 action='store_false', dest="enable_insert", default=True
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
GlobalActions.java 51 * Helper to show the global actions dialog. Each item is an {@link Action} that
62 private ArrayList<Action> mItems;
268 final Action action = mItems.get(i); local
270 if (mKeyguardShowing && !action.showDuringKeyguard()) {
273 if (!mDeviceProvisioned && !action.showBeforeProvisioning()) {
291 public Action getItem(int position) {
295 final Action action = mItems.get(i); local
296 if (mKeyguardShowing && !action.showDuringKeyguard())
321 Action action = getItem(position); local
    [all...]
  /frameworks/base/services/input/tests/
InputReader_test.cpp     [all...]
  /external/clang/utils/ABITest/
ABITestGen.py 370 action='store_true', default=False)
373 type=int, action='append', default=[])
388 action='store_true', default=False)
394 action="store_false", default=True)
397 action="store_false", default=True)
400 action="store_false", default=True)
403 action="store_false", default=True)
406 action="store_false", default=True)
409 action="store_false", default=True)
414 action="store_false", default=True
    [all...]
  /external/webkit/Source/WebCore/platform/
ContextMenuItem.h 180 action(ContextMenuItemTagNoAction),
186 ContextMenuAction action; member in struct:WebCore::PlatformMenuItemDescription
198 action(ContextMenuItemTagNoAction),
204 ContextMenuAction action; member in struct:WebCore::PlatformMenuItemDescription
216 , action(ContextMenuItemTagNoAction)
220 ContextMenuAction action; member in struct:WebCore::PlatformMenuItemDescription
241 ContextMenuAction action() const;
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebDragClient.cpp 69 //any action
77 void WebDragClient::willPerformDragDestinationAction(DragDestinationAction action, DragData* dragData)
83 delegateRef->willPerformDragDestinationAction(m_webView, (WebDragDestinationAction)action, dragData->platformData());
89 WebDragSourceAction action = WebDragSourceActionAny; local
92 delegateRef->dragSourceActionMaskForPoint(m_webView, &localpt, &action);
93 return (DragSourceAction)action;
96 void WebDragClient::willPerformDragSourceAction(DragSourceAction action, const IntPoint& intPoint, Clipboard* clipboard)
106 HRESULT result = uiDelegate->willPerformDragSourceAction(m_webView, static_cast<WebDragSourceAction>(action), &point, dataObject.get(), &newDataObject);

Completed in 1757 milliseconds

<<11121314151617181920>>