/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/ |
ResourcePreviewHelper.java | 5 * you may not use this file except in compliance with the License. 45 import java.io.File; 149 File file = new File(path); local 150 if (file.exists()) { 152 image = ImageIO.read(file);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/ |
OpenWizardAction.java | 5 * you may not use this file except in compliance with the License. 127 Object file = Util.getAdapter(input, fileClass); local 128 if (file != null) { 129 selectionToPass = new StructuredSelection(file);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/ |
ChooseConfigurationPage.java | 5 * you may not use this file except in compliance with the License. 103 String tooltip = "The folder where the file will be generated, relative to the project."; 263 // -- validate destination file doesn't exist 265 IFile file = mValues.getDestinationFile(); local 266 if (file != null && file.exists()) { 267 warning = "The destination file already exists";
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
TemplateTestPage.java | 5 * you may not use this file except in compliance with the License. 33 import java.io.File; 42 private File mTemplate; 95 mTemplate = new File(path); 103 if (!new File(mTemplate, TemplateHandler.TEMPLATE_XML).exists()) { 104 error = String.format("Not a template: missing template.xml file in %1$s ", 141 String file = dialog.open(); local 142 if (file != null) { 143 mLocation.setText(file); 150 File getLocation() [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/widgets/ |
ImageCanvas.java | 5 * you may not use this file except in compliance with the License. 41 import java.io.File; 235 public void exportImageTo(File file) { 236 if (mImage == null || file == null) { 244 imageLoader.save(file.getAbsolutePath(), SWT.IMAGE_PNG);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/ |
AaptParserTest.java | 5 * you may not use this file except in compliance with the License. 28 import java.io.File; 159 IFile file = getTestDataFile(project, name, destPath); local 161 // Make file paths absolute 163 String fileRelativePath = file.getProjectRelativePath().toPortableString(); 164 String filePath = osRoot + File.separator + fileRelativePath; 171 IMarker[] markers = file.findMarkers(AdtConstants.MARKER_AAPT_COMPILE, true, 178 markers = file.findMarkers(AdtConstants.MARKER_AAPT_COMPILE, true, 183 String fileContents = AdtPlugin.readFile(file); 184 int rangeBegin = getCaretOffset(file, expectCaretBegin) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/ |
AndroidXmlAutoEditStrategyTest.java | 5 * you may not use this file except in compliance with the License. 38 IFile file = getLayoutFile(getProject(), "edithandling.xml"); local 42 IEditorPart editor = IDE.openEditor(page, file);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ExtractIncludeRefactoringTest.java | 5 * you may not use this file except in compliance with the License. 138 IFile file = getLayoutFile(getProject(), basename); local 139 TestContext info = setupTestContext(file, basename); 152 IPath sourcePath = file.getProjectRelativePath();
|
ExtractStyleRefactoringTest.java | 5 * you may not use this file except in compliance with the License. 51 // Test extracting into a new style file 77 // -Modify- the existing styles.xml file 136 IFile file = getLayoutFile(getProject(), basename); local 137 TestContext info = setupTestContext(file, basename); 141 // Open the file such that ModelManager.getExistingModelForRead() in DomUtilities 146 IDE.openEditor(page, file); 151 parentStyle, expectedModifiedFileCount, file, refactoring); 160 IFile file = getLayoutFile(getProject(), basename); local 161 int beginOffset = getCaretOffset(file, beginCaretLocation) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
RenameResourceParticipantTest.java | 5 * you may not use this file except in compliance with the License. 122 // same as testRefactor3, but use @id rather than @+id even though @+id is in file 208 // Test refactoring initiated on a file rename 210 IFile file = project.getFile("res/layout/activity_main.xml"); local 213 file, 288 "ERROR: File-based resource names must start with a lowercase letter.\n" +
|
/system/core/adb/ |
adb_auth_host.c | 5 * you may not use this file except in compliance with the License. 174 static int generate_key(const char *file) 180 FILE *f = NULL; 183 D("generate_key '%s'\n", file); 196 f = fopen(file, "w"); 198 D("Failed to open '%s'\n", file); 210 if (!write_public_keyfile(rsa, file)) { 226 static int read_key(const char *file, struct listnode *list) 229 FILE *f; 231 D("read_key '%s'\n", file); 384 char *file; local [all...] |
/system/core/libnetutils/ |
dhcpmsg.h | 5 * you may not use this file except in compliance with the License. 55 char file[128]; /* asciiz boot file name */ member in struct:dhcp_msg
|
/system/core/libsparse/ |
backed_block.c | 5 * you may not use this file except in compliance with the License. 37 } file; member in union:backed_block::__anon60965 84 return bb->file.filename; 97 return bb->file.offset; 117 free(bb->file.filename); 224 if (a->file.filename != b->file.filename || 225 a->file.offset + a->len != b->file.offset) { 323 /* Queues a chunk of a file on disk to be written to the specified data blocks * [all...] |
/system/core/toolbox/grep/ |
grep.h | 88 struct file { struct 97 char *file; member in struct:str 158 /* file.c */ 159 void grep_close(struct file *f); 160 struct file *grep_open(const char *path); 161 char *grep_fgetln(struct file *f, size_t *len);
|
/system/extras/cpustats/ |
cpustats.c | 187 FILE *file; local 191 file = fopen(filename, "r"); 192 if (!file) die("Could not open %s\n", filename); 193 if (!fgets(line, MAX_BUF_SIZE, file)) die("Could not get %s contents\n", filename); 194 fclose(file); 204 die("Unexpected input in file %s (%s).\n", filename, line); 212 FILE *file; local 218 file = fopen(filename, "r") 234 FILE *file; local 263 FILE *file; local [all...] |
/prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.2.0/ |
lint-api-22.2.0.jar | |
/prebuilts/devtools/tools/lib/ |
lint-api.jar | |
/external/emma/lib/ |
emma_ant.jar | |
/prebuilts/gradle-plugin/com/android/tools/lint/lint/22.2.0/ |
lint-22.2.0.jar | |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
BitmapFactoryTest.java | 5 * you may not use this file except in compliance with the License. 37 import java.io.File; 259 RandomAccessFile file = new RandomAccessFile(path, "r"); local 260 FileDescriptor fd = file.getFD(); 264 file.seek(actualOffset); 265 assertEquals(file.getFilePointer(), actualOffset); 271 assertEquals(file.getFilePointer(), actualOffset); 277 file.seek(otherOffset); 278 assertEquals(file.getFilePointer(), otherOffset); 282 assertEquals(file.getFilePointer(), otherOffset) 468 File file = new File(path); local 488 File file = new File(dir, "test.jpg"); local [all...] |
BitmapRegionDecoderTest.java | 5 * you may not use this file except in compliance with the License. 36 import java.io.File; 45 private ArrayList<File> mFilesCreated = new ArrayList<File>( 102 for (File file : mFilesCreated) { 103 file.delete(); 372 File dir = getInstrumentation().getTargetContext().getFilesDir(); 374 File file = new File(dir, NAMES_TEMP_FILES[idx]) local 390 File file = new File(path); local [all...] |
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/ |
JarFileTest.java | 3 * contributor license agreements. See the NOTICE file distributed with 5 * The ASF licenses this file to You under the Apache License, Version 2.0 6 * (the "License"); you may not use this file except in compliance with 20 import java.io.File; 42 * The file contains the following entries: 66 private File resources; 68 private final String jarName = "hyts_patch.jar"; // a 'normal' jar file 88 * @tests java.util.jar.JarFile#JarFile(java.io.File) 92 File f = new File(resources, JAR1) 256 File file = Support_Resources.getExternalLocalFile(jarDirUrl local 314 File file = new File(Support_PlatformFile.getNewPlatformFile( local [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
PrintWriterTest.java | 3 * contributor license agreements. See the NOTICE file distributed with 5 * The ASF licenses this file to You under the Apache License, Version 2.0 6 * (the "License"); you may not use this file except in compliance with 23 import java.io.File; 142 * @tests java.io.PrintWriter#PrintWriter(java.io.File) 145 File file = File.createTempFile(getClass().getName(), null); local 147 PrintWriter writer = new PrintWriter(file); 150 file.delete() 158 File file = File.createTempFile(getClass().getName(), null); local 172 File file = File.createTempFile(getClass().getName(), null); local 185 File file = File.createTempFile(getClass().getName(), null); local [all...] |
/external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/io/ |
UnixFileTest.java | 3 * contributor license agreements. See the NOTICE file distributed with 5 * The ASF licenses this file to You under the Apache License, Version 2.0 6 * (the "License"); you may not use this file except in compliance with 21 import java.io.File; 29 * Please note that this case can only be passed on Linux due to some file 36 private File testFile; 38 private File testDir; 84 private static long getLinuxSpace(int index, File file) throws Exception { 86 String par = file.getAbsolutePath() 412 File file = new File("folder2"); local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant-jmf.jar | |