Searched defs:file (Results 201 - 225 of 1831) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gn/
H A Dinput_file_manager.h3 // found in the LICENSE file.
31 // could use the same input file (saving parsing).
39 // Callback issued when a file is laoded. On auccess, the parse node will
40 // refer to the root block of the file. On failure, this will be NULL.
45 // Loads the given file and executes the callback on the worker pool.
59 // Loads and parses the given file synchronously, returning the root block
71 // the file, tokens, and parse node that this class created. The calling
78 // nodes and file that created it. Either we need to reset the origin of
80 // associated parse nodes, tokens, and file data in memory. This function
83 InputFile** file,
101 InputFile file; member in struct:InputFileManager::InputFileData
[all...]
H A Dlocation.cc3 // found in the LICENSE file.
17 Location::Location(const InputFile* file, argument
21 : file_(file),
69 DCHECK(begin_.file() == end_.file());
73 DCHECK(begin_.file() == other.begin_.file());
H A Dlocation.h3 // found in the LICENSE file.
12 // Represents a place in a source file. Used for error reporting.
16 Location(const InputFile* file, int line_number, int char_offset, int byte);
18 const InputFile* file() const { return file_; } function in class:Location
27 // Returns a string with the file, line, and (optionally) the character
39 // Represents a range in a source file. Used for error reporting.
H A Dpath_output.cc3 // found in the LICENSE file.
26 void PathOutput::WriteFile(std::ostream& out, const SourceFile& file) const {
27 WritePathStr(out, file.value());
73 void PathOutput::WriteFile(std::ostream& out, const OutputFile& file) const {
75 EscapeStringToStream(out, file.value(), options_);
87 const OutputFile& file,
89 DCHECK(file.value().empty() ||
90 file.value()[file.value().size() - 1] == '/');
94 EscapeStringToStream(out, file
86 WriteDir(std::ostream& out, const OutputFile& file, DirSlashEnding slash_ending) const argument
[all...]
/external/chromium_org/ui/base/resource/
H A Ddata_pack_unittest.cc3 // found in the LICENSE file.
5 #include "base/files/file.h"
33 // Dump contents into the pak file.
37 // Load the file through the data pack API.
65 // Dump contents into the pak file.
69 base::File file(data_path, base::File::FLAG_OPEN | base::File::FLAG_READ);
70 ASSERT_TRUE(file.IsValid());
72 // Load the file through the data pack API.
74 ASSERT_TRUE(pack.LoadFromFile(file.Pass()));
100 // Construct a file whic
154 base::FilePath file = dir.path().Append(FILE_PATH_LITERAL("data.pak")); local
[all...]
/external/chromium_org/v8/src/base/
H A Dlogging.cc3 // found in the LICENSE file.
75 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...) { argument
78 v8::base::OS::PrintError("\n\n#\n# Fatal error in %s, line %d\n# ", file,
/external/chromium_org/v8/src/
H A Dchecks.cc3 // found in the LICENSE file.
25 void CheckEqualsHelper(const char* file, int line, const char* expected_source, argument
34 V8_Fatal(file, line,
43 void CheckNonEqualsHelper(const char* file, int line, argument
52 V8_Fatal(file, line,
61 void CheckEqualsHelper(const char* file, argument
70 V8_Fatal(file, line,
77 void CheckNonEqualsHelper(const char* file, argument
85 V8_Fatal(file, line, "CHECK_NE(%s, %s) failed\n# Value: %s",
/external/chromium_org/v8/tools/
H A Dshell-utils.h42 FILE* file = fopen(name, "rb"); local
44 if (file == NULL) return NULL;
46 fseek(file, 0, SEEK_END);
47 int file_size = ftell(file);
48 rewind(file);
54 int read = static_cast<int>(fread(&chars[i], 1, file_size - i, file));
57 fclose(file);
/external/clang/test/CodeGenCXX/
H A Ddefault-arg-temps.cpp56 C(const B &file = B());
58 C::C(const B &file) {} argument
/external/deqp/framework/delibs/debase/
H A DdeDefs.c8 * you may not use this file except in compliance with the License.
20 * \file
86 void deAssertFail (const char* reason, const char* file, int line) argument
94 callback(reason, file, line);
112 num = deMin32((int)strlen(file), DE_LENGTH_OF_ARRAY(wfile)-1);
114 wfile[i] = file[i];
124 _assert(reason, file, line);
126 __assert_fail(reason, file, line, "Unknown function");
128 __assert("Unknown function", file, line, reason);
130 fprintf(stderr, "Assertion '%s' failed at %s:%d\n", reason, file, lin
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DIndexedItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
20 * An item in a Dalvik file which is referenced by index.
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DAppDataDirGuesser.java5 * you may not use this file except in compliance with the License.
114 boolean fileOrDirExists(File file) { argument
115 return file.exists();
118 boolean isWriteableDirectory(File file) { argument
119 return file.isDirectory() && file.canWrite();
/external/e2fsprogs/lib/ext2fs/
H A Dgetsectsize.c8 * This file may be redistributed under the terms of the GNU Library
44 errcode_t ext2fs_get_device_sectsize(const char *file, int *sectsize) argument
48 fd = ext2fs_open_file(file, O_RDONLY, 0);
92 errcode_t ext2fs_get_device_phys_sectsize(const char *file, int *sectsize) argument
96 fd = ext2fs_open_file(file, O_RDONLY, 0);
H A Dgetsize.c10 * This file may be redistributed under the terms of the GNU Library
72 errcode_t ext2fs_get_device_size(const char *file, int blocksize, argument
85 dev = CreateFile(file, GENERIC_READ,
141 errcode_t ext2fs_get_device_size2(const char *file, int blocksize,
148 fd = ext2fs_open_file(file, O_RDONLY, 0);
218 part = strlen(file) - 1;
220 ch = file[part];
273 errcode_t ext2fs_get_device_size(const char *file, int blocksize,
279 retval = ext2fs_get_device_size2(file, blocksize, &blocks);
/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/0.153/libdwfl/
H A Ddwfl_module.c3 This file is part of Red Hat elfutils.
25 those well defined interfaces identified in the file named EXCEPTION
36 covered by this exception. If you modify this file, you may extend this
37 exception to your version of the file, but you are not obligated to do
40 this file solely under the GPL without exception.
68 free_file (struct dwfl_file *file) argument
70 free (file->name);
73 if (file->elf != NULL && elf_end (file->elf) == 0 && file
[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, 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/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/iproute2/tc/
H A Dtc_monitor.c70 char *file = NULL; local
74 if (matches(*argv, "file") == 0) {
76 file = *argv;
88 if (file) {
90 fp = fopen(file, "r");
/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/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...]
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
H A DHttpsServiceConnectionSEIgnoringConnectionClose.java8 public HttpsServiceConnectionSEIgnoringConnectionClose(String host, int port, String file, argument
11 super(host, port, file, timeout);

Completed in 3888 milliseconds

1234567891011>>