Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/binaryxml/
DBinaryXMLDescriber.java56 byte[] bytes = new byte[length]; in describe()
57 if (contents.read(bytes, 0, length) == length) { in describe()
58 ByteBuffer buf = ByteBuffer.wrap(bytes); in describe()
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/action/
DShareMockupAction.java54 ByteArrayOutputStream bytes = new ByteArrayOutputStream(); in launch() local
55 mockup.compress(Bitmap.CompressFormat.PNG, 100, bytes); in launch()
61 fo.write(bytes.toByteArray()); in launch()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
DCreateAssetSetWizard.java150 byte[] bytes = stream.toByteArray(); in performFinish()
151 InputStream is = new ByteArrayInputStream(bytes); in performFinish()
DConfigureAssetSetPage.java1218 byte[] bytes = stream.toByteArray(); in generateIcons()
1219 InputStream is = new ByteArrayInputStream(bytes); in generateIcons()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
DActivityPage.java196 byte[] bytes = Files.toByteArray(file); in updatePreview()
197 ByteArrayInputStream input = new ByteArrayInputStream(bytes); in updatePreview()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/
DRefactoringTestBase.java170 byte[] bytes = ByteStreams.toByteArray(file.getContents()); in describe()
171 String before = new String(bytes, Charsets.UTF_8); in describe()