HomeSort by relevance Sort by last modified time
    Searched refs:wizard (Results 51 - 75 of 123) sorted by null

1 23 4 5

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeySelectionPage.java 23 import org.eclipse.jface.wizard.IWizardPage;
61 protected KeySelectionPage(ExportWizard wizard, String pageName) {
63 mWizard = wizard;
190 // the wizard as well
KeystoreSelectionPage.java 23 import org.eclipse.jface.wizard.IWizardPage;
54 protected KeystoreSelectionPage(ExportWizard wizard, String pageName) {
56 mWizard = wizard;
KeyCreationPage.java 23 import org.eclipse.jface.wizard.IWizardPage;
58 protected KeyCreationPage(ExportWizard wizard, String pageName) {
60 mWizard = wizard;
KeyCheckPage.java 56 * Final page of the wizard that checks the key and ask for the ouput location.
83 protected KeyCheckPage(ExportWizard wizard, String pageName) {
85 mWizard = wizard;
171 // reset the wizard with no key/cert to make it not finishable, unless a valid
210 // the file was removed during the export wizard execution.
240 // valid, key/cert: put it in the wizard so that it can be finished
301 // reset canFinish in the wizard.
310 // reset canFinish in the wizard.
319 // reset canFinish in the wizard.
330 // no error, set the destination in the wizard
    [all...]
ProjectCheckPage.java 47 * First Export Wizard Page. Display warning/errors.
63 protected ProjectCheckPage(ExportWizard wizard, String pageName) {
65 mWizard = wizard;
257 // update the wizard with the new project
280 // update the wizard with the new project
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateWizard.java 34 import org.eclipse.jface.wizard.IWizardPage;
35 import org.eclipse.jface.wizard.Wizard;
36 import org.eclipse.jface.wizard.WizardPage;
50 abstract class TemplateWizard extends Wizard implements INewWizard {
61 /** Should this wizard add an icon page? */
NewActivityWizard.java 35 import org.eclipse.jface.wizard.IWizardPage;
36 import org.eclipse.jface.wizard.WizardPage;
46 * Wizard for creating new activities. This is a hybrid between a New Project
47 * Wizard and a New Template Wizard: it has the "Activity selector" page from
48 * the New Project Wizard, which is used to dynamically select a wizard for the
49 * second page, but beyond that it runs the normal template wizard when it comes
180 /** Wizard for creating other Android components */
NewTemplateWizard.java 33 import org.eclipse.jface.wizard.IWizardPage;
34 import org.eclipse.jface.wizard.WizardPage;
45 * Template wizard which creates parameterized templates
196 * Specific New Custom View wizard
TemplateTestPage.java 19 import org.eclipse.jface.wizard.WizardPage;
46 setTitle("Wizard Tester");
99 // Preserve across wizard sessions
NewProjectWizard.java 44 import org.eclipse.jface.wizard.IWizardPage;
45 import org.eclipse.jface.wizard.WizardPage;
59 * Wizard for creating new projects
125 // Bundle asset studio wizard to create the launcher icon
171 // of the new project wizard.
388 * Generate custom icons into the project based on the asset studio wizard state
ProjectContentsPage.java 29 import org.eclipse.jface.wizard.IWizardPage;
30 import org.eclipse.jface.wizard.WizardPage;
52 * Second wizard page in the "New Project From Template" wizard
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testtreewizard.py 141 self.wizard = TreeWizard(self.adaptor, tokenNames=self.tokens)
147 parser = TreePatternParser(lexer, self.wizard, self.adaptor)
157 parser = TreePatternParser(lexer, self.wizard, self.adaptor)
167 parser = TreePatternParser(lexer, self.wizard, self.adaptor)
180 parser = TreePatternParser(lexer, self.wizard, self.adaptor)
190 parser = TreePatternParser(lexer, self.wizard, self.adaptor)
198 parser = TreePatternParser(lexer, self.wizard, TreePatternTreeAdaptor())
207 parser = TreePatternParser(lexer, self.wizard, self.adaptor)
215 parser = TreePatternParser(lexer, self.wizard, self.adaptor)
223 parser = TreePatternParser(lexer, self.wizard, self.adaptor
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-trees.rb 800 @wizard = Wizard.new( :token_scheme => Tokens )
810 tree = @wizard.create(
813 labels = @wizard.match( tree,
818 @wizard.in_context?( labels.fetch( 'x' ), 'VEC' ).should be_true
822 tree = @wizard.create(
826 labels = @wizard.match( tree, "(%x:PRINT (MULT ID (VEC INT INT INT)))" )
828 @wizard.in_context?( labels.fetch( 'x' ), 'VEC' ).should be_false
832 tree = @wizard.create(
836 labels = @wizard.match( tree
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
AdtStartup.java 38 import org.eclipse.jface.wizard.WizardDialog;
60 * <li> See if the user has ever run the welcome wizard, and if not, run it
134 // the welcome wizard each time if we can simply use the existing SDK install.
154 // no need to pester the user with the welcome wizard.
164 // Check whether we've run this wizard before.
265 WelcomeWizard wizard = new WelcomeWizard(mStore, showSdkInstallPage,
267 WizardDialog dialog = new WizardDialog(window.getShell(), wizard);
271 // Record the fact that we've run the wizard so we don't attempt to do it again,
272 // even if the user just cancels out of the wizard.
UsagePermissionPage.java 23 import org.eclipse.jface.wizard.WizardPage;
46 * Create the wizard.
55 * Create contents of the wizard.
WelcomeWizard.java 27 import org.eclipse.jface.wizard.Wizard;
39 * Wizard shown on first start for new users: configure SDK location, accept or
42 public class WelcomeWizard extends Wizard {
78 // run ADT which is why the wizard was opened. No need to ask again.
111 // Read out wizard settings immediately; we will perform the actual work
112 // after the wizard window has been taken down and it's too late to read the
134 AdtPlugin.logAndPrintError(e, "ADT Welcome Wizard",
145 // The wizard always succeeds, even if installation fails or is aborted
157 AdtPlugin.logAndPrintError(null, "ADT Welcome Wizard",
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
FinalPage.java 23 import org.eclipse.jface.wizard.WizardPage;
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/wizards/
AddNativeWizardPage.java 22 import org.eclipse.jface.wizard.WizardPage;
AddNativeWizard.java 33 import org.eclipse.jface.wizard.Wizard;
42 public class AddNativeWizard extends Wizard {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
ChooseConfigurationPage.java 29 import org.eclipse.jface.wizard.IWizardPage;
30 import org.eclipse.jface.wizard.WizardPage;
59 * Create the wizard.
61 * @param values value object holding current wizard state
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceXmlTextAction.java 140 RenameTypeWizard wizard = new RenameTypeWizard(refactoring); local
141 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
144 op.run(window.getShell(), wizard.getDefaultPageTitle());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ReferenceChooserDialog.java 299 RefactoringWizard wizard = new ExtractStringWizard(ref, mProject); local
300 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
303 if (op.run(w.getDisplay().getActiveShell(), wizard.getDefaultPageTitle()) ==
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
treewizard.py 164 def __init__(self, tokenizer, wizard, adaptor):
166 self.wizard = wizard
257 treeNodeType = self.wizard.getTokenType(tokenName)
  /frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/wizard/
WizardExample2ndStepFragment.java 15 package android.support.v17.leanback.supportleanbackshowcase.app.wizard;
33 * Displays the second screen of the rental wizard which requires the user to confirm his purchase.
WizardNewPaymentStepFragment.java 15 package android.support.v17.leanback.supportleanbackshowcase.app.wizard;

Completed in 530 milliseconds

1 23 4 5