/external/chromium_org/third_party/mesa/src/scons/ |
gallium.py | 27 # ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 40 import SCons.Action 77 action = SCons.Action.Action(symlink, " Symlinking $TARGET ...") 78 last = env.Command(os.path.join(target_dir, target_name), last, action) 122 pipe = SCons.Action._subproc(env, [env['CC'], '--version'],
|
/external/eigen/Eigen/src/Core/products/ |
Parallelizer.h | 18 inline void manage_multi_threading(Action action, int* v) 22 if(action==SetAction) 27 else if(action==GetAction)
|
/external/eigen/Eigen/src/Core/util/ |
Constants.h | 418 enum Action {GetAction, SetAction};
|
/external/mesa3d/scons/ |
gallium.py | 27 # ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 40 import SCons.Action 77 action = SCons.Action.Action(symlink, " Symlinking $TARGET ...") 78 last = env.Command(os.path.join(target_dir, target_name), last, action) 122 pipe = SCons.Action._subproc(env, [env['CC'], '--version'],
|
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
QuickContactActivity.java | 131 * Keeps the default action per mimetype. Empty if no default actions are set 133 private HashMap<String, Action> mDefaultsMap = new HashMap<String, Action>(); 136 * Set of {@link Action} that are associated with the aggregate currently 138 * MIME-type to a list of {@link Action}. 448 // Build an action for this data entry, find a mapping to a UI 451 final Action action = new DataAction(context, dataItem, dataKind); local 452 final boolean wasAdded = considerAdd(action, cache, isSuperPrimary); 456 mDefaultsMap.put(mimeType, action); 467 final DataAction action = new DataAction(context, im, dataKind); local 543 mActions.put(action.getMimeType(), action, front); local [all...] |
/cts/tests/tests/drm/src/android/drm/cts/ |
DRMTest.java | 109 DrmStore.Action.DEFAULT); 135 DrmStore.Action.PLAY);
|
/external/chromium_org/cc/scheduler/ |
scheduler.cc | 317 // The top-level call will iteratively execute the next action for us anyway. 323 SchedulerStateMachine::Action action; local 326 action = state_machine_.NextAction(); 331 state_machine_.UpdateState(action); 332 base::AutoReset<SchedulerStateMachine::Action> 333 mark_inside_action(&inside_action_, action); 334 switch (action) { 356 // No action is actually performed, but this allows the state machine to 372 } while (action != SchedulerStateMachine::ACTION_NONE) [all...] |
/external/chromium_org/third_party/skia/include/views/ |
SkWidget.h | 320 enum Action { 327 action occurs. If event is null, then no event will be posted for 328 the specified action. 330 void setActionEvent(Action, SkEvent* event);
|
/external/llvm/tools/llvm-rtdyld/ |
llvm-rtdyld.cpp | 40 Action(cl::desc("Action to perform:"), 244 switch (Action) {
|
/external/skia/include/views/ |
SkWidget.h | 320 enum Action { 327 action occurs. If event is null, then no event will be posted for 328 the specified action. 330 void setActionEvent(Action, SkEvent* event);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
CopyCutAction.java | 26 import org.eclipse.jface.action.Action; 50 public class CopyCutAction extends Action { 58 * Creates a new Copy or Cut action. 69 * Creates a new Copy or Cut action. 100 * Performs the cut or copy action.
|
UiTreeBlock.java | 32 import org.eclipse.jface.action.Action; 33 import org.eclipse.jface.action.IMenuListener; 34 import org.eclipse.jface.action.IMenuManager; 35 import org.eclipse.jface.action.MenuManager; 36 import org.eclipse.jface.action.Separator; 37 import org.eclipse.jface.action.ToolBarManager; 555 manager.add(new Action("Add...", factory.getImageDescriptor("add")) { //$NON-NLS-1$ 566 manager.add(new Action("Remove", factory.getImageDescriptor("delete")) { //$NON-NLS-1$ 576 manager.add(new Action("Up", factory.getImageDescriptor("up")) { //$NON-NLS-1 900 DescriptorFilterAction action = ((DescriptorFilter) filter).getAction(); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
RunLintAction.java | 32 import org.eclipse.jface.action.Action; 33 import org.eclipse.jface.action.ActionContributionItem; 34 import org.eclipse.jface.action.IAction; 35 import org.eclipse.jface.action.IMenuCreator; 36 import org.eclipse.jface.action.Separator; 55 * Action which runs Lint on the currently projects (and also provides a 66 public void selectionChanged(IAction action, ISelection selection) { 71 public void run(IAction action) { 92 public void setActivePart(IAction action, IWorkbenchPart targetPart) [all...] |
/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 { 1240 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_org/chrome/browser/extensions/ |
extension_function_dispatcher.cc | 73 scoped_refptr<extensions::Action> action = local 74 new extensions::Action(extension_id, 76 extensions::Action::ACTION_API_CALL, 78 action->set_args(args.Pass()); 79 activity_log->LogAction(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/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 | 157 const char* GetActionString(sync_pb::SyncEnums::Action action) { 158 ASSERT_ENUM_BOUNDS(sync_pb::SyncEnums, Action, 160 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)
|
/prebuilts/devtools/tools/lib/ |
uiautomatorviewer.jar | |