Searched defs:file (Results 126 - 150 of 1433) sorted by relevance

1234567891011>>

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
H A DRSSFeedGetPropertyTask.java25 * file - path to the XML file that will be read - eg., /path/to/file.to.read.xml
36 private File file; field in class:RSSFeedGetPropertyTask
44 public void setFile(String file) { argument
45 if (isNullString(file))
48 { this.file = new File(file); }
60 updater.setFile(file.toString());
/external/elfutils/tests/
H A Ddebugaltlink.c3 This file is part of elfutils.
5 This file is free software; you can redistribute it and/or modify
38 error (EXIT_FAILURE, 0, "No input file given");
44 const char *file = argv[i]; local
45 int fd = open (file, O_RDONLY);
47 error (EXIT_FAILURE, errno, "couldn't open file '%s'", file);
52 printf("%s: dwarf_begin failed: %s\n", file, dwarf_errmsg (-1));
64 printf ("%s: <no .gnu_debugaltlink section>\n", file);
68 file, dwarf_errms
[all...]
/external/emma/ant/ant14/com/vladium/emma/ant/
H A DGenericCfg.java28 * that are set via generic 'properties=&lt;file&gt;' attribute and &lt;property&gt;
30 * propertie set in an external file or via nested elements, leaving this up
50 // .properties file attribute [actual file I/O done lazily by getFileSettings()]:
52 public void setProperties (final File file) argument
54 m_settingsFile = file; // actual file I/O is done in getFileSettings()
83 + ": property file [" + m_settingsFile.getAbsolutePath () + "] could not be read" , ioe, m_task.getLocation ()).fillInStackTrace ();
/external/emma/ant/ant14/com/vladium/emma/data/
H A DmergeTask.java53 // mergefile|tofile|outfile|file attribute:
55 public void setMergefile (final File file) argument
59 + ": merge data file attribute already set", location).fillInStackTrace ();
61 m_outFile = file;
64 public void setOutfile (final File file) argument
68 + ": merge data file attribute already set", location).fillInStackTrace ();
70 m_outFile = file;
73 public void setTofile (final File file) argument
77 + ": merge data file attribute already set", location).fillInStackTrace ();
79 m_outFile = file;
82 setFile(final File file) argument
[all...]
/external/freetype/src/base/
H A Dftsystem.c10 /* This file is part of the FreeType project, and may only be used, */
13 /* this file you indicate that you have read the license and */
20 /* This file contains the default interface used by FreeType to access */
206 FT_FILE* file; local
212 file = STREAM_FILE( stream );
215 ft_fseek( file, (long)offset, SEEK_SET );
217 return (unsigned long)ft_fread( buffer, 1, count, file );
227 FT_FILE* file; local
240 file = ft_fopen( filepathname, "rb" );
241 if ( !file )
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
H A DDiskCache.java16 * Writes data to the file and returns true if the write was successful and should be committed, and
19 * @param file The File the Writer should write to.
21 boolean write(File file); argument
28 * Note - This is potentially dangerous, someone may write a new value to the file at any point in timeand we
39 * the write finishes, like commit (via atomic file rename).
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/file/
H A DFileDecoder.java1 package com.bumptech.glide.load.resource.file;
/external/google-breakpad/src/common/
H A Dstabs_to_module_unittest.cc52 EXPECT_TRUE(h.Line(0xfde4abbed390c394LL, "source-file-name", 174823314));
58 Module::File *file = m.FindExistingFile("source-file-name"); local
59 ASSERT_TRUE(file != NULL);
73 EXPECT_TRUE(line->file == file);
124 Module::File *file = m.FindExistingFile("compilation-unit"); local
125 ASSERT_TRUE(file != NULL);
147 EXPECT_TRUE(h.Line(0xb4513962eff94e92LL, "source-file-name-1", 77396614));
148 EXPECT_TRUE(h.Line(0xb4513963eff94e92LL, "source-file
204 Module::File *file = m.FindExistingFile("compilation-unit"); local
[all...]
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest-typed-test.cc52 const char* file, int line, const char* registered_tests) {
98 fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
51 VerifyRegisteredTestNames( const char* file, int line, const char* registered_tests) argument
/external/gtest/src/
H A Dgtest-typed-test.cc52 const char* file, int line, const char* registered_tests) {
98 fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
51 VerifyRegisteredTestNames( const char* file, int line, const char* registered_tests) argument
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DWriteNumberFormatSerialTestData.java46 FileOutputStream file = new FileOutputStream("NumberFormatSerialTestData.java");
47 file.write(header.getBytes());
48 write(file,(Object)nf,"generalInstance", "//NumberFormat.getInstance(Locale.US)");
49 write(file,(Object)nfc,"currencyInstance","//NumberFormat.getCurrencyInstance(Locale.US)");
50 write(file,(Object)nfp,"percentInstance","//NumberFormat.getPercentInstance(Locale.US)");
51 write(file,(Object)nfsp,"scientificInstance","//NumberFormat.getScientificInstance(Locale.US)");
52 file.write(footer.getBytes());
53 file.close();
59 private static void write(FileOutputStream file,Object o ,String name,String comment){ argument
74 //file
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DWriteNumberFormatSerialTestData.java45 FileOutputStream file = new FileOutputStream("NumberFormatSerialTestData.java");
46 file.write(header.getBytes());
47 write(file,(Object)nf,"generalInstance", "//NumberFormat.getInstance(Locale.US)");
48 write(file,(Object)nfc,"currencyInstance","//NumberFormat.getCurrencyInstance(Locale.US)");
49 write(file,(Object)nfp,"percentInstance","//NumberFormat.getPercentInstance(Locale.US)");
50 write(file,(Object)nfsp,"scientificInstance","//NumberFormat.getScientificInstance(Locale.US)");
51 file.write(footer.getBytes());
52 file.close();
58 private static void write(FileOutputStream file,Object o ,String name,String comment){ argument
73 //file
[all...]
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
H A DIcu4jTransformRules.java5 * you may not use this file except in compliance with the License.
74 private static boolean isValidFile(File file) { argument
75 return file.exists() && file.isFile();
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/checker/
H A DCheckAndroidIcu4jSourceRules.java5 * you may not use this file except in compliance with the License.
51 public List<Rule> getRuleList(File file) { argument
/external/iproute2/include/
H A Ddlfcn.h14 static inline void *dlopen(const char *file, int flag) argument
16 if (file == NULL)
/external/iproute2/tc/
H A Dtc_monitor.c75 char *file = NULL; local
79 if (matches(*argv, "file") == 0) {
81 file = *argv;
93 if (file) {
94 FILE *fp = fopen(file, "r");
/external/jacoco/org.jacoco.agent.test/src/org/jacoco/agent/
H A DAgentJarTest.java33 private File file; field in class:AgentJarTest
37 if (file != null) {
38 file.delete();
56 file = File.createTempFile("agent", ".jar");
57 AgentJar.extractTo(file);
58 assertAgentContents(new FileInputStream(file));
63 file = File.createTempFile("folder", null);
64 file.delete();
65 file.mkdirs();
66 AgentJar.extractTo(file);
[all...]
/external/jacoco/org.jacoco.ant/src/org/jacoco/ant/
H A DAntFilesLocator.java24 * Source locator based on Ant file resources.
37 * Adds the given file resource as a potential source file.
39 * @param file
40 * file resource to add
42 void add(final Resource file) { argument
43 resources.put(file.getName().replace(File.separatorChar, '/'), file);
48 final Resource file = resources.get(path);
49 if (file
[all...]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/tools/
H A DExecFileLoader.java65 * @param file
66 * file to read data from
70 public void load(final File file) throws IOException { argument
71 final InputStream stream = new FileInputStream(file);
94 * Saves the current content into the given file. Parent directories are
98 * @param file
99 * file to save content to
102 * the file is overwritten.
106 public void save(final File file, final boolean append) throws IOException { argument
107 final File folder = file
[all...]
/external/jacoco/org.jacoco.examples/src/org/jacoco/examples/
H A DExecDump.java49 * in case of error reading a input file
52 for (final String file : args) {
53 dump(file);
57 private void dump(final String file) throws IOException { argument
58 out.printf("exec file: %s%n", file);
61 final FileInputStream in = new FileInputStream(file);
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DMainProcessor.java5 * you may not use this file except in compliance with the License.
60 public void strip(File file) throws IOException { argument
65 StandaloneJarProcessor.run(file, file, new ExcludeProcessor(excludes, verbose));
H A DRulesFileParser.java5 * you may not use this file except in compliance with the License.
27 public static List<PatternElement> parse(File file) throws IOException { argument
28 return parse(new FileReader(file));
/external/jcommander/src/test/java/com/beust/jcommander/args/
H A DArgsConverter.java3 * See the notice.md file distributed with this work for additional
7 * you may not use this file except in compliance with the License.
31 import java.nio.file.Path;
36 @Parameter(names = "-file", converter = FileConverter.class)
37 public File file; field in class:ArgsConverter
/external/jetty/src/java/org/eclipse/jetty/util/component/
H A DFileDestroyable.java41 public FileDestroyable(String file) throws IOException argument
43 _files.add(Resource.newResource(file).getFile());
46 public FileDestroyable(File file) argument
48 _files.add(file);
51 public void addFile(String file) throws IOException argument
53 _files.add(Resource.newResource(file).getFile());
56 public void addFile(File file) argument
58 _files.add(file);
66 public void removeFile(String file) throws IOException argument
68 _files.remove(Resource.newResource(file)
71 removeFile(File file) argument
[all...]
/external/junit/src/org/junit/rules/
H A DTemporaryFolder.java49 * Returns a new fresh file with the given name under the temporary folder.
52 File file= new File(getRoot(), fileName);
53 file.createNewFile();
54 return file;
58 * Returns a new fresh file with a random name under the temporary folder.
68 File file = getRoot();
70 file = new File(file, folderName);
71 file.mkdir();
73 return file;
106 recursiveDelete(File file) argument
[all...]

Completed in 972 milliseconds

1234567891011>>