/sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/ |
PixelPerfectLoupeView.java | 28 import org.eclipse.jface.action.Action; 29 import org.eclipse.jface.action.IMenuManager; 30 import org.eclipse.jface.action.IToolBarManager; 48 private Action mShowInLoupeAction = new Action("&Show Overlay", Action.AS_CHECK_BOX) {
|
/external/chromium/chrome/browser/sync/glue/ |
autofill_change_processor.h | 91 sync_api::SyncManager::ChangeRecord::Action action, 96 sync_api::SyncManager::ChangeRecord::Action action,
|
/external/clang/lib/Driver/ |
Android.mk | 16 Action.cpp \
|
/frameworks/base/include/drm/ |
drm_framework_common.h | 82 * Defines detailed description of the action 151 class Action { 153 Action(); 157 * Constant field signifies that the default action
|
/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/actions/ |
InspectScreenshotAction.java | 26 import org.eclipse.jface.action.Action; 32 public class InspectScreenshotAction extends Action implements ImageAction, IWindowChangeListener {
|
LoadViewHierarchyAction.java | 26 import org.eclipse.jface.action.Action; 32 public class LoadViewHierarchyAction extends Action implements ImageAction, IWindowChangeListener {
|
/frameworks/base/core/java/android/speech/tts/ |
TextToSpeech.java | 110 * Broadcast Action: The TextToSpeech synthesizer has completed processing 240 "android.intent.action.TTS_SERVICE"; 252 * Activity Action: Triggers the platform TextToSpeech engine to 265 * Broadcast Action: broadcast to signal the completion of the installation of 274 * Activity Action: Starts the activity from the platform TextToSpeech 496 private <R> R runActionNoReconnect(Action<R> action, R errorResult, String method) { 497 return runAction(action, errorResult, method, false); 500 private <R> R runAction(Action<R> action, R errorResult, String method) [all...] |
/packages/apps/Contacts/src/com/android/contacts/activities/ |
ActionBarAdapter.java | 20 import com.android.contacts.activities.ActionBarAdapter.Listener.Action; 40 * Adapter for the action bar at the top of the Contacts activity. 45 public enum Action { 49 void onAction(Action action); 258 // The current flags set to the action bar. (only the ones that we may change here) 283 // Since we have the {@link SearchView} in a custom action bar, we must manually handle 290 mListener.onAction(Action.START_SEARCH_MODE); 308 // Since we have the {@link SearchView} in a custom action bar, we must manually handle 312 mListener.onAction(Action.STOP_SEARCH_MODE) [all...] |
/external/llvm/tools/llvm-rtdyld/ |
llvm-rtdyld.cpp | 36 Action(cl::desc("Action to perform:"), 144 switch (Action) {
|
/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...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ShowWithinMenu.java | 10 import org.eclipse.jface.action.Action; 11 import org.eclipse.jface.action.ActionContributionItem; 12 import org.eclipse.jface.action.IAction; 13 import org.eclipse.jface.action.Separator; 19 * Action which creates a submenu for the "Show Included In" action 41 IAction action = new ShowWithinAction(title, reference); local 42 new ActionContributionItem(action).fill(menu, -1); 46 IAction action = new ShowWithinAction("Nothing", null) local [all...] |
LayoutCanvas.java | 50 import org.eclipse.jface.action.Action; 51 import org.eclipse.jface.action.ActionContributionItem; 52 import org.eclipse.jface.action.IAction; 53 import org.eclipse.jface.action.IContributionItem; 54 import org.eclipse.jface.action.IMenuManager; 55 import org.eclipse.jface.action.IStatusLineManager; 56 import org.eclipse.jface.action.MenuManager; 57 import org.eclipse.jface.action.Separator; 169 /** Delete action for the Edit or context menu. * [all...] |
/external/chromium/chrome/browser/net/ |
passive_log_collector.cc | 204 Action result = DoAddEntry(entry, &info); 384 PassiveLogCollector::SourceTracker::Action 415 PassiveLogCollector::SourceTracker::Action 447 PassiveLogCollector::SourceTracker::Action 484 PassiveLogCollector::SourceTracker::Action 507 PassiveLogCollector::SourceTracker::Action 530 PassiveLogCollector::SourceTracker::Action 553 PassiveLogCollector::SourceTracker::Action 576 PassiveLogCollector::SourceTracker::Action 601 PassiveLogCollector::SourceTracker::Action [all...] |
/external/chromium/testing/gmock/include/gmock/ |
gmock-spec-builders.h | 36 // A user can use the ON_CALL() macro to specify the default action of 41 // .WillByDefault(action); 53 // .WillOnce(action) 54 // .WillRepeatedly(action) 141 // Performs the default action with the given arguments and returns 142 // the action's result. The call description string will be used in 144 // action fails. 150 // Performs the given action with the given arguments and returns 151 // the action's result. 166 // untyped_action is set to point to the action that should b [all...] |
/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) {
|
/sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/actions/ |
DragAction.java | 21 * Action to drag the "finger" across the device. 23 public class DragAction implements Action {
|
PressAction.java | 26 * Action to press a certain button. 28 public class PressAction implements Action {
|
TouchAction.java | 26 * Action to touch the touchscreen at a certain location. 28 public class TouchAction implements Action {
|
/external/llvm/lib/ExecutionEngine/JIT/ |
JITDwarfEmitter.cpp | 192 unsigned Action; 237 // Compute the actions table and gather the first action index for each 279 ActionEntry Action = {ValueForTypeID, NextAction, PrevAction}; 280 Actions.push_back(Action); 285 // Record the first action of the landing pad site. 355 if (Site.PadLabel == Prev.PadLabel && Site.Action == Prev.Action) { 379 SizeSites += MCAsmInfo::getULEB128Size(CallSites[i].Action); 438 JCE->emitULEB128Bytes(S.Action); 439 // Asm->EOL("Action"); [all...] |
/external/clang/lib/CodeGen/ |
CodeGenAction.cpp | 1 //===--- CodeGenAction.cpp - LLVM Code Generation Frontend Action ---------===// 34 BackendAction Action; 48 BackendConsumer(BackendAction action, Diagnostic &_Diags, 56 Action(action), 134 TheModule.get(), Action, AsmOutStream); 263 BackendAction Action) { 264 switch (Action) { 278 assert(0 && "Invalid action!");
|
/external/llvm/include/llvm/Target/ |
TargetLowering.h | 89 /// target, and if not, what action should be used to make them valid. 98 /// target, and if not, what action should be used to make them valid. 229 void setTypeAction(EVT VT, LegalizeTypeAction Action) { 231 ValueTypeActions[I] = Action; 458 LegalizeAction Action = (LegalizeAction) 460 assert(Action != Promote && "Can't promote condition code!"); 461 return Action; 472 /// getTypeToPromoteTo - If the action for this operation is to promote, this [all...] |
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
session.h | 457 // "action", which must have a WriteSessionAction method to go along 458 // with it. Sending with an action supports sending a "hybrid" 465 // When passing an action, may be Hybrid protocol. 466 template <typename Action> 467 bool SendMessage(ActionType type, const Action& action, 471 template <typename Action> 472 bool WriteActionMessage(ActionType type, const Action& action, 474 template <typename Action> [all...] |
/frameworks/base/core/java/android/widget/ |
RemoteViews.java | 82 private ArrayList<Action> mActions; 109 * Exception to send when something goes wrong executing an action 127 private abstract static class Action implements Parcelable { 163 private class SetEmptyView extends Action { 199 private class SetOnClickFillInIntent extends Action { 280 private class SetPendingIntentTemplate extends Action { 363 private class SetRemoteViewsAdapterIntent extends Action { 387 Log.e("RemoteViews", "SetRemoteViewsAdapterIntent action can only be used for " + 422 private class SetOnClickPendingIntent extends Action { 495 private class SetDrawableParameters extends Action { [all...] |
/frameworks/base/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/ |
FwdLockEngine.cpp | 109 DrmConstraints* FwdLockEngine::onGetConstraints(int uniqueId, const String8* path, int action) { 115 (RightsStatus::RIGHTS_VALID == onCheckRightsStatus(uniqueId, *path, action))) { 228 int action) { 233 // Only Transfer action is not allowed for forward Lock files. 235 switch(action) { 236 case Action::DEFAULT: 237 case Action::PLAY: 238 case Action::RINGTONE: 239 case Action::OUTPUT: 240 case Action::PREVIEW [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...] |