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

<<11121314151617181920>>

  /external/stlport/stlport/stl/config/
_apple.h 112 # define _STLP_MPWFIX_CATCH_ACTION(action) }catch(...){action;throw;} //*TY 06/01/2000 - exception handling bug workaround
  /external/webkit/Source/WebCore/editing/
ApplyStyleCommand.h 51 static PassRefPtr<ApplyStyleCommand> create(Document* document, const EditingStyle* style, EditAction action = EditActionChangeAttributes, EPropertyLevel level = PropertyDefault)
53 return adoptRef(new ApplyStyleCommand(document, style, action, level));
55 static PassRefPtr<ApplyStyleCommand> create(Document* document, const EditingStyle* style, const Position& start, const Position& end, EditAction action = EditActionChangeAttributes, EPropertyLevel level = PropertyDefault)
57 return adoptRef(new ApplyStyleCommand(document, style, start, end, action, level));
59 static PassRefPtr<ApplyStyleCommand> create(PassRefPtr<Element> element, bool removeOnly = false, EditAction action = EditActionChangeAttributes)
61 return adoptRef(new ApplyStyleCommand(element, removeOnly, action));
63 static PassRefPtr<ApplyStyleCommand> create(Document* document, const EditingStyle* style, IsInlineElementToRemoveFunction isInlineElementToRemoveFunction, EditAction action = EditActionChangeAttributes)
65 return adoptRef(new ApplyStyleCommand(document, style, isInlineElementToRemoveFunction, action));
ReplaceSelectionCommand.h 49 static PassRefPtr<ReplaceSelectionCommand> create(Document* document, PassRefPtr<DocumentFragment> fragment, CommandOptions options, EditAction action = EditActionPaste)
51 return adoptRef(new ReplaceSelectionCommand(document, fragment, options, action));
  /external/webkit/Source/WebCore/html/
HTMLFormElement.idl 33 attribute [Reflect, URL] DOMString action;
  /external/webkit/Source/WebCore/page/
FrameActionScheduler.cpp 100 void FrameActionScheduler::scheduleAction(PassOwnPtr<FrameAction> action)
102 m_scheduledActions.append(action);
  /external/webkit/Source/WebKit/chromium/src/
WebFormElement.cpp 54 WebString WebFormElement::action() const function in class:WebKit::WebFormElement
56 return constUnwrap<HTMLFormElement>()->action();
WebSearchableFormData.cpp 72 String action(form->action());
73 return form->document()->frame()->loader()->completeURL(action.isNull() ? "" : action).protocol() == "http";
233 // Only consider forms that GET data and the action targets an http page.
254 String action(formElement->action());
255 KURL url(frame->loader()->completeURL(action.isNull() ? "" : action));
  /external/webkit/Source/WebKit/mac/WebView/
