Searched defs:file (Results 51 - 75 of 1831) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DANTLRFileStream.cs44 /// and caches the contents of it's underlying file fully during
49 /// but, it is a special case. Since we know the exact size of the file to
65 /// specified file name
74 /// specified file name and encoding
83 /// Gets the file name of this ANTLRFileStream underlying file
96 /// Loads and buffers the specified file to be used as this
100 /// <param name="encoding">Encoding to apply to file</param>
132 /// <summary>Fully qualified name of the stream's underlying file</summary>
140 private long GetFileLength(FileInfo file) argument
[all...]
/external/bison/examples/calc++/
H A Dcalc++-driver.hh35 std::string file; member in class:calcxx_driver
/external/bison/lib/
H A Dcloseout.c38 /* Set the file name to be reported in the event an error is detected
41 close_stdout_set_file_name (const char *file) argument
43 file_name = file;
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DFileProviderHelper.java3 // found in the LICENSE file.
16 * Utilities for translating a file into content URI.
23 public Uri getContentUriFromFile(Context context, File file) { argument
25 context.getPackageName() + API_AUTHORITY_SUFFIX, file);
/external/chromium_org/chrome/browser/net/
H A Dchrome_net_log.cc3 // found in the LICENSE file.
47 FILE* file = NULL; local
49 file = _wfopen(log_path.value().c_str(), L"w");
51 file = fopen(log_path.value().c_str(), "w");
54 if (file == NULL) {
55 LOG(ERROR) << "Could not open file " << log_path.value()
59 net_log_logger_.reset(new net::NetLogLogger(file, *constants));
/external/chromium_org/chrome/common/safe_browsing/
H A Dzip_analyzer.cc3 // found in the LICENSE file.
20 VLOG(1) << "Failed to open zip file";
31 VLOG(1) << "Failed to open current entry in zip file";
34 const base::FilePath& file = reader.current_entry_info()->file_path(); local
35 if (download_protection_util::IsBinaryFile(file)) {
38 if (download_protection_util::IsArchiveFile(file)) {
41 VLOG(2) << "Downloaded a zipped executable: " << file.value();
46 VLOG(3) << "Ignoring non-binary file: " << file.value();
/external/chromium_org/chrome/test/chromedriver/
H A Dutil_unittest.cc3 // found in the LICENSE file.
20 // file with the contents "COW\n".
25 base::FilePath file; local
26 Status status = UnzipSoleFile(temp_dir.path(), data, &file);
29 ASSERT_TRUE(base::ReadFileToString(file, &contents));
38 // file with the contents "COW\n".
44 base::FilePath file; local
45 Status status = UnzipSoleFile(temp_dir.path(), data, &file);
48 ASSERT_TRUE(base::ReadFileToString(file, &contents));
/external/chromium_org/chrome/test/remoting/
H A Dqunit_browser_test_runner.cc3 // found in the LICENSE file.
42 void QUnitBrowserTestRunner::RunTest(const base::FilePath& file) { argument
43 ASSERT_TRUE(PathExists(file)) << "Error: The QUnit test suite <"
44 << file.value() << "> does not exist.";
45 ui_test_utils::NavigateToURL(browser(), net::FilePathToFileURL(file));
/external/chromium_org/chrome/tools/convert_dict/
H A Dhunspell_reader.cc3 // found in the LICENSE file.
25 // the encoding defined in an affix file.
29 std::string ReadLine(FILE* file) { argument
30 const char* line = fgets(line_buffer, kLineBufferLen - 1, file);
/external/chromium_org/content/common/
H A Dshareable_file_reference_unittest.cc3 // found in the LICENSE file.
24 // Create a file.
25 base::FilePath file; local
26 base::CreateTemporaryFileInDir(temp_dir.path(), &file);
27 EXPECT_TRUE(base::PathExists(file));
29 // Create a first reference to that file.
31 reference1 = ShareableFileReference::Get(file);
34 file, ShareableFileReference::DELETE_ON_FINAL_RELEASE, loop_proxy.get());
36 EXPECT_TRUE(file == reference1->path());
38 // Get a second reference to that file
[all...]
/external/chromium_org/content/public/browser/
H A Ddownload_save_info.h3 // found in the LICENSE file.
8 #include "base/files/file.h"
14 // Holds the information about how to save a download file.
15 // In the case of download continuation, |file_path| is set to the current file
31 // If valid, contains the source data stream for the file contents.
32 base::File file; member in struct:content::DownloadSaveInfo
34 // The file offset at which to start the download. May be 0.
/external/chromium_org/ipc/
H A Dipc_platform_file.cc3 // found in the LICENSE file.
48 PlatformFileForTransit TakeFileHandleForProcess(base::File file, argument
50 return GetFileHandleForProcess(file.TakePlatformFile(), process, true);
/external/chromium_org/sandbox/win/sandbox_poc/pocdll/
H A Dfs.cc3 // found in the LICENSE file.
8 // This file contains the tests used to verify the security of the file system.
10 // Tries to open a file and outputs the result.
21 HANDLE file; local
22 file = ::CreateFile(path_expanded,
30 if (file && INVALID_HANDLE_VALUE != file) {
31 fprintf(output, "[GRANTED] Opening file \"%S\". Handle 0x%p\r\n", path,
32 file);
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DExceptionStatePlaceholder.cpp38 NoExceptionStateAssertionChecker::NoExceptionStateAssertionChecker(const char* file, int line) argument
40 , m_file(file)
/external/chromium_org/third_party/WebKit/Source/core/clipboard/
H A DDataObjectTest.cpp3 // found in the LICENSE file.
39 RefPtrWillBeRawPtr<File> file = toFile(blob.get()); local
40 EXPECT_TRUE(file->hasBackingFile());
41 EXPECT_EQ(File::IsUserVisible, file->userVisibility());
42 EXPECT_EQ(filePath, file->path());
58 RefPtrWillBeRawPtr<File> file = toFile(blob.get()); local
59 EXPECT_TRUE(file->hasBackingFile());
60 EXPECT_EQ(File::IsUserVisible, file->userVisibility());
61 EXPECT_EQ(filePath, file->path());
62 EXPECT_EQ("name.cpp", file
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileEntry.cpp52 void FileEntry::file(FileCallback* successCallback, ErrorCallback* errorCallback) function in class:blink::FileEntry
H A DFileEntrySync.cpp45 PassRefPtrWillBeRawPtr<File> FileEntrySync::file(ExceptionState& exceptionState) function in class:blink::FileEntrySync
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DFilePrintStream.h47 FILE* file() { return m_file; } function in class:WTF::final
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DInfoSink.cpp4 // found in the LICENSE file.
34 void TInfoSinkBase::location(int file, int line) { argument
37 stream << file << ":" << line;
39 stream << file << ":? "; local
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtextfile.h18 * This class implements access to a text data file located in the
24 * Open a file with the given name, in the given encoding, in the
34 * this file's encoding to Unicode. The EOL character(s) are not
60 FileStream* file; member in class:TextFile
/external/chromium_org/third_party/icu/source/tools/gentest/
H A Dgenres32.c8 * file name: genres32.c
53 char file[512]; local
56 uprv_strcpy(file,path);
57 if(file[strlen(file)-1]!=U_FILE_SEP_CHAR) {
58 uprv_strcat(file,U_FILE_SEP_STRING);
60 uprv_strcat(file,"testtable32.txt");
61 out = fopen(file, "w");
62 /*puts(file);*/
65 fprintf(stderr, "%s: Couldn't create resource test file
[all...]
/external/chromium_org/third_party/lzma_sdk/
H A D7zFile.h28 FILE *file;
43 /* reads max(*size, remain file's size) bytes */
58 CSzFile file; member in struct:__anon13425
67 CSzFile file; member in struct:__anon13426
76 CSzFile file; member in struct:__anon13427
/external/chromium_org/third_party/ots/src/
H A Dcbdt.cc3 // found in the LICENSE file.
15 bool ots_cbdt_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { argument
20 file->cbdt = new OpenTypeCBDT;
21 file->cbdt->data = data;
22 file->cbdt->length = length;
26 bool ots_cbdt_should_serialise(OpenTypeFile *file) { argument
27 return file->cbdt != NULL && file->cblc != NULL;
30 bool ots_cbdt_serialise(OTSStream *out, OpenTypeFile *file) { argument
31 if (!out->Write(file
37 ots_cbdt_free(OpenTypeFile *file) argument
[all...]
H A Dcblc.cc3 // found in the LICENSE file.
15 bool ots_cblc_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { argument
20 file->cblc = new OpenTypeCBLC;
21 file->cblc->data = data;
22 file->cblc->length = length;
26 bool ots_cblc_should_serialise(OpenTypeFile *file) { argument
27 return file->cblc != NULL && file->cbdt != NULL;
30 bool ots_cblc_serialise(OTSStream *out, OpenTypeFile *file) { argument
31 if (!out->Write(file
37 ots_cblc_free(OpenTypeFile *file) argument
[all...]
H A Dcvt.cc3 // found in the LICENSE file.
12 bool ots_cvt_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { argument
16 file->cvt = cvt;
35 bool ots_cvt_should_serialise(OpenTypeFile *file) { argument
36 if (!file->glyf) {
39 return g_transcode_hints && file->cvt;
42 bool ots_cvt_serialise(OTSStream *out, OpenTypeFile *file) { argument
43 const OpenTypeCVT *cvt = file->cvt;
52 void ots_cvt_free(OpenTypeFile *file) { argument
53 delete file
[all...]

Completed in 495 milliseconds

1234567891011>>