Searched refs:file (Results 351 - 375 of 2668) sorted by relevance

<<11121314151617181920>>

/external/llvm/test/MC/AsmParser/
H A Ddirective_abort.s2 # RUN: FileCheck -input-file %t %s
/external/proguard/src/proguard/
H A DUpToDateChecker.java120 * Returns the minimum or maximum modification time of the given file or
123 private long lastModified(File file, boolean minimum) argument
126 if (file.isDirectory())
129 File[] files = file.listFiles();
149 // Return the file's modification time.
150 return file.lastModified();
/external/qemu/android/utils/
H A Dlineinput.h23 LineInput* lineInput_newFromStdFile( FILE* file );
28 * Returns NULL in case of error, or when the end of file is reached.
44 /* Returns TRUE iff the end of file was reached */
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtesticonv.c36 FILE *file; local
42 file = fopen(argv[1], "rb");
43 if ( !file ) {
48 while ( fgets(buffer, sizeof(buffer), file) ) {
/external/qemu/
H A Dgen-skin.py3 # a python script used to generate the "default-skin.h' header file
32 for file in files:
33 fp = open(basepath + "/" + file, "rb")
37 data_name = "_data_" + string.replace(file,".","_")
39 entries.append( (file, data_name, len(data)) )
/external/skia/emoji/
H A DGmojiMaker.cpp54 FILE* file = fopen(argv[1], "r"); local
55 if (NULL == file) {
64 if (fgets(buffer, sizeof(buffer), file) == 0) {
101 printf("// Input text file \"%s\"\n", argv[1]);
126 fclose(file);
/external/sonivox/arm-fm-22k/host_src/
H A Deas_report.h7 * This file contains the debug message handling routines for the EAS library.
15 * you may not use this file except in compliance with the License.
71 extern void EAS_SetDebugFile (void *file, int flushAfterWrite);
/external/sonivox/arm-hybrid-22k/host_src/
H A Deas_report.h7 * This file contains the debug message handling routines for the EAS library.
15 * you may not use this file except in compliance with the License.
71 extern void EAS_SetDebugFile (void *file, int flushAfterWrite);
/external/sonivox/arm-wt-22k/host_src/
H A Deas_report.h7 * This file contains the debug message handling routines for the EAS library.
15 * you may not use this file except in compliance with the License.
71 extern void EAS_SetDebugFile (void *file, int flushAfterWrite);
/external/webkit/Source/WebCore/fileapi/
H A DFileEntrySync.cpp46 PassRefPtr<File> FileEntrySync::file(ExceptionCode& ec) function in class:WebCore::FileEntrySync
/external/webkit/Tools/Scripts/
H A Droll-over-ChangeLogs43 File.open path, "w" do |file|
44 file.write "== Rolled over to ChangeLog#{date_suffix} ==\n"
H A Dparse-malloc-history29 # Parses the callstacks in a file with malloc_history formatted content, sorting
63 open FILE, "<$fileName" or die "bad file: $fileName";
64 my @file = <FILE>;
70 for (my $i = 0; $i < @file; $i++) {
71 my $line = $file[$i];
89 $line = $file[$i];
102 $line = $file[++$i];
104 while ($file[$i+1] !~ /^(?:-|\d)/) {
110 $line = $file[++$i];
/external/e2fsprogs/misc/
H A Dismounted.c7 * This file may be redistributed under the terms of the GNU Public
73 * Helper function which checks a file in /etc/mtab format to see if a
74 * filesystem is mounted. Returns an error if the file doesn't exist
77 static errcode_t check_mntent_file(const char *mtab_file, const char *file, argument
91 if (stat(file, &st_buf) == 0) {
117 if (strcmp(file, device) == 0)
169 mtab_file, file, mnt_dir);
185 int is_mounted(const char *file) argument
191 retval = check_mntent_file("/proc/mounts", file, &mount_flags);
197 retval = check_mntent_file("/etc/mtab", file,
[all...]
/external/littlemock/src/com/google/testing/littlemock/
H A DAppDataDirGuesser.java5 * use this file except in compliance with the License. You may obtain a copy of
132 boolean fileOrDirExists(File file) { argument
133 return file.exists();
137 boolean makeDirectory(File file) { argument
138 return file.mkdir();
142 boolean isWriteableDirectory(File file) { argument
143 return file.isDirectory() && file.canWrite();
/external/zlib/src/
H A Dgzread.c46 file is reached, even though there may be unused data in the buffer. Once
47 that data has been used, no more attempts will be made to read the file.
50 available data from the input file. */
82 case, all further file reads will be directly to either the output buffer or
130 gzip file, to wit, if a single 31 byte is written, then we cannot tell
131 whether this is a single-byte file, or just a partially written gzip
132 file -- for here we assume that if a gzip file is being written, then
134 single byte is sufficient indication that it is not a gzip file) */
185 gz_error(state, Z_BUF_ERROR, "unexpected end of file");
[all...]
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_store_file_unittest.cc3 // found in the LICENSE file.
32 // Make sure an old temporary file isn't hanging around.
69 // Starting a transaction creates a temporary file.
80 // Make sure the temporary file is deleted.
112 file_util::ScopedFILE file(file_util::OpenFile(filename_, "rb+"));
114 EXPECT_EQ(fseek(file.get(), kOffset, SEEK_SET), 0);
117 EXPECT_EQ(fread(&previous, sizeof(previous), 1, file.get()), 1U);
119 EXPECT_EQ(fseek(file.get(), kOffset, SEEK_SET), 0);
120 EXPECT_EQ(fwrite(&kZero, sizeof(kZero), 1, file.get()), 1U);
121 file
[all...]
/external/chromium/net/disk_cache/
H A Dblock_files.cc3 // found in the LICENSE file.
164 // Returns true if the current block file should not be used as-is to store more
177 // This file is almost full but we already created another one, don't use
178 // this file yet so that it is easier to find empty blocks when we start
179 // using this file again.
233 // We need to open the file
250 MappedFile* file = FileForNewBlock(block_type, block_count);
251 if (!file)
254 BlockFileHeader* header = reinterpret_cast<BlockFileHeader*>(file->buffer());
284 MappedFile* file local
440 GrowBlockFile(MappedFile* file, BlockFileHeader* header) argument
471 MappedFile* file = block_files_[block_type - 1]; local
492 NextFile(const MappedFile* file) argument
526 MappedFile* file = block_files_[block_type - 1]; local
565 FixBlockFileHeader(MappedFile* file) argument
[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/libffi/testsuite/
H A Drun-all-tests6 # you may not use this file except in compliance with the License.
100 for file in $testFiles; do
101 echo "${file}..."
103 "$CC" -g -I"../${HOST_OS}-${HOST_ARCH}" -o "$execFile" "$file" "$libFile"
110 echo "${file}: OK"
112 echo "${file}: FAIL"
/external/protobuf/src/google/protobuf/testing/
H A Dfile.cc32 // emulates google3/file/base/file.cc
34 #include <google/protobuf/testing/file.h>
67 FILE* file = fopen(name.c_str(), "rb"); local
68 if (file == NULL) return false;
71 size_t n = fread(buffer, 1, sizeof(buffer), file);
76 int error = ferror(file);
77 if (fclose(file) != 0) return false;
86 FILE* file = fopen(name.c_str(), "wb"); local
87 GOOGLE_CHECK(file !
[all...]
/external/skia/src/effects/
H A DSkEmbossMask.cpp6 * found in the LICENSE file.
55 FILE* file = ::fopen("SkEmbossMask_Table.h", "w"); local
56 SkASSERT(file);
57 ::fprintf(file, "#include \"SkTypes.h\"\n\n");
58 ::fprintf(file, "static const U16 gInvSqrtTable[128 * 128] = {\n");
62 ::fprintf(file, "\t");
66 ::fprintf(file, "0x%04X", value);
68 ::fprintf(file, ", ");
71 ::fprintf(file, "\n");
75 ::fprintf(file, "};\
[all...]
/external/webkit/Source/WebKit/android/plugins/
H A DANPSystemInterface.cpp184 PLUGIN_LOG(". file: %s", entry->d_name);
190 char* file = (char*) malloc(strlen(path) + strlen(separator) + strlen(entry->d_name) + 1); local
191 strcpy(file, path);
192 strcat(file, separator);
193 strcat(file, entry->d_name);
195 if (isDirectory(file) == true) {
196 PLUGIN_LOG("remove dir: %s", file);
197 removeDirectory(file);
198 } else { // it's a file, we can use remove
199 PLUGIN_LOG("remove file
[all...]
/external/chromium/chrome/common/
H A Dwin_safe_util.cc3 // found in the LICENSE file.
40 // user can select for different file types.
50 // To help windows decide if the downloaded file is dangerous we can provide
53 // Set the file itself as evidence.
68 // "windows found that this file is potentially harmful. To help protect
69 // your computer, Windows has blocked access to this file."
70 // Upon dismissal of the dialog windows will delete the file (!!).
90 HANDLE file = CreateFile(path.c_str(), GENERIC_WRITE, kShare, NULL, local
92 if (INVALID_HANDLE_VALUE == file)
99 BOOL result = WriteFile(file, kIdentifie
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DClassDataItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
38 * {@code dex} file, as opposed to a random-access form.
63 * {@code null-ok;} encoded form, ready for writing to a file; set during
226 public void addContents(DexFile file) { argument
230 field.addContents(file);
237 field.addContents(file);
244 method.addContents(file);
251 method.addContents(file);
337 * @param file {
340 encodeOutput(DexFile file, AnnotatedOutput out) argument
372 encodeSize(DexFile file, AnnotatedOutput out, String label, int size) argument
392 encodeList(DexFile file, AnnotatedOutput out, String label, ArrayList<? extends EncodedMember> list) argument
412 writeTo0(DexFile file, AnnotatedOutput out) argument
[all...]
H A DTypeListItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
66 public void addContents(DexFile file) { argument
67 TypeIdsSection typeIds = file.getTypeIds();
92 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
93 TypeIdsSection typeIds = file.getTypeIds();

Completed in 611 milliseconds

<<11121314151617181920>>