/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/ |
RSSFeedPublisherTask.java | 16 import java.io.File; 32 * file - path to the XML file that will be published - eg., /path/to/file.to.publish.xml 35 * cvsRoot - cvs root used to commit the file - eg., username@cvsserver:/cvsroot/path 40 * scpTarget - scp target path for publishing the file - eg., username@server:/path/to/target/file.xml 53 private static final String FS = File.separator; 64 private File file; field in class:RSSFeedPublisherTask 130 if (debug>0) { System.out.println(Messages.getString("RSSFeedPublisherTask.Publish") + SP + file); } \/\/$NON-NLS-1\$ local [all...] |
/external/elfutils/src/libdwfl/ |
linux-proc-maps.c | 3 This file is part of elfutils. 5 This file is free software; you can redistribute it and/or modify 83 to open and read the "/proc/%d/exe" file. 179 proc_maps_report (Dwfl *dwfl, FILE *f, GElf_Addr sysinfo_ehdr, pid_t pid) 239 char *file = line + nread + strspn (line + nread, " \t"); local 240 if (file[0] != '/' || (ino == 0 && dmajor == 0 && dminor == 0)) 241 /* This line doesn't indicate a file mapping. */ 247 /* This is another portion of the same file's mapping. */ 248 if (strcmp (last_file, file) != 0) 254 /* This is a different file mapping. Report the last one. * [all...] |
/external/emma/core/java12/com/vladium/emma/ |
EMMAProperties.java | 11 import java.io.File; 44 public static final String PROPERTY_META_DATA_OUT_FILE = PREFIX_META_DATA + "out.file"; 50 public static final String PROPERTY_COVERAGE_DATA_OUT_FILE = PREFIX_COVERAGE_DATA + "out.file"; 56 public static final String PROPERTY_SESSION_DATA_OUT_FILE = PREFIX_SESSION_DATA + "out.file"; 143 final File file = fileName != null local 144 ? new File (fileName) 147 systemFile = wrap (Property.getLazyPropertiesFromFile (file)); 156 // (3) system file properties ("emma.properties" system property, 157 // interpreted as a property file) [all...] |
/external/emma/core/java12/com/vladium/util/ |
Property.java | 12 import java.io.File; 109 final File file = fileName != null local 110 ? new File (fileName) 113 systemFileOverrides = Property.getLazyPropertiesFromFile (file); 277 * Loads 'file' as a .properties file. 279 * @param file [may not be null] 281 * @throws IOException on any file I/O errors 283 public static Properties getPropertiesFromFile (final File file [all...] |
/external/f2fs-tools/lib/ |
libf2fs.c | 369 FILE *file = NULL; local 372 file = setmntent(mpt, "r"); 373 if (file == NULL) 376 while ((mnt = getmntent(file)) != NULL) { 380 endmntent(file); 396 * if failed due to /etc/mtab file not present 407 * the file system. In this case, we should not format.
|
/external/f2fs-tools/tools/ |
f2fs_io_parse.c | 111 printf(" -a RW sorted by pid & file types\n"); 112 printf(" -f RW sorted by file types\n"); 145 printf("\tError: Log file is not specified.\n"); 208 static void do_parse(FILE *file) 214 while (fgets(line, sizeof(line), file) != NULL) { 272 printf("\n===== Data R/W in 4KB accoring to File types =====\n"); 303 FILE *file; local 308 file = fopen(argv[opt], "r") [all...] |
/external/glide/library/src/main/java/com/bumptech/glide/load/data/ |
MediaStoreThumbFetcher.java | 12 import java.io.File; 100 public boolean exists(File file) { 101 return file.exists(); 104 public long length(File file) { 105 return file.length(); 108 public File get(String path) { 109 return new File(path); 140 File file = service.get(path) local [all...] |
/external/google-breakpad/src/common/ |
module.h | 36 // symbol file. 59 // --- possibly both from the same file --- and then writing out the 60 // unified contents as a Breakpad-format symbol file. 65 struct File; 70 // Addresses appearing in File, Function, and Line structures are 75 // A source file. 76 struct File { 77 explicit File(const string &name_input) : name(name_input), source_id(0) {} 79 // The name of the source file. 82 // The file's source id. The Write member function clears thi 123 File *file; \/\/ The source file. member in struct:google_breakpad::Module::Line [all...] |
/external/google-breakpad/src/common/windows/ |
http_upload.cc | 296 // Now append the upload file as a binary (octet-stream) part 329 // not exist in earlier versions, so let the ifstream open the file itself. 330 // GCC doesn't support wide file name and opening on FILE* requires ugly 331 // hacks, so fallback to multi byte file. 333 ifstream file; local 334 file.open(filename.c_str(), ios::binary); 336 ifstream file(WideToMBCP(filename, CP_ACP).c_str(), ios::binary); 338 if (file.is_open()) { 339 file.seekg(0, ios::end) [all...] |
/external/google-breakpad/src/testing/gtest/include/gtest/internal/ |
gtest-death-test-internal.h | 34 // This header file defines internal utilities needed for implementing 80 const char* file, int line, DeathTest** test); 144 const char* file, int line, DeathTest** test) = 0; 151 const char* file, int line, DeathTest** test); 248 String file() const { return file_; } function in class:testing::internal::InternalRunDeathTestFlag
|
/external/google-breakpad/src/testing/gtest/src/ |
gtest-filepath.cc | 68 // noted, a file path can contain either kind of path separators, or a mixture 115 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns 116 // FilePath("dir/file"). If a case-insensitive extension is not 143 // Example: FilePath("path/to/file").RemoveDirectoryName() returns 144 // FilePath("file"). If there is no directory part ("just_a_file"), it returns 145 // the FilePath unmodified. If there is no file part ("just_a_dir/") it 154 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/". 157 // not have a file, like "just/a/dir/", it returns the FilePath unmodified. 180 String file; local 182 file = String::Format("%s.%s", base_name.c_str(), extension) [all...] |
/external/gtest/include/gtest/internal/ |
gtest-death-test-internal.h | 34 // This header file defines internal utilities needed for implementing 80 const char* file, int line, DeathTest** test); 144 const char* file, int line, DeathTest** test) = 0; 151 const char* file, int line, DeathTest** test); 248 const std::string& file() const { return file_; } function in class:testing::internal::InternalRunDeathTestFlag
|
/external/gtest/src/ |
gtest-filepath.cc | 69 // noted, a file path can contain either kind of path separators, or a mixture 116 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns 117 // FilePath("dir/file"). If a case-insensitive extension is not 145 // Example: FilePath("path/to/file").RemoveDirectoryName() returns 146 // FilePath("file"). If there is no directory part ("just_a_file"), it returns 147 // the FilePath unmodified. If there is no file part ("just_a_dir/") it 156 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/". 159 // not have a file, like "just/a/dir/", it returns the FilePath unmodified. 182 std::string file; local 184 file = base_name.string() + "." + extension [all...] |
/external/guava/guava/src/com/google/common/io/ |
FileBackedOutputStream.java | 5 * you may not use this file except in compliance with the License. 24 import java.io.File; 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). */ 63 @VisibleForTesting synchronized File getFile() { 64 return file; 68 * Creates a new instance that uses the given file threshold, and does 73 * switch to buffering to a file [all...] |
/external/icu/icu4c/source/common/ |
brkeng.cpp | 309 UDataMemory *file = udata_open(U_ICUDATA_BRKITR, ext.data(), dictnbuf.data(), &status); local 312 const uint8_t *data = (const uint8_t *)udata_getMemory(file); 320 m = new BytesDictionaryMatcher(characters, transform, file); 324 m = new UCharsDictionaryMatcher(characters, file); 329 udata_close(file);
|
brkiter.cpp | 7 * File brkiter.cpp 18 // This file was generated from the java source file BreakIterator.java 77 // Get the string object naming the rules file 107 UDataMemory* file = udata_open(U_ICUDATA_BRKITR, ext, fnbuff, &status); local 114 result = new RuleBasedBreakIterator(file, status); 132 udata_close(file);
|
umapfile.c | 12 * Memory mapped file wrappers for use by the ICU Data Implementation 77 * Memory Mapped File support. Platform dependent implementation of * 85 return FALSE; /* no file access */ 96 const char *path /* File path to be opened/mapped */ 100 HANDLE file; local 107 /* open the input file */ 108 file=CreateFileA(path, GENERIC_READ, FILE_SHARE_READ, NULL, 111 if(file==INVALID_HANDLE_VALUE) { 131 /* create an unnamed Windows file-mapping object for the specified file */ 233 FILE *file; local [all...] |
/external/icu/icu4c/source/tools/toolutil/ |
pkg_gencmn.c | 26 /* ICU package data file format (.dat files) ------------------------------- *** 28 Description of the data format after the usual ICU data file header 33 A .dat package file contains a simple Table of Contents of item names, 57 the .dat file length, and the length of all previous items is the difference 85 } File; 88 static File *files = NULL; 124 FileStream *in, *file; local 154 fprintf(stderr, "gencmn: unable to open input file %s\n", dataFile); 161 printf("generating %s_%s.c (table of contents source file)\n", name, type); 163 printf("generating %s.%s (common data file with table of contents)\n", name, type) 419 FileStream *file; local [all...] |
ppucd.h | 6 * file name: ppucd.h 64 /** No line, end of file. */ 105 * Reads a line from the preparsed UCD file. 158 FILE *file; member in class:PreparsedUCD
|
toolutil.cpp | 8 * file name: toolutil.c 18 * This file contains utility functions for ICU tools like genccode. 107 HANDLE file=FindFirstFileA(pathname, &info); local 108 if(file!=INVALID_HANDLE_VALUE) { 110 /* this file has a short name, get and use the long one */ 119 FindClose(file); 210 uprv_fileExists(const char *file) { 212 if (stat(file, &stat_buf) == 0) {
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
CoverageTest.java | 13 import java.io.File; 58 File dir = new File(path); 68 File file = new File(path + File.separator + className + ".dat"); local 71 stream = new FileOutputStream(file); 74 System.out.print(" - can't write file!");
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
TestUtil.java | 10 import java.io.File; 24 * Return an input stream on the data file at path 'name' rooted at the data path 40 * Return a buffered reader on the data file at path 'name' rooted at the data path. 52 * Return a buffered reader on the data file at path 'name' rooted at the data path, 204 File file = new File(dir + filename); local 207 new FileInputStream(file),
|
/external/iputils/ |
tftpd.c | 46 * Trivial file transfer protocol server. 269 FILE *file; variable 272 * Validate file access. Since we 274 * file to exist and be publicly 277 * from inetd then the file must also be 326 file = fdopen(fd, (mode == RRQ)? "r":"w"); 327 if (file == NULL) { 347 * Send the requested file. 361 size = readit(file, &dp, pf->f_convert) [all...] |
/external/jetty/src/java/org/eclipse/jetty/webapp/ |
WebAppClassLoader.java | 21 import java.io.File; 45 * Specializes URLClassLoader with some utility and file mapping 235 // Resolve file path if possible 236 File file= resource.getFile(); local 237 if (file != null) 245 throw new IllegalArgumentException("!file: "+resource); 252 * @param file Checks if this file type can be added to the classpath. 254 private boolean isFileSupported(String file) [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/ |
Field.java | 1 package com.jme3.scene.plugins.blender.file;
5 import com.jme3.scene.plugins.blender.file.Structure.DataType;
80 * an exception is thrown when the blend file is somehow invalid or corrupted
|