/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/ |
FetchBaseTask.java | 13 import java.io.File; 50 File file=new File(mapFile); local 53 properties.load(new FileInputStream(file)); 164 PrintWriter out = new PrintWriter(new FileWriter(new File(outputFile)));
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/ |
RSSFeedUpdateEntryTask.java | 13 import java.io.File; 49 * file - path to the XML file that will be read - eg., /path/to/file.to.read.xml 69 private File file; field in class:RSSFeedUpdateEntryTask 84 public void setFile(String file) { 85 if (isNullString(file)) 88 { this.file = new File(file); } [all...] |
/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/ |
addr2line.c | 3 This file is part of Red Hat elfutils. 51 static void print_version (FILE *stream, struct argp_state *state); 52 void (*argp_program_version_hook) (FILE *, struct argp_state *) = print_version; 67 N_("Show absolute file names using compilation directory"), 0 }, 105 /* True if absolute file names based on DW_AT_comp_dir should be shown. */ 175 print_version (FILE *stream, struct argp_state *state __attribute__ ((unused))) 266 const char *file = dwarf_filesrc (files, val, NULL, NULL); local 279 if (file != NULL) 280 printf (" from %s", file); 283 printf (" at %s:%u", file, lineno) [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/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/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/icu4c/common/ |
brkeng.cpp | 303 UDataMemory *file = udata_open(U_ICUDATA_BRKITR, ext.data(), dictnbuf.data(), &status); local 306 const uint8_t *data = (const uint8_t *)udata_getMemory(file); 314 m = new BytesDictionaryMatcher(characters, transform, file); 318 m = new UCharsDictionaryMatcher(characters, file); 323 udata_close(file);
|
brkiter.cpp | 7 * File TXTBDRY.CPP 18 // This file was generated from the java source file BreakIterator.java 82 // Get the string object naming the rules file 114 UDataMemory* file = udata_open(U_ICUDATA_BRKITR, ext, fnbuff, &status); local 121 result = new RuleBasedBreakIterator(file, status); 138 udata_close(file);
|
umapfile.c | 12 * Memory mapped file wrappers for use by the ICU Data Implementation 74 * Memory Mapped File support. Platform dependent implementation of * 82 return FALSE; /* no file access */ 93 const char *path /* File path to be opened/mapped */ 97 HANDLE file; local 104 /* open the input file */ 105 file=CreateFileA(path, GENERIC_READ, FILE_SHARE_READ, NULL, 108 if(file==INVALID_HANDLE_VALUE) { 128 /* create an unnamed Windows file-mapping object for the specified file */ 230 FILE *file; local [all...] |
/external/icu4c/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. 96 HANDLE file=FindFirstFileA(pathname, &info); local 97 if(file!=INVALID_HANDLE_VALUE) { 99 /* this file has a short name, get and use the long one */ 108 FindClose(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/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
|
FileBlockHeader.java | 32 package com.jme3.scene.plugins.blender.file;
38 * A class that holds the header data of a file block. The file block itself is not implemented. This class holds its
61 /** Identifier of the file-block [4 bytes]. */
63 /** Total length of the data after the file-block-header [4 bytes]. */
66 * Memory address the structure was located when written to disk [4 or 8 bytes (defined in file header as a pointer
72 /** Number of structure located in this file-block [4 bytes]. */
158 * This method returns the start position of the data block in the blend file stream.
166 * This method indicates if the block is the last block in the file.
167 * @return true if this block is the last one in the file nad false otherwise [all...] |
Structure.java | 32 package com.jme3.scene.plugins.blender.file; 42 * A class representing a single structure in the file. 88 * this exception occurs if the amount of fields, defined in the file, is negative 115 * an exception is thrown when the blend file is somehow invalid or corrupted 166 * held by this structure within the blend file. 171 * this exception is thrown when the blend file structure is somehow invalid or corrupted 270 * This enum enumerates all known data types that can be found in the blend file. 303 * this exception is thrown if the given type name does not exist in the blend file
|
/external/jmonkeyengine/engine/src/test/jme3test/bullet/ |
TestQ3.java | 53 import java.io.File; 65 File file = new File("quake3level.zip"); local 66 if (!file.exists()) {
|
/external/jmonkeyengine/engine/src/test/jme3test/terrain/ |
TerrainGridSerializationTest.java | 23 import java.io.File; 38 File file = new File("TerrainGridTestData.zip"); local 39 if (!file.exists()) {
|
TerrainGridTest.java | 28 import java.io.File; 48 File file = new File("TerrainGridTestData.zip"); local 49 if (!file.exists()) {
|
TerrainGridTileLoaderTest.java | 26 import java.io.File; 46 File file = new File("TerrainGridTestData.zip"); local 47 if (!file.exists()) { 103 // BinaryExporter.getInstance().save(terrain, new File("/Users/normenhansen/Documents/Code/jme3/engine/src/test-data/TerrainGrid/"
|
/external/kernel-headers/original/linux/ |
binfmts.h | 29 struct file * file; member in struct:linux_binprm 59 int (*load_shlib)(struct file *); 60 int (*core_dump)(long signr, struct pt_regs * regs, struct file * file);
|
sync.h | 140 * @file: file representing this fence 153 struct file *file; member in struct:sync_fence 278 * file, and returns the fence. 292 * sync_fence_install() - installs a fence into a file descriptor 294 * @fd: file descriptor in which to install the fence 341 * @fd2: file descriptor of second fence
|
/external/libppp/src/ |
radius.h | 72 char file[PATH_MAX]; /* Radius config file */ member in struct:radius::__anon21081
|