/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
D | RefactoringTestBase.java | 84 Change change = refactoring.createChange(new NullProgressMonitor()); in checkRefactoring() local 85 assertNotNull(change); in checkRefactoring() 86 String explanation = "CHANGES:\n-------\n" + describe(change); in checkRefactoring() 120 public static String describe(Change change) throws Exception { in describe() argument 122 describe(sb, change, 0); in describe() 135 protected static void describe(StringBuilder sb, Change change, int indent) throws Exception { in describe() argument 136 if (change instanceof CompositeChange in describe() 137 && ((CompositeChange) change).isSynthetic()) { in describe() 140 String changeName = change.getName(); in describe() 149 if (change.isEnabled()) { in describe() [all …]
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
D | RenameResourceParticipant.java | 419 CompositeChange change, in addResourceFileChanges() argument 431 addResourceXmlChanges(manifest, change, null); in addResourceFileChanges() 452 addResourceXmlChanges(file, change, folderType); in addResourceFileChanges() 464 change.add(new RenameResourceChange(path, newFile)); in addResourceFileChanges() 515 TextFileChange change = new TextFileChange(file.getName(), file); in addResourceXmlChanges() local 516 change.setTextType(EXT_XML); in addResourceXmlChanges() 517 change.setEdit(rootEdit); in addResourceXmlChanges() 518 changes.add(change); in addResourceXmlChanges() 725 TextChange change = getTextChange(rFile); in disableExistingResourceFileChange() local 726 if (change != null) { in disableExistingResourceFileChange() [all …]
|
D | AndroidTypeMoveParticipant.java | 247 TextFileChange change = new TextFileChange(file.getName(), file); in addXmlFileChanges() local 248 change.setTextType(EXT_XML); in addXmlFileChanges() 249 change.setEdit(rootEdit); in addXmlFileChanges() 250 changes.add(change); in addXmlFileChanges()
|
D | AndroidTypeRenameParticipant.java | 388 TextFileChange change = new TextFileChange(file.getName(), file); in addXmlFileChanges() local 389 change.setTextType(EXT_XML); in addXmlFileChanges() 390 change.setEdit(rootEdit); in addXmlFileChanges() 391 changes.add(change); in addXmlFileChanges()
|
D | AndroidPackageRenameParticipant.java | 407 TextFileChange change = new TextFileChange(file.getName(), file); 408 change.setTextType(EXT_XML); 409 change.setEdit(rootEdit); 410 changes.add(change);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
D | RefactoringTest.java | 115 for (Change change : changes) { in checkEdits() 116 if (change instanceof TextFileChange) { in checkEdits() 117 TextFileChange tf = (TextFileChange) change; in checkEdits() 151 for (Change change : changes) { in checkEdits() 152 if (change instanceof TextFileChange) { in checkEdits() 153 TextFileChange tf = (TextFileChange) change; in checkEdits() 192 assertNull(change.getAffectedObjects()); in checkEdits()
|
D | ExtractIncludeRefactoringTest.java | 163 for (Change change : changes) { in checkRefactoring() 164 if (change instanceof TextFileChange) { in checkRefactoring()
|
D | ExtractStyleRefactoringTest.java | 224 for (Change change : changes) { in checkRefactoring() 225 if (change instanceof TextFileChange) { in checkRefactoring()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
D | UnwrapRefactoring.java | 222 TextFileChange change = new TextFileChange(file.getName(), file); in computeChanges() local 223 change.setEdit(rootEdit); in computeChanges() 224 change.setTextType(EXT_XML); in computeChanges() 225 changes.add(change); in computeChanges()
|
D | ChangeViewRefactoring.java | 164 TextFileChange change = new TextFileChange(file.getName(), file); in computeChanges() local 166 change.setEdit(rootEdit); in computeChanges() 167 change.setTextType(EXT_XML); in computeChanges() 168 changes.add(change); in computeChanges()
|
D | WrapInRefactoring.java | 209 TextFileChange change = new TextFileChange(file.getName(), file); in computeChanges() local 211 change.setTextType(EXT_XML); in computeChanges() 404 change.setEdit(rootEdit); in computeChanges() 405 changes.add(change); in computeChanges()
|
D | UseCompoundDrawableRefactoring.java | 210 TextFileChange change = new TextFileChange(file.getName(), file); in computeChanges() local 212 change.setTextType(EXT_XML); in computeChanges() 371 change.setEdit(rootEdit); in computeChanges() 372 changes.add(change); in computeChanges()
|
D | ExtractStyleRefactoring.java | 379 TextFileChange change = new TextFileChange(sourceFile.getName(), sourceFile); in computeChanges() local 380 change.setTextType(EXT_XML); in computeChanges() 381 changes.add(change); in computeChanges() 390 change.setEdit(rootEdit); in computeChanges()
|
D | ChangeLayoutRefactoring.java | 230 TextFileChange change = new TextFileChange(file.getName(), file); in computeChanges() local 232 change.setTextType(EXT_XML); in computeChanges() 233 changes.add(change); in computeChanges() 328 change.setEdit(rootEdit); in computeChanges()
|
D | ExtractIncludeRefactoring.java | 347 TextFileChange change = new TextFileChange(sourceFile.getName(), sourceFile); in handleIncludingFile() local 349 change.setTextType(EXT_XML); in handleIncludingFile() 350 changes.add(change); in handleIncludingFile() 393 change.setEdit(rootEdit); in handleIncludingFile()
|
/sdk/ |
D | README.txt | 5 If you need to view/change the source and lack these folders, you can bring 17 1- I don't build full SDKs but I want to change tool X: 20 Let's say as an example you want to change lint. 57 make a change in both sdklib and sdkuilib. Here are the steps: 73 2- How do I change some tools sources and build a new SDK using these?
|
/sdk/hierarchyviewer/ |
D | README.txt | 2 The sources are left here just for reference. Please do not change them.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
D | TemplateHandler.java | 796 TextFileChange change = new TextFileChange("Merge " + fileName, to); in merge() local 799 change.setEdit(rootEdit); in merge() 800 change.setTextType(SdkConstants.EXT_XML); in merge() 801 mMergeChanges.add(change); in merge() 978 TextFileChange change = createNewFileChange(targetFile); in instantiate() local 981 change.setEdit(rootEdit); in instantiate() 982 mTextChanges.add(change); in instantiate() 1039 TextFileChange change = new TextFileChange(message, targetFile) { in createNewFileChange() local 1062 change.setTextType(fileName.substring(fileName.lastIndexOf('.') + 1)); in createNewFileChange() 1063 return change; in createNewFileChange() [all …]
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
D | ExtractStringRefactoring.java | 900 Change change = createXmlChanges((IFile) targetXml, mXmlStringId, mXmlStringValue, in checkFinalConditions() local 902 if (change != null) { in checkFinalConditions() 903 mChanges.add(change); in checkFinalConditions() 1799 TextFileChange change = new TextFileChange(getName(), (IFile) unit.getResource()); 1800 change.setTextType("java"); //$NON-NLS-1$ 1849 change.setEdit(edit); 1854 TextEditChangeGroup group = new TextEditChangeGroup(change, editGroup); 1858 change.addTextEditChangeGroup(group); 1861 changes.add(change); 1894 CompositeChange change = new CompositeChange( [all …]
|
/sdk/files/ |
D | post_tools_install.bat | 26 rem Grab current directory before we change it
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/ |
D | ApplicationPackageNameRefactoring.java | 424 CompositeChange change = new CompositeChange("Refactoring Application package name", in getChange() local 426 change.markAsSynthetic(); in getChange() 427 return change; in getChange()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
D | build_messages.properties | 30 Checking_Package_Change=Checking Java package value did not change...
|
/sdk/docs/ |
D | Notes_on_WST_StructuredDocument.txt | 26 meaning they _might_ change later.
|
D | howto_build_SDK.txt | 181 Instead you just change directories to your git repository and invoke the
|
/sdk/eclipse/ |
D | changes.txt | 63 configuration change. 338 context menu items on text fields to change the focus. 428 - Support for true debug build. No need to change the value of 644 - You can now change the font of the logcat view. Also indentation is 664 console. it allows you to change the state of the network and gsm 856 (and its javadoc path) in case you change the sdk location.
|