/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
TreeFilter.cs | 36 public delegate void Action(); 74 executing an action in the preorder position. To get a bottom-up 75 visitor, we execute an action in the postorder position. ANTLR 98 public virtual void ApplyOnce( object t, Action whichRule )
|
/frameworks/base/drm/java/android/drm/ |
DrmStore.java | 28 * {@link android.drm.DrmStore.Action actions} that can be performed 41 * {@link android.drm.DrmStore.Action action}. 50 * {@link android.drm.DrmStore.Action action}. 58 * an {@link android.drm.DrmStore.Action action} can be performed on 67 * an {@link android.drm.DrmStore.Action action} can not be performed on 163 public static class Action { [all...] |
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
QuickContactListFragment.java | 43 private List<Action> mActions; 69 public void setActions(List<Action> actions) { 99 // Set action title based on summary value 100 final Action action = mActions.get(position); 101 String mimeType = action.getMimeType(); 124 actionsContainer.setTag(action); 126 alternateActionButton.setTag(action); 128 final boolean hasAlternateAction = action.getAlternateIntent() != null; 130 alternateActionButton.setImageDrawable(action.getAlternateIcon()) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/ |
SaveImageAction.java | 21 import org.eclipse.jface.action.Action; 29 public class SaveImageAction extends Action {
|
/external/clang/lib/Driver/ |
ToolChains.h | 15 #include "clang/Driver/Action.h" 124 virtual Tool *constructTool(Action::ActionClass AC) const; 267 virtual Tool *constructTool(Action::ActionClass AC) const; 391 virtual Tool *constructTool(Action::ActionClass AC) const; 398 virtual Tool *constructTool(Action::ActionClass AC) const; 411 virtual Tool *constructTool(Action::ActionClass AC) const; 422 virtual Tool *constructTool(Action::ActionClass AC) const; 440 virtual Tool *constructTool(Action::ActionClass AC) const; 451 virtual Tool *constructTool(Action::ActionClass AC) const; 458 virtual Tool *constructTool(Action::ActionClass AC) const [all...] |
Android.mk | 16 Action.cpp \
|
ToolChains.cpp | 175 Tool *Darwin::constructTool(Action::ActionClass AC) const { 177 case Action::InputClass: 178 case Action::BindArchClass: 180 case Action::PreprocessJobClass: 181 case Action::AnalyzeJobClass: 182 case Action::MigrateJobClass: 183 case Action::PrecompileJobClass: 184 case Action::CompileJobClass: 186 case Action::AssembleJobClass: { 193 case Action::LinkJobClass [all...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfException.cpp | 73 /// ComputeActionsTable - Compute the actions table and gather the first action 80 // The action table follows the call-site table in the LSDA. The individual 159 ActionEntry Action = { ValueForTypeID, NextAction, PrevAction }; 160 Actions.push_back(Action); 164 // Record the first action of the landing pad site. 168 // Information used when created the call-site table. The action record 170 // action record, relative to the start of the actions table. This value is 220 /// appropriate action. The entry for an ordinary call has a try-range 221 /// containing the call and zero for the landing pad and the action. Calls 295 if (Site.PadLabel == Prev.PadLabel && Site.Action == Prev.Action) [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/ |
CategoryAdapter.java | 34 public class CategoryAdapter extends ArrayAdapter<Action> { 62 public void add(Action action) { 63 super.add(action); 64 action.setAdapter(this); 92 Action action = getItem(position); local 93 view.setAction(action); 94 view.setup(action.getName(), null, this); 159 Action action = getItem(i) local 171 Action action = getItem(i); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
DeviceViewAction.java | 8 import org.eclipse.jface.action.Action; 19 private static final class StartTraceAction extends Action { 105 public Action getAction() {
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
ActionBatch.java | 71 Forget is an DB maintenance action that removes the entry if it is not installed or disabled. 79 * Action is basically like a Runnable that takes an argument. 81 public interface Action { 83 * Execute this action NOW. 90 * An action that starts downloading an available word list. 92 public static final class StartDownloadAction implements Action { 101 Utils.l("New download action for client ", clientId, " : ", wordList); 132 + " for an upgrade action. Fall back to download."); 187 * An action that updates the database to reflect the status of a newly installed word list. 189 public static final class InstallAfterDownloadAction implements Action { [all...] |
/external/clang/include/clang/Driver/ |
Driver.h | 29 class Action; 324 /// ConstructAction - Construct the appropriate action to do for 327 Action *ConstructPhaseAction(const ArgList &Args, phases::ID Phase, 328 Action *Input) const; 332 /// action \p A. 334 const Action *A, 342 /// the action \p JA. The result is appended to the compilation's 346 /// \param JA - The action of interest. 347 /// \param BaseInput - The original input file that this action was 349 /// \param AtTopLevel - Whether this is a "top-level" action [all...] |
/external/clang/test/Preprocessor/ |
microsoft-ext.c | 16 GTEST_CONCAT_TOKEN_(name##Action, GMOCK_INTERNAL_COUNT_##value_params)
|
/external/clang/unittests/Tooling/ |
ToolingTest.cpp | 103 OwningPtr<FrontendAction> Action(Factory->create()); 104 EXPECT_TRUE(Action.get() != NULL); 117 OwningPtr<FrontendAction> Action(Factory->create()); 118 EXPECT_TRUE(Action.get() != NULL);
|
/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/test/SemaCXX/ |
constexpr-turing.cpp | 9 struct Action { 14 using State = Action[2];
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ExportScreenshotAction.java | 22 import org.eclipse.jface.action.Action; 35 class ExportScreenshotAction extends Action {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/ |
DeviceView.java | 64 import org.eclipse.jface.action.Action; 65 import org.eclipse.jface.action.IAction; 66 import org.eclipse.jface.action.IMenuManager; 67 import org.eclipse.jface.action.IToolBarManager; 68 import org.eclipse.jface.action.Separator; 106 private Action mResetAdbAction; 107 private Action mCaptureAction; 108 private Action mViewUiAutomatorHierarchyAction; 109 private Action mSystraceAction [all...] |
/external/clang/lib/CodeGen/ |
BackendUtil.cpp | 104 bool AddEmitPasses(BackendAction Action, formatted_raw_ostream &OS, 123 void EmitAssembly(BackendAction Action, raw_ostream *OS); 479 bool EmitAssemblyHelper::AddEmitPasses(BackendAction Action, 499 if (Action == Backend_EmitObj) 501 else if (Action == Backend_EmitMCNull) 504 assert(Action == Backend_EmitAssembly && "Invalid action!"); 522 void EmitAssemblyHelper::EmitAssembly(BackendAction Action, raw_ostream *OS) { 526 bool UsesCodeGen = (Action != Backend_EmitNothing && 527 Action != Backend_EmitBC & [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
LintViewPart.java | 38 import org.eclipse.jface.action.Action; 39 import org.eclipse.jface.action.IStatusLineManager; 40 import org.eclipse.jface.action.IToolBarManager; 41 import org.eclipse.jface.action.Separator; 106 private Action mFixAction; 107 private Action mRemoveAction; 108 private Action mIgnoreAction; 109 private Action mAlwaysIgnoreAction; 110 private Action mIgnoreFileAction [all...] |
/packages/apps/Gallery2/src/com/android/photos/data/ |
MediaCacheDatabase.java | 48 static interface Action { 143 public MediaSize executeOnBestCached(Uri uri, MediaSize size, Action action) { 156 action.execute(uri, id, bestSize, fileSize); 162 public long insert(Uri uri, MediaSize size, Action action, File tempFile) { 173 action.execute(uri, id, size, tempFile); 198 public void delete(Uri uri, MediaSize size, Action action) { 203 deleteRows(uri, where, whereArgs, action); [all...] |
/external/clang/lib/ASTMatchers/ |
ASTMatchFinder.cpp | 712 MatchCallback *Action) { 714 new internal::Matcher<Decl>(NodeMatch), Action)); 718 MatchCallback *Action) { 720 new internal::Matcher<QualType>(NodeMatch), Action)); 724 MatchCallback *Action) { 726 new internal::Matcher<Stmt>(NodeMatch), Action)); 730 MatchCallback *Action) { 732 new NestedNameSpecifierMatcher(NodeMatch), Action)); 736 MatchCallback *Action) { 738 new NestedNameSpecifierLocMatcher(NodeMatch), Action)); [all...] |
/external/llvm/utils/TableGen/ |
TableGen.cpp | 48 Action(cl::desc("Action to perform:"), 92 switch (Action) {
|
/frameworks/av/include/drm/ |
drm_framework_common.h | 83 * Defines detailed description of the action 152 class Action { 154 Action(); 158 * Constant field signifies that the default action
|