HomeSort by relevance Sort by last modified time
    Searched full:refactoring (Results 1 - 25 of 358) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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 Rename Android Resource : Initiates the "Rename Android Resource" refactoring
3 Extract Style : Initiates the "Extract Style" refactoring
  /external/chromium_org/chrome/browser/favicon/
OWNERS 3 # Temporary owner, for refactoring changes only.
  /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);
  /external/chromium_org/base/prefs/
OWNERS 6 # For refactoring changes
  /external/chromium_org/chrome/browser/autofill/
OWNERS 4 # Temporary owner, for refactoring changes only.
  /external/chromium_org/chrome/browser/bookmarks/
OWNERS 4 # Temporary owner, for refactoring changes only.
  /external/chromium_org/components/autofill/
OWNERS 7 # Temporary owner, for refactoring changes only.
  /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;
24 import org.eclipse.ltk.core.refactoring.Change;
25 import org.eclipse.ltk.core.refactoring.CompositeChange;
51 checkRefactoring("refactoring/usecompound/compound1.xml", "@+id/layout1");
56 checkRefactoring("refactoring/usecompound/compound2.xml", "@+id/layout2");
61 checkRefactoring("refactoring/usecompound/compound3.xml", "@+id/layout3");
66 checkRefactoring("refactoring/usecompound/compound4.xml", "@+id/layout4");
72 checkRefactoring("refactoring/usecompound/compound_all.xml", "@+id/layout2");
78 checkRefactoring("refactoring/usecompound/compound_all.xml", "@+id/layout3")
103 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;
124 ChangeLayoutRefactoring refactoring = new ChangeLayoutRefactoring(selectedElements, local
126 refactoring.setFlatten(flatten);
127 refactoring.setType(newLayoutType);
129 refactoring.setInitializedAttributes(initialAttributes);
131 refactoring.setRootView(rootView);
133 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceWizard.java 28 import org.eclipse.jdt.internal.ui.refactoring.reorg.RenameRefactoringWizard;
29 import org.eclipse.jdt.ui.refactoring.RefactoringSaveHelper;
31 import org.eclipse.ltk.core.refactoring.RefactoringStatus;
32 import org.eclipse.ltk.core.refactoring.participants.RenameRefactoring;
33 import org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation;
37 * Rename refactoring wizard for Android resources such as {@code @id/foo}
39 @SuppressWarnings("restriction") // JDT refactoring UI
47 * @param refactoring the refactoring
52 @NonNull RenameRefactoring refactoring,
66 RenameRefactoring refactoring = (RenameRefactoring) getRefactoring(); local
93 RenameRefactoring refactoring = new RenameRefactoring(processor); local
    [all...]
  /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...]
  /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;
  /external/chromium_org/chrome/browser/ui/autofill/
OWNERS 8 # Temporary owner, for refactoring changes only.
  /external/chromium_org/ui/webui/
OWNERS 11 # temporarily for refactoring. http://crbug.com/169170
  /external/clang/lib/Tooling/
CMakeLists.txt 9 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

Completed in 422 milliseconds

1 2 3 4 5 6 7 8 91011>>