/external/antlr/antlr-3.4/runtime/Ruby/test/unit/ |
test-tree-wizard.rb | 5 require 'antlr3/tree/wizard' 17 lexer = Wizard::PatternLexer.new( '(' ) 25 lexer = Wizard::PatternLexer.new(')') 33 lexer = Wizard::PatternLexer.new('%') 41 lexer = Wizard::PatternLexer.new('.') 49 lexer = Wizard::PatternLexer.new(" \n \r \t ") 57 lexer = Wizard::PatternLexer.new('__whatever_1__') 65 lexer = Wizard::PatternLexer.new('[ \]bla\n]') 73 lexer = Wizard::PatternLexer.new("1") 89 @pattern_adaptor = Wizard::PatternAdaptor.new( Tokens.token_class [all...] |
/external/chromium/chrome/browser/chromeos/login/ |
wizard_screen.h | 22 // Interface that login wizard exposes to its screens. 25 // Returns top level view of the wizard. 38 // Interface that defines login wizard screens. 42 // Makes wizard screen visible. 44 // Makes wizard screen invisible.
|
wizard_in_process_browser_test.h | 21 // Base class for test related to login wizard and its screens. 22 // Instead of creating Chrome browser window it creates login wizard window 24 // right moment in time before wizard is created. 31 // browser is created but wizard is not shown yet.
|
screen_observer.h | 13 // Interface that handles notifications received from any of login wizard 17 // Each login screen or a view shown within login wizard view is itself a 20 // login wizard decides what is the next view to show. There must be an
|
mock_screen_observer.h | 16 // Interface that handles notifications received from any of login wizard
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
ExtractStringWizard.java | 23 * A wizard for ExtractString based on a simple dialog with one page. 33 * Create a wizard for ExtractString based on a simple dialog with one page. 35 * @param ref The instance of {@link ExtractStringRefactoring} to associate to the wizard. 36 * @param project The project where the wizard was invoked from (e.g. where the user selection
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/ |
OpenCreateAssetSetWizardAction.java | 26 /** An action for opening the Create Icon Set wizard */ 34 * @param project the initial project to associate with the wizard 49 * Returns the list of files created by the wizard. Must only be called 51 * null if the user cancels out of the wizard. 53 * @return a list of files created by the wizard, or null
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
NewProjectWizard.java | 27 import org.eclipse.jface.wizard.IWizardPage; 28 import org.eclipse.jface.wizard.Wizard; 36 * A "New Android Project" Wizard. 44 public class NewProjectWizard extends Wizard implements INewWizard { 54 /** Constructs a new wizard default project wizard */ 91 // Sample projects can be created when entering the new/existing wizard, or 92 // the sample wizard 147 // Done with wizard when creating from existing or creating test project [all...] |
NewSampleProjectWizard.java | 21 * A "New Sample Android Project" Wizard. 23 * This displays the new project wizard pre-configured for samples only. 27 * Creates a new wizard for creating a sample Android project
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRTreePatternParser.m | 38 Wizard:(ANTLRTreeWizard *)aWizard 41 return [[ANTLRTreePatternParser alloc] initWithTokenizer:aTokenizer Wizard:aWizard Adaptor:anAdaptor]; 48 //wizard = aWizard; 56 Wizard:(ANTLRTreeWizard *)aWizard 64 wizard = aWizard; 65 if ( wizard ) [wizard retain]; 78 if ( wizard ) [wizard release]; 179 int treeNodeType = [wizard getTokenType:tokenName] [all...] |
ANTLRTreePatternParser.h | 41 ANTLRTreeWizard *wizard; variable 47 Wizard:(ANTLRTreeWizard *)aWizard 51 Wizard:(ANTLRTreeWizard *)aWizard 61 @property (retain) ANTLRTreeWizard *wizard; variable
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/ |
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 { 67 // run ADT which is why the wizard was opened. No need to ask again. 99 // Read out wizard settings immediately; we will perform the actual work 100 // after the wizard window has been taken down and it's too late to read the 122 AdtPlugin.logAndPrintError(e, "ADT Welcome Wizard", "Installation failed"); 131 // The wizard always succeeds, even if installation fails or is aborted 143 AdtPlugin.logAndPrintError(null, "ADT Welcome Wizard", [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/ |
OpenWizardAction.java | 45 * Derived classes must provide the actual wizard to display. 51 * The wizard dialog width, extracted from {@link NewWizardShortcutAction} 56 * The wizard dialog height, extracted from {@link NewWizardShortcutAction} 60 /** The wizard that was created by {@link #run(IAction)}. */ 68 /** Returns the wizard that was created by {@link #run(IAction)}. */ 96 * Opens and display the Android New Project Wizard. 111 // and converts it to a workbench structured selection for the wizard, if possible. 135 // Create the wizard and initialize it with the selection 160 * Called by {@link #run(IAction)} to instantiate the actual wizard. 164 * @return A new wizard instance. Must not be null [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/ |
wizard.rb | 40 =begin rdoc ANTLR3::AST::Wizard 42 AST::Wizard is an extra utility class that allows quick creation of AST objects 52 for more background on the concept of a tree wizard. 56 # setting up and creating a tree wizard 59 wizard = ANTLR3::AST::Wizard.new(adaptor, token_names) 62 lone_node = wizard.create "VAR[x]" # => x 66 expression_node = wizard.create "(MINUS VAR NUMBER)" 68 statement_node = wizard.create "(EQ[=] VAR[x] (PLUS[+] NUMBER[1] NUMBER[2]))" 70 deep_node = wizard.create(<<-TREE [all...] |
/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
|
/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.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);
|