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

<<11121314151617181920>>

/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DSecuritySupport.java3 * or more contributor license agreements. See the NOTICE file
5 * regarding copyright ownership. The ASF licenses this file
7 * you may not use this file except in compliance with the License.
102 FileInputStream getFileInputStream(File file) argument
105 return new FileInputStream(file);
H A DSecuritySupport12.java3 * or more contributor license agreements. See the NOTICE file
5 * regarding copyright ownership. The ASF licenses this file
7 * you may not use this file except in compliance with the License.
96 FileInputStream getFileInputStream(final File file) argument
103 return new FileInputStream(file);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DSecuritySupport12.java3 * or more contributor license agreements. See the NOTICE file
5 * regarding copyright ownership. The ASF licenses this file
7 * you may not use this file except in compliance with the License.
96 FileInputStream getFileInputStream(final File file) argument
103 return new FileInputStream(file);
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DSecuritySupport.java3 * or more contributor license agreements. See the NOTICE file
5 * regarding copyright ownership. The ASF licenses this file
7 * you may not use this file except in compliance with the License.
100 FileInputStream getFileInputStream(File file) argument
103 return new FileInputStream(file);
H A DSecuritySupport12.java3 * or more contributor license agreements. See the NOTICE file
5 * regarding copyright ownership. The ASF licenses this file
7 * you may not use this file except in compliance with the License.
93 FileInputStream getFileInputStream(final File file) argument
100 return new FileInputStream(file);
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DSecuritySupport.java3 * or more contributor license agreements. See the NOTICE file
5 * regarding copyright ownership. The ASF licenses this file
7 * you may not use this file except in compliance with the License.
102 FileInputStream getFileInputStream(File file) argument
105 return new FileInputStream(file);
H A DSecuritySupport12.java3 * or more contributor license agreements. See the NOTICE file
5 * regarding copyright ownership. The ASF licenses this file
7 * you may not use this file except in compliance with the License.
96 FileInputStream getFileInputStream(final File file) argument
103 return new FileInputStream(file);
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DSecuritySupport.java3 * or more contributor license agreements. See the NOTICE file
5 * regarding copyright ownership. The ASF licenses this file
7 * you may not use this file except in compliance with the License.
102 FileInputStream getFileInputStream(File file) argument
105 return new FileInputStream(file);
H A DSecuritySupport12.java3 * or more contributor license agreements. See the NOTICE file
5 * regarding copyright ownership. The ASF licenses this file
7 * you may not use this file except in compliance with the License.
96 FileInputStream getFileInputStream(final File file) argument
103 return new FileInputStream(file);
/external/bison/src/
H A DSbitset.c5 This file is part of Bison, the GNU Compiler Compiler.
63 Sbitset__fprint(Sbitset self, Sbitset__Index nbits, FILE *file) argument
68 fprintf (file,
76 fprintf (file, ",");
77 fprintf (file, " %" SBITSET__INDEX__CONVERSION_SPEC, i);
79 fprintf (file, " }");
H A Dlocation.h5 This file is part of Bison, the GNU Compiler Compiler.
28 /* The name of the file that contains the boundary. */
29 uniqstr file; member in struct:__anon377
53 b->file = f;
63 int res = strcmp (a.file, b.file);
77 && UNIQSTR_EQ (a.file, b.file));
101 /* Print location to file. Return number of actually printed
105 /* Free any allocated ressources and close any open file handle
[all...]
/external/chromium_org/base/android/java/src/org/chromium/base/
H A DContentUriUtils.java3 // found in the LICENSE file.
24 * Provides functionality to translate a file into a content URI for use
29 * Generate a content uri from the given file.
31 * @param file The file to be translated.
33 public Uri getContentUriFromFile(Context context, File file); argument
43 public static Uri getContentUriFromFile(Context context, File file) { argument
46 return sFileProviderUtil.getContentUriFromFile(context, file);
52 * Opens the content URI for reading, and returns the file descriptor to
53 * the caller. The caller is responsible for closing the file descipto
[all...]
/external/chromium_org/base/files/
H A Dmemory_mapped_file.cc3 // found in the LICENSE file.
53 bool MemoryMappedFile::Initialize(File file) { argument
54 return Initialize(file.Pass(), Region::kWholeFile);
57 bool MemoryMappedFile::Initialize(File file, const Region& region) { argument
61 file_ = file.Pass();
/external/chromium_org/base/
H A Dlogging_win.cc3 // found in the LICENSE file.
26 const char* file, int line, size_t message_start,
74 if (file == NULL)
75 file = "";
82 // The file.
83 event.SetField(3, strlen(file) + 1, file);
25 LogMessage(logging::LogSeverity severity, const char* file, int line, size_t message_start, const std::string& message) argument
/external/chromium_org/base/test/
H A Dtest_file_util_posix.cc3 // found in the LICENSE file.
24 // Deny |permission| on the file |path|.
48 *mode = stat_buf.st_mode & ~S_IFMT; // Filter out file/path kind.
74 bool DieFileDie(const FilePath& file, bool recurse) { argument
77 return DeleteFile(file, recurse);
81 bool EvictFileFromSystemCache(const FilePath& file) { argument
/external/chromium_org/base/third_party/xdg_user_dirs/
H A Dxdg_user_dir_lookup.cc2 This file is not licenced under the GPL like the rest of the code.
51 FILE *file; local
84 file = fopen (config_file, "r");
86 if (file == NULL)
90 while (fgets (buffer, sizeof (buffer), file))
162 fclose (file);
/external/chromium_org/chrome/browser/extensions/api/log_private/
H A Dlog_private_apitest_chromeos.cc3 // found in the LICENSE file.
34 base::File file,
37 base::File* file_param = new base::File(file.Pass());
46 base::File* file) {
49 << "Cannot read content of file " << test_tar_file.value();
51 EXPECT_EQ(data_size, file->Write(0, test_file_content.data(), data_size));
52 EXPECT_TRUE(file->SetLength(data_size));
53 file->Close();
45 GenerateTestLogDumpFile(const base::FilePath& test_tar_file, base::File* file) argument
/external/chromium_org/chrome/browser/net/
H A Dnet_log_temp_file.cc3 // found in the LICENSE file.
56 dict->SetString("file", log_path_.LossyDisplayName());
114 // Try to make sure we can create the file.
116 // to the user if we couldn't create the file.
117 FILE* file = base::OpenFile(log_path_, "w"); local
118 if (file == NULL)
122 net_log_logger_.reset(new net::NetLogLogger(file, *constants));
/external/chromium_org/chrome/browser/supervised_user/experimental/
H A Dsupervised_user_blacklist.cc3 // found in the LICENSE file.
27 base::MemoryMappedFile file; local
28 file.Initialize(path);
29 if (!file.IsValid())
32 size_t size = file.length();
41 file.data() + i * base::kSHA1Length,
/external/chromium_org/chrome/installer/util/
H A Dcopy_tree_work_item_unittest.cc3 // found in the LICENSE file.
39 // Simple function to dump some text into a new file.
42 std::ofstream file; local
43 file.open(filename.c_str());
44 ASSERT_TRUE(file.is_open());
45 file << contents;
46 file.close();
62 // Simple function to read text from a file.
65 std::wifstream file; local
66 file
[all...]
H A Ddelete_tree_work_item.cc3 // found in the LICENSE file.
74 HANDLE file = ::CreateFile(key_file.value().c_str(), FILE_ALL_ACCESS, local
77 if (file != INVALID_HANDLE_VALUE) {
78 VLOG(1) << "Acquired exclusive lock for key file: " << key_file.value();
79 opened_key_files.push_back(file);
158 // This could happen if we could not delete the key file to begin with.
159 PLOG(WARNING) << "Rollback: Failed to move backup file back in place: "
H A Dmove_tree_work_item_unittest.cc3 // found in the LICENSE file.
33 // Simple function to dump some text into a new file.
36 std::wofstream file; local
37 file.open(base::UTF16ToASCII(filename).c_str());
38 ASSERT_TRUE(file.is_open());
39 file << contents;
40 file.close();
43 // Simple function to read text from a file.
46 std::wifstream file; local
47 file
[all...]
/external/chromium_org/chrome/renderer/spellchecker/
H A Dhunspell_engine.cc3 // found in the LICENSE file.
48 void HunspellEngine::Init(base::File file) { argument
52 file_ = file.Pass();
H A Dspellcheck_language.cc3 // found in the LICENSE file.
19 void SpellcheckLanguage::Init(base::File file, const std::string& language) { argument
21 platform_spelling_engine_->Init(file.Pass());
/external/chromium_org/components/component_updater/test/
H A Dcomponent_patcher_unittest.cc3 // found in the LICENSE file.
57 base::FilePath test_file(const char* file) { argument
61 .AppendASCII("component_updater").AppendASCII(file);

Completed in 1577 milliseconds

<<11121314151617181920>>