/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
sample1a-expected-assistant2.txt | 2 Wrap in Container : Initiates the "Wrap in Container" refactoring 3 Remove Container : Initiates the "Remove Container" refactoring 4 Change Widget Type : Initiates the "Change Widget Type" refactoring 5 Change Layout : Initiates the "Change Layout" refactoring 6 Extract as Include : Initiates the "Extract as Include" refactoring 7 Extract Style : Initiates the "Extract Style" refactoring
|
sample1a-expected-assistant3.txt | 2 Wrap in Container : Initiates the "Wrap in Container" refactoring 3 Remove Container : Initiates the "Remove Container" refactoring 4 Change Widget Type : Initiates the "Change Widget Type" refactoring 5 Change Layout : Initiates the "Change Layout" refactoring 6 Extract as Include : Initiates the "Extract as Include" refactoring 7 Extract Style : Initiates the "Extract Style" refactoring
|
sample1a-expected-assistant1.txt | 2 Extract Android String : Initiates the "Extract Android String" refactoring 3 Extract Style : Initiates the "Extract Style" refactoring
|
sample1a-expected-assistant4.txt | 2 Extract Style : Initiates the "Extract Style" refactoring
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/ |
ApplicationPackageNameRefactoringWizard.java | 19 import org.eclipse.ltk.core.refactoring.Refactoring; 20 import org.eclipse.ltk.ui.refactoring.RefactoringWizard; 27 public ApplicationPackageNameRefactoringWizard(Refactoring refactoring) { 28 super(refactoring, 0);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
ExtractStringDescriptor.java | 20 import org.eclipse.ltk.core.refactoring.Refactoring; 21 import org.eclipse.ltk.core.refactoring.RefactoringDescriptor; 22 import org.eclipse.ltk.core.refactoring.RefactoringStatus; 33 "com.android.ide.eclipse.adt.refactoring.extract.string"; //$NON-NLS-1$ 50 * Creates a new refactoring instance for this refactoring descriptor based on 51 * an argument map. The argument map is created by the refactoring itself in 54 * This is apparently used to replay a refactoring. 61 public Refactoring createRefactoring(RefactoringStatus status) throws CoreException [all...] |
ExtractStringContribution.java | 19 import org.eclipse.ltk.core.refactoring.RefactoringContribution; 20 import org.eclipse.ltk.core.refactoring.RefactoringDescriptor; 30 * @see org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.util.Map, int)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
UseCompoundDrawableRefactoringTest.java | 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring; 18 import static com.android.ide.eclipse.adt.internal.editors.layout.refactoring.UseCompoundDrawableRefactoring.combine; 22 import org.eclipse.ltk.core.refactoring.Change; 48 checkRefactoring("refactoring/usecompound/compound1.xml", "@+id/layout1"); 53 checkRefactoring("refactoring/usecompound/compound2.xml", "@+id/layout2"); 58 checkRefactoring("refactoring/usecompound/compound3.xml", "@+id/layout3"); 63 checkRefactoring("refactoring/usecompound/compound4.xml", "@+id/layout4"); 69 checkRefactoring("refactoring/usecompound/compound_all.xml", "@+id/layout2"); 75 checkRefactoring("refactoring/usecompound/compound_all.xml", "@+id/layout3"); 80 checkRefactoring("refactoring/usecompound/compound5.xml", "@+id/layout") 99 UseCompoundDrawableRefactoring refactoring = new UseCompoundDrawableRefactoring( local [all...] |
UnwrapRefactoringTest.java | 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring; 20 import org.eclipse.ltk.core.refactoring.Change; 21 import org.eclipse.ltk.core.refactoring.RefactoringStatus; 50 UnwrapRefactoring refactoring = new UnwrapRefactoring(selectedElements, local 53 RefactoringStatus status = refactoring.checkInitialConditions(new NullProgressMonitor()); 55 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
|
WrapInRefactoringTest.java | 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring; 23 import org.eclipse.ltk.core.refactoring.Change; 53 WrapInRefactoring refactoring = new WrapInRefactoring(selectedElements, local 55 refactoring.setType(fqcn); 56 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
|
ExtractStyleRefactoringTest.java | 17 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring; 26 import org.eclipse.ltk.core.refactoring.Change; 27 import org.eclipse.ltk.core.refactoring.TextFileChange; 89 // This test fails for some reason - not in the refactoring (checked manually) 148 ExtractStyleRefactoring refactoring = new ExtractStyleRefactoring(selectedElements, local 151 parentStyle, expectedModifiedFileCount, file, refactoring); 175 ExtractStyleRefactoring refactoring = new ExtractStyleRefactoring(file, local 178 parentStyle, expectedModifiedFileCount, file, refactoring); 185 ExtractStyleRefactoring refactoring) throws Exception { 186 refactoring.setStyleName(newStyleName) [all...] |
ChangeLayoutRefactoringTest.java | 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring; 26 import org.eclipse.ltk.core.refactoring.Change; 119 ChangeLayoutRefactoring refactoring = new ChangeLayoutRefactoring(selectedElements, local 121 refactoring.setFlatten(flatten); 122 refactoring.setType(newLayoutType); 124 refactoring.setInitializedAttributes(initialAttributes); 126 refactoring.setRootView(rootView); 128 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
|
ChangeViewRefactoringTest.java | 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring; 22 import org.eclipse.ltk.core.refactoring.Change; 52 ChangeViewRefactoring refactoring = new ChangeViewRefactoring(selectedElements, local 54 refactoring.setType(newType); 56 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
VisualRefactoringWizard.java | 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring; 20 import org.eclipse.ltk.core.refactoring.Refactoring; 21 import org.eclipse.ltk.ui.refactoring.RefactoringWizard; 22 import org.eclipse.ltk.ui.refactoring.UserInputWizardPage; 31 public VisualRefactoringWizard(Refactoring refactoring, LayoutEditorDelegate editor) { 32 super(refactoring, DIALOG_BASED_USER_INTERFACE | PREVIEW_EXPAND_FIRST_NODE);
|
ChangeLayoutContribution.java | 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring; 18 import org.eclipse.ltk.core.refactoring.RefactoringContribution; 19 import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
|
ChangeViewContribution.java | 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring; 18 import org.eclipse.ltk.core.refactoring.RefactoringContribution; 19 import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
|
ExtractIncludeContribution.java | 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring; 18 import org.eclipse.ltk.core.refactoring.RefactoringContribution; 19 import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
|
ExtractStyleContribution.java | 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring; 18 import org.eclipse.ltk.core.refactoring.RefactoringContribution; 19 import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
|
UnwrapContribution.java | 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring; 18 import org.eclipse.ltk.core.refactoring.RefactoringContribution; 19 import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
|
WrapInContribution.java | 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring; 18 import org.eclipse.ltk.core.refactoring.RefactoringContribution; 19 import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
|
ChangeLayoutAction.java | 17 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring; 22 import org.eclipse.ltk.ui.refactoring.RefactoringWizard; 23 import org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation;
|
/external/clang/lib/Tooling/ |
CMakeLists.txt | 8 Refactoring.cpp
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
TemplatePreviewPage.java | 18 import org.eclipse.ltk.core.refactoring.Change; 19 import org.eclipse.ltk.core.refactoring.CompositeChange; 20 import org.eclipse.ltk.internal.ui.refactoring.PreviewWizardPage; 24 @SuppressWarnings("restriction") // Refactoring UI
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
RemoveUselessViewFix.java | 20 import com.android.ide.eclipse.adt.internal.editors.layout.refactoring.UnwrapRefactoring; 28 import org.eclipse.ltk.ui.refactoring.RefactoringWizard; 29 import org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation; 65 // Invoke refactoring 73 UnwrapRefactoring refactoring = local 75 RefactoringWizard wizard = refactoring.createWizard();
|
UseCompoundDrawableDetectorFix.java | 22 import com.android.ide.eclipse.adt.internal.editors.layout.refactoring.UseCompoundDrawableRefactoring; 30 import org.eclipse.ltk.ui.refactoring.RefactoringWizard; 31 import org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation; 74 // Invoke refactoring 82 UseCompoundDrawableRefactoring refactoring = local 84 RefactoringWizard wizard = refactoring.createWizard();
|