HomeSort by relevance Sort by last modified time
    Searched defs:file (Results 976 - 1000 of 2724) sorted by null

<<31323334353637383940>>

  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
aether-connector-wagon-0.9.0.M2.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PreviewIconFactory.java 5 * you may not use this file except in compliance with the License.
60 import java.io.File;
80 private File mImageDir;
103 File imageDir = getImageDir(false);
105 File[] files = imageDir.listFiles();
106 for (File file : files) {
107 file.delete();
123 File imageDir = getImageDir(false);
127 File file = new File(imageDir, getFileName(desc)) local
324 File file = new File(imageDir, fileName); local
560 File file = new File(imageDir, PREVIEW_INFO_FILE); local
603 File file = new File(imageDir, PREVIEW_INFO_FILE); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
LibraryClasspathContainerInitializer.java 5 * you may not use this file except in compliance with the License.
52 import java.io.File;
172 Set<File> jarFiles = new HashSet<File>();
202 Set<File> jarFiles) {
214 List<File> sanitizedList = sanitizer.sanitize(jarFiles);
216 for (File jarFile : sanitizedList) {
234 File jarProperties = new File(jarPath + DOT_PROPERTIES);
243 File srcPath = getFile(jarFile, value)
448 File file = new File(value); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
AddTranslationDialog.java 5 * you may not use this file except in compliance with the License.
374 /** Actually create the new translation file and write it to disk */
394 IFile file = mProject.getFile(mTarget); local
397 IContainer parent = file.getParent();
400 file.create(source, true, new NullProgressMonitor());
401 AdtPlugin.openFile(file, null, true /*showEditorTab*/);
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/23.1.3/
lint-api-23.1.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/23.1.4/
lint-api-23.1.4.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/23.2.0/
lint-api-23.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/23.2.1/
lint-api-23.2.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/23.2.2/
lint-api-23.2.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/23.2.4/
lint-api-23.2.4.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/23.2.5/
lint-api-23.2.5.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/23.2.8/
lint-api-23.2.8.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/24.0.0/
lint-api-24.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/24.0.1/
lint-api-24.0.1.jar 
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/backup/
BackupTestActivity.java 5 * you may not use this file except in compliance with the License.
44 import java.io.File;
72 private static final String TEST_FILE_1 = "test-file-1";
73 private static final String TEST_FILE_2 = "test-file-2";
156 scanner = new Scanner(new File(getFilesDir(), fileName));
162 Log.e(TAG, "Couldn't find test file but this may be fine...", e);
215 File file = new File(getFilesDir(), fileName); local
216 PrintWriter writer = new PrintWriter(file);
    [all...]
  /cts/suite/cts/deviceTests/filesystemperf/src/com/android/cts/filesystemperf/
FileUtil.java 5 * you may not use this file except in compliance with the License.
20 import java.io.File;
68 * create a new file under the given dirName.
74 public static File createNewFile(Context context, String dirName) {
75 File topDir = new File(context.getFilesDir(), dirName);
96 return new File(topDir, newFileName);
106 public static File[] createNewFiles(Context context, String dirName, int count) {
107 File[] files = new File[count]
143 File file = createNewFile(context, dirName); local
272 File file = FileUtil.createNewFilledFile(context, local
327 File file = FileUtil.createNewFilledFile(context, local
381 File file = FileUtil.createNewFilledFile(context, local
    [all...]
  /external/boringssl/src/crypto/err/
err.c 192 static uint32_t get_error_values(int inc, int top, const char **file, int *line,
215 if (file != NULL && line != NULL) {
216 if (error->file == NULL) {
217 *file = "NA";
220 *file = error->file;
265 uint32_t ERR_get_error_line(const char **file, int *line) {
266 return get_error_values(1, 0, file, line, NULL, NULL);
269 uint32_t ERR_get_error_line_data(const char **file, int *line,
271 return get_error_values(1, 0, file, line, data, flags)
593 const char *file, *data; local
    [all...]
  /external/clang/lib/ARCMigrate/
Transforms.cpp 5 // This file is distributed under the University of Illinois Open Source
149 // Try to load the file buffer.
151 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp); local
155 const char *tokenBegin = file.data() + locInfo.second;
160 file.begin(), tokenBegin, file.end());
399 // Try to load the file buffer.
401 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp); local
405 const char *tokenBegin = file.data() + locInfo.second;
410 file.begin(), tokenBegin, file.end())
482 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp); local
    [all...]
  /external/cmockery/cmockery_0_1_2/src/google/
cmockery.h 5 * you may not use this file except in compliance with the License.
20 * this header file.
306 const char* file; member in struct:SourceLocation
323 void* _mock(const char * const function, const char* const file,
328 const char* const file, const int line,
334 const char* const file, const int line, const void *values[],
338 const char* const file, const int line, const void *values[],
343 const char* const file, const int line,
347 const char* const file, const int line,
351 const char* const file, const int line, const void* const value
    [all...]
  /external/dnsmasq/src/
tftp.c 23 static ssize_t tftp_err(int err, char *packet, char *mess, char *file);
24 static ssize_t tftp_err_oops(char *packet, char *file);
159 transfer->file = NULL;
265 /* check permissions and open file */
266 if ((transfer->file = check_tftp_fileperm(&len)))
291 struct tftp_file *file; local
305 *len = tftp_err(ERR_FNF, packet, _("file %s not found"), namebuff);
314 /* stat the file descriptor to avoid stat->open races */
328 /* If we're doing many tranfers from the same file, only
329 open it once this saves lots of file descriptors
    [all...]
  /external/e2fsprogs/debugfs/
logdump.c 2 * logdump.c --- dump the contents of the journal out to a file
8 * This file may be redistributed under the terms of the GNU Public
50 ext2_file_t file; member in struct:journal_source
53 static void dump_journal(char *, FILE *, struct journal_source *);
55 static void dump_descriptor_block(FILE *, struct journal_source *,
59 static void dump_revoke_block(FILE *, char *, journal_superblock_t *,
62 static void dump_metadata_block(FILE *, struct journal_source *,
67 static void do_hexdump (FILE *, char *, int);
79 FILE *out_file;
94 journal_source.file = 0
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-apache-resolver.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
ComponentResults.java 17 import java.io.File;
265 * Read local file contents and populate the results model with the collected
268 String readLocalFile(File dir, List scenarios) throws FileNotFoundException {
270 File dataFile = new File(dir, getName()+".dat"); //$NON-NLS-1$
274 // Read local file info
288 // this can happen if scenario pattern does not cover all those stored in local data file
303 println(" => "+size+" scenarios data were read from file "+dataFile); //$NON-NLS-1$ //$NON-NLS-2$
324 void updateBuild(String buildName, List scenarios, boolean force, File dataDir, SubMonitor subMonitor, PerformanceResults.RemainingTimeGuess timeGuess) {
395 * Write the component results data to the file '<component name>.dat' in the given directory
414 File file; local
    [all...]
  /external/elfutils/src/libasm/
libasmP.h 3 This file is part of elfutils.
5 This file is free software; you can redistribute it and/or modify
45 ASM_E_CANNOT_CREATE, /* Output file cannot be created. */
47 ASM_E_CANNOT_CHMOD, /* Cannot change mode of output file. */
48 ASM_E_CANNOT_RENAME, /* Cannot rename output file. */
140 /* File descriptor of the temporary file. */
146 /* Output file handle. */
149 /* ELF descriptor of the temporary file. */
152 FILE *file member in union:AsmCtx::__anon8869
    [all...]

Completed in 115 milliseconds

<<31323334353637383940>>