HomeSort by relevance Sort by last modified time
    Searched refs:wizard (Results 26 - 50 of 127) sorted by null

12 3 4 5 6

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreePatternParser.cs 39 protected TreeWizard wizard; field in class:Antlr.Runtime.Tree.TreePatternParser
42 public TreePatternParser(TreePatternLexer tokenizer, TreeWizard wizard, ITreeAdaptor adaptor) {
44 this.wizard = wizard;
141 int treeNodeType = wizard.GetTokenType(tokenName);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreePatternParser.cs 41 protected TreeWizard wizard; field in class:Antlr.Runtime.Tree.TreePatternParser
44 public TreePatternParser( TreePatternLexer tokenizer, TreeWizard wizard, ITreeAdaptor adaptor )
47 this.wizard = wizard;
165 int treeNodeType = wizard.GetTokenType( tokenName );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreePatternParser.java 36 protected TreeWizard wizard; field in class:TreePatternParser
39 public TreePatternParser(TreePatternLexer tokenizer, TreeWizard wizard, TreeAdaptor adaptor) {
41 this.wizard = wizard;
140 int treeNodeType = wizard.getTokenType(tokenName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ExtractStringFix.java 70 RefactoringWizard wizard = new ExtractStringWizard(refactoring, file.getProject()); local
71 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
74 op.run(window.getShell(), wizard.getDefaultPageTitle());
UseCompoundDrawableDetectorFix.java 84 RefactoringWizard wizard = refactoring.createWizard(); local
86 new RefactoringWizardOpenOperation(wizard);
90 op.run(window.getShell(), wizard.getDefaultPageTitle());
RemoveUselessViewFix.java 75 RefactoringWizard wizard = refactoring.createWizard(); local
77 new RefactoringWizardOpenOperation(wizard);
81 op.run(window.getShell(), wizard.getDefaultPageTitle());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringAction.java 123 * Create a new instance of our refactoring and a wizard to configure it.
129 RefactoringWizard wizard = new ExtractStringWizard(ref, mFile.getProject()); local
130 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
132 op.run(mWindow.getShell(), wizard.getDefaultPageTitle());
  /frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/wizard/
WizardExampleActivity.java 15 package android.support.v17.leanback.supportleanbackshowcase.app.wizard;
24 * An Activity displaying a wizard for renting a movie.
42 // The user 'bought' the product. When he presses 'Back' the Wizard will be closed and
WizardExampleBaseStepFragment.java 15 package android.support.v17.leanback.supportleanbackshowcase.app.wizard;
24 * makes sure that the wizard is using the correct theme.
WizardExample1stStepFragment.java 15 package android.support.v17.leanback.supportleanbackshowcase.app.wizard;
27 * The first screen of the rental wizard. Gives the user the choice between renting the movie in SD
WizardExample3rdStepFragment.java 15 package android.support.v17.leanback.supportleanbackshowcase.app.wizard;
29 * This is the third screen of the rental wizard which will display a progressbar while waiting for
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewExportPart.java 29 import org.eclipse.jface.wizard.WizardDialog;
73 buf.append("<form><li><a href=\"wizard\">"); //$NON-NLS-1$
74 buf.append("Use the Export Wizard");
94 // call the export wizard
97 ExportWizard wizard = new ExportWizard();
98 wizard.init(PlatformUI.getWorkbench(), selection);
99 WizardDialog dialog = new WizardDialog(body.getShell(), wizard);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
ImportInsteadPage.java 18 import org.eclipse.jface.wizard.WizardPage;
GradleExportWizard.java 25 import org.eclipse.jface.wizard.Wizard;
26 import org.eclipse.jface.wizard.WizardPage;
33 public class GradleExportWizard extends Wizard implements IExportWizard {
  /external/autotest/frontend/client/src/autotest/moblab/wizard/
WizardCard.java 1 package autotest.moblab.wizard;
9 import autotest.moblab.wizard.ConfigWizard.Mode;
29 pnlCard.setStyleName("wizard-card-panel");
FlexWizardCard.java 1 package autotest.moblab.wizard;
34 layoutTable.getColumnFormatter().addStyleName(0, "wizard-card-property-name-col");
35 layoutTable.getColumnFormatter().addStyleName(1, "wizard-card-property-value-col");
59 widget.setStyleName("wizard-card-property-value");
NetworkInfoCard.java 1 package autotest.moblab.wizard;
14 * Wizard card for network info configuration.
  /frameworks/opt/setupwizard/library/
Android.mk 2 # Build the platform version of setup wizard library.
12 LOCAL_MODULE := setup-wizard-lib
36 LOCAL_MODULE := setup-wizard-lib-gingerbread-compat
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceWizard.java 37 * Rename refactoring wizard for Android resources such as {@code @id/foo}
135 RenameResourceWizard wizard = new RenameResourceWizard(refactoring, type, canClear); local
136 RefactoringWizardOpenOperation operation = new RefactoringWizardOpenOperation(wizard);
137 String dialogTitle = wizard.getDefaultPageTitle();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
InstallDependencyPage.java 26 import org.eclipse.jface.wizard.IWizard;
27 import org.eclipse.jface.wizard.IWizardPage;
28 import org.eclipse.jface.wizard.WizardPage;
153 IWizard wizard = getWizard(); local
154 IWizardPage next = wizard.getNextPage(this);
156 wizard.getContainer().showPage(next);
TemplateTestWizard.java 20 import org.eclipse.jface.wizard.IWizardPage;
26 * Template wizard which creates parameterized templates
32 /** Creates a new wizard for testing template definitions in a local directory */
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PlayAnimationMenu.java 39 import org.eclipse.jface.wizard.WizardDialog;
222 * Action which brings up the "Create new XML File" wizard, pre-selected with the
233 NewXmlFileWizard wizard = new NewXmlFileWizard(); local
241 wizard.init(workbench, selection);
242 WizardDialog dialog = new WizardDialog(parent, wizard);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RefactoringAssistant.java 287 RefactoringWizard wizard = null; local
289 wizard = ((VisualRefactoring) mRefactoring).createWizard();
291 wizard = new ExtractStringWizard((ExtractStringRefactoring) mRefactoring,
298 wizard = new RenameResourceWizard((RenameRefactoring) mRefactoring, type, false);
303 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
306 op.run(window.getShell(), wizard.getDefaultPageTitle());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/
RenamePackageAction.java 114 * Validate the new package name and start the refactoring wizard
164 ApplicationPackageNameRefactoringWizard wizard = local
166 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectWizard.java 28 import org.eclipse.jface.wizard.IWizardPage;
29 import org.eclipse.jface.wizard.Wizard;
37 * A "New Android Project" Wizard.
45 public class NewProjectWizard extends Wizard implements INewWizard {
56 /** Constructs a new wizard default project wizard */
98 // Sample projects can be created when entering the new/existing wizard, or
99 // the sample wizard
160 // Done with wizard when creating from existing or creating test project
    [all...]

Completed in 1105 milliseconds

12 3 4 5 6