HomeSort by relevance Sort by last modified time
    Searched refs:Action (Results 201 - 225 of 354) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayer.cpp 53 struct NuPlayer::Action : public RefBase {
54 Action() {}
59 DISALLOW_EVIL_CONSTRUCTORS(Action);
62 struct NuPlayer::SeekAction : public Action {
77 struct NuPlayer::SetSurfaceAction : public Action {
92 struct NuPlayer::ShutdownDecoderAction : public Action {
109 struct NuPlayer::PostMessageAction : public Action {
125 // the action.
126 struct NuPlayer::SimpleAction : public Action {
1233 sp<Action> action = *mDeferredActions.begin(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeWizard.cs 81 System.Action<object> _action;
83 public ActionVisitor(System.Action<object> action) {
84 _action = action;
303 * of the visitor action method is never set (it's null) since using
311 public void Visit(object t, int ttype, System.Action<object> action) {
312 Visit(t, ttype, new ActionVisitor(action));
353 * For all subtrees that match the pattern, execute the visit action.
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeWizard.cs 87 System.Action<object> _action;
89 public ActionVisitor( System.Action<object> action )
91 _action = action;
347 * of the visitor action method is never set (it's null) since using
356 public void Visit( object t, int ttype, System.Action<object> action )
358 Visit( t, ttype, new ActionVisitor( action ) );
407 * For all subtrees that match the pattern, execute the visit action.
  /external/chromium/testing/gmock/include/gmock/
gmock-generated-actions.h 585 // Implements the WithArgs action.
591 explicit WithArgsAction(const InnerAction& action) : action_(action) {}
594 operator Action<F>() const { return MakeAction(new Impl<F>(action_)); }
603 explicit Impl(const InnerAction& action) : action_(action) {}
614 Action<InnerFunctionType> action_;
622 // A macro from the ACTION* family (defined later in this file)
623 // defines an action that can be used in a mock function. Typically,
625 // function. For example, if such an action only uses the secon
    [all...]
  /external/chromium_org/cc/scheduler/
scheduler.cc 220 // The top-level call will iteratively execute the next action for us anyway.
226 SchedulerStateMachine::Action action = state_machine_.NextAction(); local
227 while (action != SchedulerStateMachine::ACTION_NONE) {
228 state_machine_.UpdateState(action);
229 switch (action) {
257 action = state_machine_.NextAction();
scheduler_state_machine.cc 198 SchedulerStateMachine::Action SchedulerStateMachine::NextAction() const {
286 void SchedulerStateMachine::UpdateState(Action action) {
287 switch (action) {
scheduler_unittest.cc 15 #define EXPECT_ACTION(action, client, action_index, expected_num_actions) \
19 EXPECT_STREQ(action, client.Action(action_index)); \
21 ADD_FAILURE() << "Unexpected action: " << client.Action(i) << \
25 #define EXPECT_SINGLE_ACTION(action, client) \
26 EXPECT_ACTION(action, client, 0, 1)
54 const char* Action(int i) const { return actions_[i]; }
57 bool HasAction(const char* action) const {
59 if (!strcmp(actions_[i], action))
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/search/
webstore_result.cc 95 actions.push_back(Action(
  /external/chromium_org/sync/internal_api/public/
change_record_unittest.cc 27 void ExpectChangeRecordActionValue(ChangeRecord::Action expected_value,
51 ExpectChangeRecordActionValue(record.action, value, "action");
53 if (record.action == ChangeRecord::ACTION_DELETE) {
87 record.action = ChangeRecord::ACTION_ADD;
98 record.action = ChangeRecord::ACTION_UPDATE;
109 record.action = ChangeRecord::ACTION_DELETE;
119 record.action = ChangeRecord::ACTION_DELETE;
  /external/clang/include/clang/Driver/
ToolChain.h 13 #include "clang/Driver/Action.h"
81 virtual Tool *getTool(Action::ActionClass AC) const;
140 /// Choose a tool to use to handle the action \p JA.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
BuildsView.java 23 import org.eclipse.jface.action.Action;
24 import org.eclipse.jface.action.IMenuManager;
25 import org.eclipse.jface.action.Separator;
63 * Action to generate results.
65 final class GenerateAction extends Action {
185 * Action to update local data files with the performance results of a build.
190 class UpdateBuildAction extends Action {
241 * Action to update local data files with the performance results of all builds.
285 Action generate
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/email_this_page/
background.js 40 console.log('Action url: ' + action_url);
49 // the tab as a result of the user pressing the browser action.
58 // Called when the user clicks on the browser action icon.
  /external/chromium_org/sync/protocol/
proto_enum_conversions.cc 143 const char* GetActionString(sync_pb::SyncEnums::Action action) {
144 ASSERT_ENUM_BOUNDS(sync_pb::SyncEnums, Action,
146 switch (action) {
  /external/clang/lib/Driver/
Compilation.cpp 11 #include "clang/Driver/Action.h"
316 static bool ActionFailed(const Action *A,
327 for (Action::const_iterator AI = A->begin(), AE = A->end(); AI != AE; ++AI)
Driver.cpp 14 #include "clang/Driver/Action.h"
821 static unsigned PrintActions1(const Compilation &C, Action *A,
822 std::map<Action*, unsigned> &Ids) {
829 os << Action::getClassName(A->getKind()) << ", ";
837 for (Action::iterator it = A->begin(), ie = A->end(); it != ie;) {
855 std::map<Action*, unsigned> Ids;
863 static bool ContainsCompileOrAssembleAction(const Action *A) {
867 for (Action::const_iterator it = A->begin(), ie = A->end(); it != ie; ++it)
912 // Add in arch bindings for every top level action, as well as lipo and
915 Action *Act = SingleActions[i]
    [all...]
  /prebuilts/devtools/tools/lib/
uiautomatorviewer.jar 
hierarchyviewer2.jar 
monkeyrunner.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
OutlinePage.java 60 import org.eclipse.jface.action.Action;
61 import org.eclipse.jface.action.ActionContributionItem;
62 import org.eclipse.jface.action.IAction;
63 import org.eclipse.jface.action.IContributionItem;
64 import org.eclipse.jface.action.IMenuListener;
65 import org.eclipse.jface.action.IMenuManager;
66 import org.eclipse.jface.action.IToolBarManager;
67 import org.eclipse.jface.action.MenuManager;
68 import org.eclipse.jface.action.Separator
    [all...]
DynamicContextMenu.java 51 import org.eclipse.jface.action.Action;
52 import org.eclipse.jface.action.ActionContributionItem;
53 import org.eclipse.jface.action.ContributionItem;
54 import org.eclipse.jface.action.IAction;
55 import org.eclipse.jface.action.IContributionItem;
56 import org.eclipse.jface.action.IMenuListener;
57 import org.eclipse.jface.action.IMenuManager;
58 import org.eclipse.jface.action.MenuManager;
59 import org.eclipse.jface.action.Separator
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
session.cc 1038 template <typename Action>
1039 bool Session::SendMessage(ActionType type, const Action& action,
1043 if (!WriteActionMessage(type, action, stanza.get(), error))
1050 template <typename Action
    [all...]
  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor.cc 161 // Given a match, return a recommended action.
162 AutocompleteActionPredictor::Action
180 // Map the confidence to an action.
181 Action action = ACTION_NONE; local
184 action = static_cast<Action>(i);
195 if (action == ACTION_PRERENDER &&
198 action = ACTION_PRECONNECT;
201 return action;
    [all...]
  /frameworks/base/drm/java/android/drm/
DrmManagerClient.java 362 * @param action Action defined in {@link DrmStore.Action}.
368 public ContentValues getConstraints(String path, int action) {
369 if (null == path || path.equals("") || !DrmStore.Action.isValid(action)) {
372 return _getConstraints(mUniqueId, path, action);
394 * @param action Action defined in {@link DrmStore.Action}
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsession.cc 537 Action action = GetAction(desc->type()); local
538 if (!ExpectSetLocalDescription(action)) {
546 if (action == kAnswer && !VerifyMediaDescriptions(
552 if (state() == STATE_INIT && action == kOffer) {
563 if (action == kOffer && !CreateChannels(local_desc_->description())) {
573 if (!UpdateSessionState(action, cricket::CS_LOCAL,
609 Action action = GetAction(desc->type()); local
610 if (!ExpectSetRemoteDescription(action)) {
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
session.cc 246 const TransportDescription& description, ContentAction action) {
248 if (action == CA_ANSWER) {
251 return transport_->get()->SetLocalTransportDescription(description, action);
255 const TransportDescription& description, ContentAction action) {
257 if (action == CA_ANSWER) {
260 return transport_->get()->SetRemoteTransportDescription(description, action);
387 ContentAction action) {
389 return PushdownLocalTransportDescription(local_description_, action);
391 return PushdownRemoteTransportDescription(remote_description_, action);
396 ContentAction action) {
774 ContentAction action; local
    [all...]

Completed in 1604 milliseconds

1 2 3 4 5 6 7 891011>>