Home
last modified time | relevance | path

Searched refs:addFile (Results 1 – 6 of 6) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
DPostCompilerBuilder.java764 public void addFile(IFile file, IFolder rootFolder) throws ApkCreationException { in addFile() method in PostCompilerBuilder.JarBuilder
783 addFile(file.getContents(), file.getLocalTimeStamp(), path.toString()); in addFile()
792 public void addFile(File file, String archivePath) throws ApkCreationException, in addFile() method in PostCompilerBuilder.JarBuilder
797 addFile(inputStream, lastModified, archivePath); in addFile()
805 private void addFile(InputStream content, long lastModified, String archivePath) in addFile() method in PostCompilerBuilder.JarBuilder
905 builder.addFile(file, rootFolder); in writeClassFilesIntoJar()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DExtractStyleRefactoring.java347 TextFileChange addFile = new TextFileChange("Create new separate style declaration", file); in computeChanges() local
348 addFile.setTextType(EXT_XML); in computeChanges()
349 changes.add(addFile); in computeChanges()
351 addFile.setEdit(new InsertEdit(insertAtIndex, styleString)); in computeChanges()
DExtractIncludeRefactoring.java327 TextFileChange addFile = new TextFileChange("Create new separate layout", file); in computeChanges() local
328 addFile.setTextType(EXT_XML); in computeChanges()
329 changes.add(addFile); in computeChanges()
337 addFile.setEdit(new InsertEdit(0, newFile)); in computeChanges()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
DNewProjectCreator.java1161 addFile(file, AdtPlugin.readEmbeddedFile(TEMPLATES_DIRECTORY + ICON_MDPI), monitor); in addIcon()
1171addFile(file, AdtPlugin.readEmbeddedFile(TEMPLATES_DIRECTORY + ICON_XHDPI), monitor); in addIcon()
1178 addFile(file, AdtPlugin.readEmbeddedFile(TEMPLATES_DIRECTORY + ICON_HDPI), monitor); in addIcon()
1185 addFile(file, AdtPlugin.readEmbeddedFile(TEMPLATES_DIRECTORY + ICON_MDPI), monitor); in addIcon()
1192 addFile(file, AdtPlugin.readEmbeddedFile(TEMPLATES_DIRECTORY + ICON_LDPI), monitor); in addIcon()
1204 private void addFile(IFile dest, byte[] source, IProgressMonitor monitor) throws CoreException { in addFile() method
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/resources/manager/
DConfigMatchTest.java294 resFolder.addFile(new SingleResourceFile(new IFileWrapper(file), resFolder)); in addFolder()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
DTemplateHandler.java1143 TextFileChange addFile = createNewFileChange(file); in copy() local
1144 addFile.setEdit(new InsertEdit(0, newFile)); in copy()
1145 mTextChanges.add(addFile); in copy()