WebEditingDelegate.h 44 - (BOOL)webView:(WebView *)webView shouldInsertNode:(DOMNode *)node replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action;
45 - (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action;
  /external/webkit/Tools/BuildSlaveSupport/
test-result-archive 32 parser = optparse.OptionParser("usage: %prog [options] [action]")
34 parser.add_option("--debug", action="store_const", const="debug", dest="configuration")
35 parser.add_option("--release", action="store_const", const="release", dest="configuration")
37 options, (action, ) = parser.parse_args()
42 if action not in ('archive'):
43 parser.error("Action is required")
  /external/webkit/Tools/Scripts/
new-run-webkit-httpd 79 help='Server action (start|stop)')
84 option_parser.add_option('--register_cygwin', action="store_true",
86 option_parser.add_option('--run_background', action="store_true",
new-run-webkit-websocketserver 45 help='Server action (start|stop).')
52 action='store_true',
58 option_parser.add_option('--chromium', action='store_true',
62 option_parser.add_option('--register_cygwin', action="store_true",
68 option_parser.add_option('-v', '--verbose', action='store_true',
  /frameworks/base/core/java/android/accessibilityservice/
IAccessibilityServiceConnection.aidl 96 * Performs an accessibility action on an {@link AccessibilityNodeInfo}.
100 * @param action The action to perform.
104 * @return Whether the action was performed.
107 int action, int interactionId, IAccessibilityInteractionConnectionCallback callback,
  /frameworks/base/core/java/android/view/accessibility/
IAccessibilityInteractionConnection.aidl 42 void performAccessibilityAction(int accessibilityId, int action, int interactionId,
  /frameworks/base/drm/drmserver/
DrmManagerService.cpp 110 int uniqueId, const String8* path, const int action) {
112 return mDrmManager->getConstraints(uniqueId, path, action);
154 int uniqueId, const String8& path, int action) {
156 return mDrmManager->checkRightsStatus(uniqueId, path, action);
160 int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) {
162 return mDrmManager->consumeRights(uniqueId, decryptHandle, action, reserve);
173 int action, const ActionDescription& description) {
175 return mDrmManager->validateAction(uniqueId, path, action, description);
  /frameworks/base/drm/java/android/drm/
DrmStore.java 131 public static class Action {
133 * The default action.
165 /* package */ static boolean isValid(int action) {
168 switch (action) {
  /frameworks/base/drm/libdrmframework/
DrmManagerClient.cpp 42 DrmConstraints* DrmManagerClient::getConstraints(const String8* path, const int action) {
43 return mDrmManagerClientImpl->getConstraints(mUniqueId, path, action);
75 int DrmManagerClient::checkRightsStatus(const String8& path, int action) {
76 return mDrmManagerClientImpl->checkRightsStatus(mUniqueId, path, action);
80 sp<DecryptHandle> &decryptHandle, int action, bool reserve) {
81 return mDrmManagerClientImpl->consumeRights(mUniqueId, decryptHandle, action, reserve);
91 const String8& path, int action, const ActionDescription& description) {
92 return mDrmManagerClientImpl->validateAction(mUniqueId, path, action, description);
  /frameworks/base/drm/libdrmframework/include/
IDrmManagerService.h 98 int uniqueId, const String8* path, const int action) = 0;
116 virtual int checkRightsStatus(int uniqueId, const String8& path, int action) = 0;
119 int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) = 0;
126 int action, const ActionDescription& description) = 0;
183 virtual DrmConstraints* getConstraints(int uniqueId, const String8* path, const int action);
200 virtual int checkRightsStatus(int uniqueId, const String8& path, int action);
203 int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve);
209 int uniqueId, const String8& path, int action, const ActionDescription& description);
  /frameworks/base/drm/libdrmframework/plugins/common/include/
DrmEngineBase.h 37 DrmConstraints* getConstraints(int uniqueId, const String8* path, int action);
60 int checkRightsStatus(int uniqueId, const String8& path, int action);
62 status_t consumeRights(int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve);
68 int uniqueId, const String8& path, int action, const ActionDescription& description);
111 * @param[in] action Actions defined such as,
112 * Action::DEFAULT, Action::PLAY, etc
119 int uniqueId, const String8* path, int action) = 0;
244 * @param[in] action Action to perform (Action::DEFAULT, Action::PLAY, etc
    [all...]
  /frameworks/support/v4/java/android/support/v4/content/
LocalBroadcastManager.java 143 String action = filter.getAction(i); local
144 ArrayList<ReceiverRecord> entries = mActions.get(action);
147 mActions.put(action, entries);
172 String action = filter.getAction(j); local
173 ArrayList<ReceiverRecord> receivers = mActions.get(action);
182 mActions.remove(action);
202 final String action = intent.getAction(); local
217 if (debug) Log.v(TAG, "Action list: " + entries);
231 int match = receiver.filter.match(action, type, scheme, data,
245 case IntentFilter.NO_MATCH_ACTION: reason = "action"; break
    [all...]
  /ndk/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
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppLiveFolder.java 55 final String action = intent.getAction(); local
57 if (LiveFolders.ACTION_CREATE_LIVE_FOLDER.equals(action)) {
  /packages/apps/Camera/src/com/android/camera/
MenuHelper.java 51 String message, final Runnable action) {
56 if (action != null) action.run();
120 String action, className; local
123 action = PANORAMA_CLASS;
127 action = MediaStore.INTENT_ACTION_VIDEO_CAMERA;
131 action = MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA;
138 startCameraActivity(activity, new Intent(action), className);
  /packages/apps/Exchange/src/com/android/exchange/service/
ExchangeBroadcastProcessorService.java 40 // Action used for BroadcastReceiver entry point
63 final String action = intent.getAction(); local
64 if (ACTION_BROADCAST.equals(action)) {
  /packages/apps/Music/src/com/android/music/
IMediaPlaybackService.aidl 41 void enqueue(in long [] list, int action);
  /prebuilt/ndk/android-ndk-r5/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

Completed in 717 milliseconds

<<11121314151617181920>>