HomeSort by relevance Sort by last modified time
    Searched defs:wizard (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/autotest/frontend/client/test/autotest/moblab/wizard/
ConfigWizardTest.java 1 package autotest.moblab.wizard;
4 import autotest.moblab.wizard.WizardCard;
9 ConfigWizard wizard = new ConfigWizard(); local
11 wizard.setCards(cards);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTreePatternParser.h 41 ANTLRTreeWizard *wizard; variable
47 Wizard:(ANTLRTreeWizard *)aWizard
51 Wizard:(ANTLRTreeWizard *)aWizard
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTreePatternParser.h 41 ANTLRTreeWizard *wizard; variable
47 Wizard:(ANTLRTreeWizard *)aWizard
51 Wizard:(ANTLRTreeWizard *)aWizard
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTreePatternParser.h 41 ANTLRTreeWizard *wizard; variable
47 Wizard:(ANTLRTreeWizard *)aWizard
51 Wizard:(ANTLRTreeWizard *)aWizard
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreePatternParser.h 41 ANTLRTreeWizard *wizard; variable
47 Wizard:(ANTLRTreeWizard *)aWizard
51 Wizard:(ANTLRTreeWizard *)aWizard
61 @property (retain) ANTLRTreeWizard *wizard; variable
  /external/autotest/frontend/client/src/autotest/moblab/wizard/
ConfigViewMode.java 1 package autotest.moblab.wizard;
9 * A wizard view mode widget contains a list card. Each card show a title and
14 private ConfigWizard wizard; field in class:ConfigViewMode
17 public ConfigViewMode(ConfigWizard wizard) {
18 this.wizard = wizard;
23 pnlContent.setStyleName("wizard-view-panel");
25 WizardCard[] cards = wizard.getCards();
43 WizardCard[] cards = wizard.getCards();
  /external/autotest/frontend/client/src/autotest/moblab/
ConfigWizardView.java 6 import autotest.moblab.wizard.CloudStorageCard;
7 import autotest.moblab.wizard.ConfigWizard;
8 import autotest.moblab.wizard.NetworkInfoCard;
9 import autotest.moblab.wizard.WifiCard;
10 import autotest.moblab.wizard.WizardCard;
14 * A Moblab configuration tab with a wizard widget.
17 private ConfigWizard wizard; field in class:ConfigWizardView
21 wizard = new ConfigWizard();
27 wizard.setCards(cards);
37 return wizard;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutAction.java 34 RefactoringWizard wizard = new ChangeLayoutWizard(ref, mDelegate); local
35 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
37 op.run(mWindow.getShell(), wizard.getDefaultPageTitle());
ChangeViewAction.java 34 RefactoringWizard wizard = new ChangeViewWizard(ref, mDelegate); local
35 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
37 op.run(mWindow.getShell(), wizard.getDefaultPageTitle());
ExtractIncludeAction.java 34 RefactoringWizard wizard = new ExtractIncludeWizard(ref, mDelegate); local
35 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
37 op.run(mWindow.getShell(), wizard.getDefaultPageTitle());
ExtractStyleAction.java 34 RefactoringWizard wizard = new ExtractStyleWizard(ref, mDelegate); local
35 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
37 op.run(mWindow.getShell(), wizard.getDefaultPageTitle());
UnwrapAction.java 34 RefactoringWizard wizard = new UnwrapWizard(ref, mDelegate); local
35 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
37 op.run(mWindow.getShell(), wizard.getDefaultPageTitle());
UseCompoundDrawableAction.java 34 RefactoringWizard wizard = new UseCompoundDrawableWizard(ref, mDelegate); local
35 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
37 op.run(mWindow.getShell(), wizard.getDefaultPageTitle());
WrapInAction.java 34 RefactoringWizard wizard = new WrapInWizard(ref, mDelegate); local
35 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
37 op.run(mWindow.getShell(), wizard.getDefaultPageTitle());
  /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/wizards/actions/
ExportWizardAction.java 30 import org.eclipse.jface.wizard.WizardDialog;
78 // call the export wizard on the current selection.
79 ExportWizard wizard = new ExportWizard(); local
80 wizard.init(mWorkbench, selection);
82 mWorkbench.getDisplay().getActiveShell(), wizard);
  /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 );
  /frameworks/base/cmds/statsd/tests/metrics/
EventMetricProducer_test.cpp 49 sp<MockConditionWizard> wizard = new NaggyMock<MockConditionWizard>(); local
51 EventMetricProducer eventProducer(kConfigKey, metric, -1 /*-1 meaning no condition*/, wizard,
73 sp<MockConditionWizard> wizard = new NaggyMock<MockConditionWizard>(); local
75 EventMetricProducer eventProducer(kConfigKey, metric, 1, wizard, bucketStartTimeNs);
115 sp<MockConditionWizard> wizard = new NaggyMock<MockConditionWizard>(); local
116 EXPECT_CALL(*wizard, query(_, key1, _, _, _, _)).WillOnce(Return(ConditionState::kFalse));
118 EXPECT_CALL(*wizard, query(_, key2, _, _, _, _)).WillOnce(Return(ConditionState::kTrue));
120 EventMetricProducer eventProducer(kConfigKey, metric, 1, wizard, bucketStartTimeNs);
DurationMetricProducer_test.cpp 43 sp<MockConditionWizard> wizard = new NaggyMock<MockConditionWizard>(); local
61 3 /* stop_all index */, false /*nesting*/, wizard, dimensions, bucketStartTimeNs);
81 sp<MockConditionWizard> wizard = new NaggyMock<MockConditionWizard>(); local
103 3 /* stop_all index */, false /*nesting*/, wizard, dimensions, bucketStartTimeNs);
150 sp<MockConditionWizard> wizard = new NaggyMock<MockConditionWizard>(); local
154 3 /* stop_all index */, false /*nesting*/, wizard, dimensions, bucketStartTimeNs);
205 sp<MockConditionWizard> wizard = new NaggyMock<MockConditionWizard>(); local
209 3 /* stop_all index */, false /*nesting*/, wizard, dimensions, bucketStartTimeNs);
260 sp<MockConditionWizard> wizard = new NaggyMock<MockConditionWizard>(); local
264 3 /* stop_all index */, false /*nesting*/, wizard, dimensions, bucketStartTimeNs)
299 sp<MockConditionWizard> wizard = new NaggyMock<MockConditionWizard>(); local
347 sp<MockConditionWizard> wizard = new NaggyMock<MockConditionWizard>(); local
    [all...]
  /frameworks/support/leanback/src/androidTest/java/androidx/leanback/app/wizard/
GuidedStepAttributesTestActivity.java 15 package androidx.leanback.app.wizard;
  /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());
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/actions/
AddNativeAction.java 26 import org.eclipse.jface.wizard.WizardDialog;
51 AddNativeWizard wizard = new AddNativeWizard(project, mPart.getSite() local
53 WizardDialog dialog = new WizardDialog(mPart.getSite().getShell(), wizard);

Completed in 499 milliseconds

1 2 3