Searched defs:file (Results 276 - 300 of 1236) sorted by relevance

<<11121314151617181920>>

/external/deqp/framework/delibs/destream/
H A DdeFileStream.c8 * you may not use this file except in compliance with the License.
20 * \file
29 deFile* file; member in struct:FileStream_s
40 deFileResult result = deFile_read(fileStream->file, buf, bufSize, &_numRead);
72 deFileResult result = deFile_write(fileStream->file, buf, bufSize, &_numWritten);
118 deFile_destroy(fileStream->file);
166 /* \note mika Check that file is readable and writeable, currently not supported by deFile */
170 fileStream->file = deFile_create(filename, mode);
174 if (!fileStream->file)
186 /* \note mika Check that file i
[all...]
/external/doclava/src/com/google/doclava/
H A DDoclavaDiff.java5 * you may not use this file except in compliance with the License.
331 private void generateHtml(String template, Data data, File file) { argument
332 ClearPage.ensureDirectory(file);
336 stream = new OutputStreamWriter(new FileOutputStream(file), "UTF-8");
340 System.out.println("error: " + e.getMessage() + "; when writing file: " + file.getAbsolutePath());
H A DSinceTagger.java5 * you may not use this file except in compliance with the License.
49 * Specifies the apicheck XML file and the API version it holds. Calls to this method should be
52 public void addVersion(String file, String name) { argument
53 xmlToName.put(file, name);
/external/e2fsprogs/misc/
H A Dismounted.c7 * This file may be redistributed under the terms of the GNU Public
75 * Helper function which checks a file in /etc/mtab format to see if a
76 * filesystem is mounted. Returns an error if the file doesn't exist
79 static errcode_t check_mntent_file(const char *mtab_file, const char *file, argument
93 if (stat(file, &st_buf) == 0) {
119 if (strcmp(file, device) == 0)
171 mtab_file, file, mnt_dir);
187 int is_mounted(const char *file) argument
193 retval = check_mntent_file("/proc/mounts", file, &mount_flags);
199 retval = check_mntent_file("/etc/mtab", file,
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
H A DCompileErrorCheck.java115 private void read(File file) { argument
116 //read the contents of the log file, and return contents as a String
117 if (file.length()==0)
124 in = new BufferedReader(new FileReader(file));
136 logsWithErrors.add(file);
137 System.out.println(file.getName()+" has compile errors.");
144 // make sure we don't leave any file handle open
155 private void parse(File file) { argument
158 reader = new BufferedReader(new FileReader(file));
173 // make sure we don't leave any file handl
[all...]
/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 DRSSFeedCreateFeedTask.java33 * file - path to the XML file that will be created - eg., /path/to/file.to.create.xml
49 private File file; field in class:RSSFeedCreateFeedTask
57 public void setFile(String file) { argument
58 if (isNullString(file))
61 { this.file = new File(file); }
79 System.out.println(Messages.getString("RSSFeedCreateFeedTask.Creating") + project + SP + Messages.getString("RSSFeedCommon.RSSFeedFile") + SP + file.toString() + ", " + Messages.getString("RSSFeedCommon.ToBePublishedAt") + feedURL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$
81 writeFeedXML(createFeedXML(),file);
102 writeFeedXML(String feedXML,File file) argument
[all...]
/external/elfutils/src/libdw/
H A Ddwarf_getscopevar.c3 This file is part of elfutils.
5 This file is free software; you can redistribute it and/or modify
57 If MATCH_FILE is not null, accept only declaration in that source file;
71 /* Match against the given file name. */
80 const char *file = files->info[idx].name; local
81 if (file != lastfile)
83 size_t len = strlen (file);
85 && !memcmp (match_file, file, match_file_len)
87 || file[len - match_file_len - 1] == '/'));
/external/elfutils/src/libdwfl/
H A Ddwfl_module_getsrc_file.c3 This file is part of elfutils.
5 This file is free software; you can redistribute it and/or modify
63 return line->files->info[line->file].name;
75 file and line/column number. If any of the numbers is zero,
83 if (unlikely (line->file >= line->files->nfiles))
90 const char *file = INTUSE(dwarf_line_file) (line); local
91 if (file != lastfile)
94 lastfile = file;
95 lastmatch = !strcmp (is_basename ? basename (file) : file,
[all...]
/external/elfutils/src/src/
H A Dldscript.y4 This file is part of elfutils.
7 This file is free software; you can redistribute it and/or modify
40 describing information from the file. */
135 file
140 file: file content label
177 file in the group don't do anything. */
371 file in the group don't do anything. */
550 /* If the output file should be stripped of all symbol set the flag
/external/elfutils/src/tests/
H A Dallfcts.c2 This file is part of elfutils.
4 This file is free software; you can redistribute it and/or modify
32 const char *file = dwarf_decl_file (func); local
37 printf ("%s:%d:%s\n", file, line, fct);
H A Dget-lines.c2 This file is part of elfutils.
5 This file is free software; you can redistribute it and/or modify
95 const char *file = dwarf_linesrc (l, NULL, NULL); local
101 file ?: "???", line);
H A Dline2addr.c2 This file is part of elfutils.
4 This file is free software; you can redistribute it and/or modify
63 char *file; member in struct:args
79 if (dwfl_module_getsrc_file (mod, a->file, a->line, 0, &lines, &nlines) == 0)
85 const char *file = dwfl_lineinfo (lines[inner], &addr, &line, &col, local
87 if (file != NULL)
93 if (strcmp (file, a->file) || line != a->line || col != 0)
95 file, line);
99 || strcmp (file,
[all...]
/external/emma/ant/ant14/com/vladium/emma/ant/
H A DSuppressableTask.java65 // .properties file attribute:
67 public final void setProperties (final File file) argument
69 m_genericCfg.setProperties (file);
108 // (1) by default, generic settings are always more specific than any file settings
/external/emma/ant/ant14/com/vladium/emma/instr/
H A DFilterCfg.java64 * Set the 'file' attribute.
66 public void setFile (final File file) argument
68 appendValue ("@".concat (file.getAbsolutePath ()), COMMA); // actual file I/O delayed until getFilterSpecs()
/external/emma/core/java12/com/vladium/emma/report/
H A DSourcePathCache.java138 // NOTE: because java.io.* implements file filtering in bytecode
144 public boolean accept (final File file) argument
146 if ($assert.ENABLED) $assert.ASSERT (file != null, "file = null");
148 if (file.isDirectory ()) return false; // filter out directories
150 final String name = file.getName ();
/external/emma/core/java12/com/vladium/emma/report/lcov/
H A DReportGenerator.java103 * Visitor for top-level node; opens output file, enqueues packages.
175 /** Issue a coverage report for all lines in the file, and for each
176 * function in the file.
191 m_log.info("source file '"
199 // For each class in the file, for each method in the class,
250 // For each line in the file, emit a DA.
306 m_log.info("[source file '"
373 private void openOutFile(final File file, final String encoding, final boolean mkdirs) argument
379 final File parent = file.getParentFile();
385 file
[all...]
/external/emma/core/java12/com/vladium/emma/
H A DrunCommand.java121 // user '-props' file property overrides:
143 usageexit (parser, IOptsParser.SHORT_USAGE, "missing jar file name");
260 // TODO: save stack trace in a file and prompt user to send it to ...
294 private static String openJarFile (final File file) argument
300 jarfile = new JarFile (file, false);
/external/emma/core/java12/com/vladium/util/
H A DFiles.java141 public static File canonicalizeFile (final File file) argument
143 if (file == null) throw new IllegalArgumentException ("null input: file");
147 return file.getCanonicalFile ();
151 return file.getAbsoluteFile ();
156 * Invariant: (getFileName (file) + getFileExtension (file)).equals (file.getName ()).
158 * @param file File input file descripto
165 getFileName(final File file) argument
186 getFileExtension(final File file) argument
203 newFile(final File dir, final File file) argument
218 newFile(final File dir, final String file) argument
234 newFile(final String dir, final String file) argument
[all...]
/external/google-breakpad/src/common/
H A Ddwarf_cfi_to_module.h37 // a Breakpad symbol file.
71 // stream. FILE is the name of the file we're processing, and
72 // SECTION is the name of the section within that file that we're
74 Reporter(const string &file, const string &section) argument
75 : file_(file), section_(section) { }
85 // Breakpad symbol file format cannot express this.
H A Ddwarf_cfi_to_module_unittest.cc50 MockCFIReporter(const string &file, const string &section) argument
51 : Reporter(file, section) { }
60 reporter("reporter file", "reporter section"),
H A Ddwarf_line_to_module.cc102 // file table.
124 // Find the source file being referred to.
125 Module::File *file = files_[file_num]; local
126 if (!file) {
129 "undefined file numbers\n");
138 line.file = file;
/external/google-breakpad/src/common/windows/
H A Dpdb_source_line_writer.h30 // PDBSourceLineWriter uses a pdb file produced by Visual C++ to output
52 // A structure that carries information that identifies a pdb file.
55 // The basename of the pdb file from which information was loaded.
72 // A structure that carries information that identifies a PE file,
75 // The basename of the PE file.
78 // The PE file's code identifier, which consists of its timestamp
79 // and file size concatenated together into a single hex string.
90 PDB_FILE, // a .pdb file containing debug symbols
91 EXE_FILE, // a .exe or .dll file
98 // Opens the given file
184 FileIDIsCached(const wstring &file) argument
189 CacheFileID(const wstring &file, DWORD id) argument
194 StoreDuplicateFileID(const wstring &file, DWORD id) argument
[all...]
/external/google-breakpad/src/processor/
H A Dsource_line_resolver_base_types.h59 explicit AutoFileCloser(FILE *file) : file_(file) {} argument
/external/google-breakpad/src/testing/src/
H A Dgmock-internal-utils.cc34 // This file defines some utilities useful for implementing Google
78 virtual void ReportFailure(FailureType type, const char* file, int line, argument
83 file,
/external/guava/guava/src/com/google/common/io/
H A DFileBackedOutputStream.java5 * you may not use this file except in compliance with the License.
33 * switches to file buffering once the data reaches a configurable size.
49 private File file; field in class:FileBackedOutputStream
62 /** Returns the file holding the data (possibly null). */
64 return file;
68 * Creates a new instance that uses the given file threshold, and does
73 * switch to buffering to a file
80 * Creates a new instance that uses the given file threshold, and
85 * switch to buffering to a file
145 if (file !
[all...]

Completed in 511 milliseconds

<<11121314151617181920>>