Searched defs:file (Results 451 - 475 of 1831) sorted by relevance

<<11121314151617181920>>

/external/emma/core/java12/com/vladium/emma/
H A DrunCommand.java121 // user '-props' file property overrides:
143 usageexit (parser, IOptsParser.SHORT_USAGE, "missing jar file name");
260 // TODO: save stack trace in a file and prompt user to send it to ...
294 private static String openJarFile (final File file) argument
300 jarfile = new JarFile (file, false);
/external/emma/core/java12/com/vladium/util/
H A DFiles.java141 public static File canonicalizeFile (final File file) argument
143 if (file == null) throw new IllegalArgumentException ("null input: file");
147 return file.getCanonicalFile ();
151 return file.getAbsoluteFile ();
156 * Invariant: (getFileName (file) + getFileExtension (file)).equals (file.getName ()).
158 * @param file File input file descripto
165 getFileName(final File file) argument
186 getFileExtension(final File file) argument
203 newFile(final File dir, final File file) argument
218 newFile(final File dir, final String file) argument
234 newFile(final String dir, final String file) argument
[all...]
/external/guava/guava/src/com/google/common/io/
H A DFileBackedOutputStream.java5 * you may not use this file except in compliance with the License.
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). */
64 return file;
68 * Creates a new instance that uses the given file threshold, and does
73 * switch to buffering to a file
80 * Creates a new instance that uses the given file threshold, and
85 * switch to buffering to a file
130 if (file !
[all...]
/external/icu/icu4c/source/common/
H A Ddictionarydata.h82 UCharsDictionaryMatcher(const UChar *c, UDataMemory *f) : characters(c), file(f) { }
89 UDataMemory *file; member in class:UCharsDictionaryMatcher
96 // the transform constant should be the constant read from the file, not a masked version!
99 : characters(c), transformConstant(t), file(f) { }
109 UDataMemory *file; member in class:BytesDictionaryMatcher
121 * A dictionary .dict data file contains a byte-serialized BytesTrie or
128 * A .dict file begins with a standard ICU data file header
132 * After the header, the file contains the following parts.
142 * Each byte offset marks the start of the next part in the data file,
[all...]
/external/icu/icu4c/source/test/perf/ubrkperf/
H A Dubrkperf.h23 ICUBreakFunction(const char *locale, const char *mode, const UChar *file, int32_t file_len) : argument
25 m_file_(file),
59 ICUIsBound(const char *locale, const char *mode, const UChar *file, int32_t file_len) : argument
60 ICUBreakFunction(locale, mode, file, file_len)
86 ICUForward(const char *locale, const char *mode, const UChar *file, int32_t file_len) : argument
87 ICUBreakFunction(locale, mode, file, file_len)
/external/icu/icu4c/source/tools/gencfu/
H A Dgencfu.cpp17 // Usage: gencfu [options] -r confusables-file.txt -w whole-script-confusables.txt -o output-file.cfu
62 printf("Usage: %s [-v] [-options] -r confusablesRules.txt -w wholeScriptConfusables.txt -o output-file\n", progName);
156 fprintf(stderr, "confusables file, whole script confusables file and output file must all be specified.\n");
169 /* Combine the directory with the file name */
178 // spoof detection data file parsing is dependent on regular expressions.
189 /* write the dummy data file */
205 // Read in the confusables source file
305 FILE *file; local
[all...]
/external/icu/icu4c/source/tools/gentest/
H A Dgentest.c8 * file name: gentest.c
16 * This program writes a little data file for testing the udata API.
80 "\tcreate the test file " DATA_NAME "." DATA_TYPE " unless the -r option is given.\n"
84 "\t\t-r or --genres generate resource file testtable32.txt instead of UData test \n"
95 /* printf("Generating the test memory mapped file\n"); */
101 /* Create data file ----------------------------------------------------- */
118 /* write the data to the file */
126 fprintf(stderr, "gentest: error %d writing the output file\n", *errorCode);
139 /* Create Java file ----------------------------------------------------- */
144 char file[51 local
[all...]
/external/icu/icu4c/source/tools/toolutil/
H A Dpkg_icu.cpp22 // read a file list -------------------------------------------------------- ***
35 /* check for multiple text file suffixes to see if this list name is a text file name */
52 * Read a file list.
53 * If the listname ends with ".txt", then read the list file
55 * If the listname ends with ".dat", then read the ICU .dat package file.
56 * Otherwise, read the file itself as a single-item list.
61 FILE *file; local
65 fprintf(stderr, "missing list file\n");
79 // read the list file
[all...]
/external/iproute2/ip/
H A Drtmon.c61 fprintf(stderr, "Usage: rtmon file FILE [ all | LISTofOBJECTS]\n");
76 char *file = NULL; local
105 } else if (matches(argv[1], "file") == 0) {
110 file = argv[1];
131 if (file == NULL) {
132 fprintf(stderr, "Not enough information: argument \"file\" is required\n");
150 fp = fopen(file, "w");
/external/iproute2/misc/
H A Dlnstat.h17 struct lnstat_file *file; member in struct:lnstat_field
/external/iptables/extensions/
H A Dlibipt_realm.c36 const char file[] = "/etc/iproute2/rt_realms"; local
37 realms = xtables_lmap_init(file);
39 fprintf(stderr, "Warning: %s: %s\n", file, strerror(errno));
/external/jpeg/
H A Drdswitch.c5 * This file is part of the Independent JPEG Group's software.
6 * For conditions of distribution and use, see the accompanying README file.
8 * This file contains routines to process some of cjpeg's more complicated
10 * -qtables file Read quantization tables from text file
11 * -scans file Read scan script from text file
21 text_getc (FILE * file) argument
27 ch = getc(file);
30 ch = getc(file);
[all...]
/external/libcxxabi/src/Unwind/
H A Dconfig.h5 // This file is dual licensed under the MIT and the University of Illinois Open
63 static inline void assert_rtn(const char* func, const char* file, int line, const char* msg) __attribute__ ((noreturn));
64 static inline void assert_rtn(const char* func, const char* file, int line, const char* msg) { argument
65 fprintf(stderr, "libunwind: %s %s:%d - %s\n", func, file, line, msg);
/external/libmtp/examples/
H A Dpathutils.c2 * \file pathutils.c
72 /* if not number, assume a file name */
74 LIBMTP_file_t * file = files; local
77 while (file != NULL) {
78 if (strcasecmp (file->filename, path) == 0) {
79 return file->item_id;
81 file = file->next;
94 LIBMTP_file_t * file; local
96 file
[all...]
/external/libvpx/libvpx/vpx_mem/include/
H A Dvpx_mem_tracker.h5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
30 char *file; member in struct:mem_block
65 char * file, unsigned int line)
68 file - the file addr was referenced from
69 line - the line in file addr was referenced from
70 Adds memory address addr, it's size, file and line it came from
74 char *file, unsigne
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dattr.c11 * are stored into separate text file. Once perf command is finished
57 if (1 != fwrite(buf, size, 1, file)) { \
58 perror("test attr - failed to write event file"); \
59 fclose(file); \
70 FILE *file; local
76 file = fopen(path, "w+");
77 if (!file) {
78 perror("test attr - failed to open event file");
82 if (fprintf(file, "[event-%d-%llu-%d]\n",
84 perror("test attr - failed to write event file");
[all...]
/external/lldb/include/lldb/Symbol/
H A DObjectContainer.h5 // This file is distributed under the University of Illinois Open Source
47 /// supplied upon construction. The at an offset within a file for
51 const FileSpec *file,
57 m_file (), // This file can be different than the module's file spec
62 if (file)
63 m_file = *file;
118 /// Returns the offset into a file at which this object resides.
121 /// access to an object's offset within the file.
124 /// The offset in bytes into the file
50 ObjectContainer(const lldb::ModuleSP &module_sp, const FileSpec *file, lldb::offset_t file_offset, lldb::offset_t length, lldb::DataBufferSP& data_sp, lldb::offset_t data_offset) argument
[all...]
/external/lldb/source/Core/
H A DDataBufferMemoryMap.cpp5 // This file is distributed under the University of Illinois Open Source
98 // Memory map "length" bytes from "file" starting "offset"
99 // bytes into the file. If "length" is set to SIZE_MAX, then
116 log->Printf("DataBufferMemoryMap::MemoryMapFromFileSpec(file=\"%s\", offset=0x%" PRIx64 ", length=0x%" PRIx64 ", writeable=%i",
129 File file; local
130 Error error (file.Open(path, options));
134 return MemoryMapFromFileDescriptor (file.GetDescriptor(), offset, length, writeable, fd_is_file);
145 // The file descriptor FD is assumed to already be opened as read only
150 // the file. If FILE_LENGTH is set to SIZE_MAX, then map as many bytes
217 // Failed to map file
[all...]
/external/lldb/tools/lldb-perf/lib/
H A DResults.cpp5 // This file is distributed under the University of Illinois Open Source
173 CFURLRef file = CFURLCreateFromFileSystemRepresentation(NULL, (const UInt8*)out_path, strlen(out_path), FALSE); local
175 CFURLWriteDataAndPropertiesToResource(file, xmlData, NULL, NULL);
/external/llvm/lib/Support/
H A DErrorHandling.cpp5 // This file is distributed under the University of Illinois Open Source
10 // This file defines an API used to indicate fatal error conditions. Non-fatal
105 void llvm::llvm_unreachable_internal(const char *msg, const char *file, argument
113 if (file)
114 dbgs() << " at " << file << ":" << line;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_linkage.c45 util_semantic_set_from_program_file(struct util_semantic_set *set, const struct tgsi_token *tokens, enum tgsi_file_type file) argument
55 if(file == TGSI_FILE_INPUT)
60 else if(file == TGSI_FILE_OUTPUT)
85 if(finst->Dst[i].Register.File == file)
98 if(finst->Src[i].Register.File == file)
/external/mesa3d/src/gallium/drivers/nvc0/codegen/
H A Dnv50_ir_target_nvc0.cpp333 TargetNVC0::getFileSize(DataFile file) const
335 switch (file) {
350 assert(!"invalid file");
356 TargetNVC0::getFileUnit(DataFile file) const
358 if (file == FILE_GPR || file == FILE_ADDRESS || file == FILE_SYSTEM_VALUE)
446 TargetNVC0::isAccessSupported(DataFile file, DataType ty) const argument
450 if (file == FILE_MEMORY_CONST && getChipset() >= 0xe0) // wrong encoding ?
453 return (file
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program_pair.c40 rc_register_file file, unsigned int index)
48 if ((!rgb && !alpha) || file == RC_FILE_NONE)
52 if (file == RC_FILE_PRESUB) {
68 if (pair->RGB.Src[i].File != file ||
78 if (pair->Alpha.Src[i].File != file ||
92 if (file == RC_FILE_PRESUB) {
103 pair->RGB.Src[candidate].File = file;
106 /* For registers with the RC_FILE_PRESUB file,
116 pair->Alpha.Src[candidate].File = file;
119 /* For registers with the RC_FILE_PRESUB file,
38 rc_pair_alloc_source(struct rc_pair_instruction *pair, unsigned int rgb, unsigned int alpha, rc_register_file file, unsigned int index) argument
[all...]
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_tgsi_to_rc.c158 static unsigned translate_register_file(unsigned file) argument
160 switch(file) {
166 fprintf(stderr, "Unhandled register file: %i\n", file);
175 unsigned file,
178 if (file == TGSI_FILE_IMMEDIATE)
173 translate_register_index( struct tgsi_to_rc * ttr, unsigned file, int index) argument
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
H A DAbstractTransformTask.java5 * use this file except in compliance with the License. You may obtain a copy of
53 protected void processFile(File file) throws Exception { argument
55 if (isClassFile(file)) {
57 processClassFile(file);
59 } else if (isJarFile(file)) {
61 processJarFile(file);
65 log("ignoring " + file.toURL(), Project.MSG_WARN);
71 * @param file
77 private void processClassFile(File file) throws Exception, argument
80 ClassReader reader = getClassReader(file);
107 getClassReader(File file) argument
118 isClassFile(File file) argument
124 processJarFile(File file) argument
252 checkMagic(File file, long magic) argument
262 isJarFile(File file) argument
[all...]

Completed in 482 milliseconds

<<11121314151617181920>>