/external/emma/core/java12/com/vladium/emma/report/lcov/ |
ReportGenerator.java | 34 import java.io.File; 103 * Visitor for top-level node; opens output file, enqueues packages. 107 File outFile = m_settings.getOutFile(); 110 outFile = new File("coverage.lcov"); 114 final File fullOutFile = Files.newFile(m_settings.getOutDir(), outFile); 175 /** Issue a coverage report for all lines in the file, and for each 176 * function in the file. 191 m_log.info("source file '" 199 // For each class in the file, for each method in the class, 250 // For each line in the file, emit a DA [all...] |
/external/fio/ |
client.h | 24 char *file; member in struct:client_file
|
iolog.h | 152 struct fio_file *file; member in union:io_piece::__anon9255
|
/external/google-breakpad/src/processor/ |
minidump_processor.cc | 307 BPLOG(INFO) << "Processing minidump in file " << minidump_file; 1521 string file = assertion->file(); local [all...] |
/external/icu/icu4c/source/test/cintltst/ |
cintltst.c | 8 * File CINTLTST.C 309 /* On Windows, the file name obtained from __FILE__ includes a full path. 310 * This file is "wherever\icu\source\test\cintltst\cintltst.c" 337 FILE *file = fopen(".."U_FILE_SEP_STRING".."U_FILE_SEP_STRING "data" U_FILE_SEP_STRING "Makefile.in", "r"); local 338 if (file) { 339 fclose(file); 376 /* On Windows, the file name obtained from __FILE__ includes a full path. 377 * This file is "wherever\icu\source\test\cintltst\cintltst.c" 404 FILE *file = fopen(".."U_FILE_SEP_STRING".."U_FILE_SEP_STRING "data" U_FILE_SEP_STRING "Makefile.in", " (…) local [all...] |
/external/icu/icu4c/source/test/iotest/ |
iotest.cpp | 6 * file name: iotest.cpp 84 /* On Windows, the file name obtained from __FILE__ includes a full path. 85 * This file is "wherever\icu\source\test\cintltst\cintltst.c" 112 FILE *file = fopen(".." U_FILE_SEP_STRING".." U_FILE_SEP_STRING "data" U_FILE_SEP_STRING "Makefile.in", "r"); local 113 if (file) { 114 fclose(file); 236 log_err("Can't open test file - %s\n", 320 log_err("Can't open test file - %s\n", 330 log_err("FAILURE file test case %d \"%s\" - Got: \"%s\" Expected: \"%s\"\n" 754 FILE *file = fopen(".." U_FILE_SEP_STRING ".." U_FILE_SEP_STRING "data" U_FILE_SEP_STRING "Makefile.in", "r"); local [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
CompatibilityTest.java | 13 import java.io.File; 156 File topDir = new File(fileURL.getPath()); 157 File dataDirs[] = topDir.listFiles(); 161 File dataDir = dataDirs[d]; 165 File files[] = dataDir.listFiles(); 174 File file = files[i]; local 175 String filename = file.getName(); 191 InputStream is = new FileInputStream(file); [all...] |
/external/javassist/src/main/javassist/tools/web/ |
Webserver.java | 5 * The contents of this file are subject to the Mozilla Public License Version 6 * 1.1 (the "License"); you may not use this file except in compliance with 7 * the License. Alternatively, the contents of this file may be used under 66 * <p>If the given URL indicates a class file and the class file 109 * <code>ClassPool</code> object for obtaining a class file. 117 * a class file. 120 * a class file. 268 if (File.separatorChar != '/') 269 filename = filename.replace('/', File.separatorChar) 271 File file = new File(filename); local [all...] |
/external/jetty/src/java/org/eclipse/jetty/util/resource/ |
Resource.java | 21 import java.io.File; 107 if( url_string.startsWith( "file:")) 120 else if( url_string.startsWith( "jar:file:")) 163 !resource.startsWith("file:") && 168 // It's a file. 172 File file=new File(resource).getCanonicalFile(); local 173 url=Resource.toURL(file); 177 return new FileResource(url,connection,file); [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/ |
BlenderInputStream.java | 32 package com.jme3.scene.plugins.blender.file;
55 * Size of a pointer; all pointers in the file are stored in this format. '_' means 4 bytes and '-' means 8 bytes.
62 /** Version of Blender the file was created in; '248' means version 2.48. */
80 * this exception is thrown if the file header has some invalid data
85 //the size value will canche while reading the file; the available() method cannot be counted on
95 //buffered input stream is used here for much faster file reading
106 throw new BlenderFileException("Problems occured while caching the file!", e);
111 } catch (BlenderFileException e) {//the file might be packed, don't panic, try one more time ;)
121 * the stream to read the file data from
142 * This method is used when the blender file is gzipped. It decompresses the data and stores it back into the [all...] |
/external/jmonkeyengine/engine/src/desktop/com/jme3/app/state/ |
VideoRecorderAppState.java | 15 import java.io.File; 23 * A Video recording AppState that records the screen output into an AVI file with 24 * M-JPEG content. The file should be playable on any OS in any video player.<br/> 26 * or the application is quit. You can set the fileName of the file to be written when the 27 * state is detached, else the old file will be overwritten. If you specify no file 28 * the AppState will attempt to write a file into the user home directory, made unique 36 private File file; field in class:VideoRecorderAppState 54 public VideoRecorderAppState(File file) [all...] |
/external/libvncserver/test/ |
tjunittest.c | 226 FILE *file=fopen(filename, "wb"); local 227 if(!file || fwrite(jpegBuf, jpegSize, 1, file)!=1) 234 if(file) fclose(file);
|
/external/libvncserver/x11vnc/ |
macosx.c | 5 This file is part of x11vnc. 28 modify this file, you may extend this exception to your version of the 29 file, but you are not obligated to do so. If you do not wish to do 171 char *atparms = NULL, *file = NULL; local 190 file = strdup(q+1); 193 if (! file || file[0] == '\0') { 194 file = strdup("/dev/null"); 196 rfbLog("console_guess: file is %s\n", file); [all...] |
/external/libvpx/libvpx/vpx_mem/ |
vpx_mem_tracker.c | 5 * 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. 16 Stores a list of addreses, their size, and file and line they came from. 43 #include <string.h> // VXWORKS doesn't have a malloc/memory.h file, 50 #undef vpx_free // memory functions in this file 81 static void memory_tracker_check_integrity(char *file, unsigned int line); 83 char *file, unsigned int line, 124 FILE *file; member in struct:__anon13942 [all...] |
/external/linux-tools-perf/src/tools/perf/ |
builtin-help.c | 126 const char *file = strrchr(path, '/'); local 127 if (file && !strcmp(file + 1, "konqueror")) { 135 if (file) 136 filename = file;
|
/external/linux-tools-perf/src/tools/perf/util/ |
pmu.c | 29 extern FILE *perf_pmu_in; 50 FILE *file; local 58 file = fopen(path, "r"); 59 if (!file) 62 perf_pmu_in = file; 64 fclose(file); 98 static int perf_pmu__new_alias(struct list_head *list, char *name, FILE *file) 104 ret = fread(buf, 1, sizeof(buf), file); 142 FILE *file; local 216 FILE *file; local 274 FILE *file; local [all...] |
/external/ltrace/sysdeps/linux-gnu/ |
proc.c | 2 * This file is part of ltrace. 63 * Returns a (malloc'd) file name corresponding to a running pid 82 static FILE * 95 find_line_starting(FILE * file, const char * prefix, size_t len) 99 while (!feof(file)) { 100 if (getline(&line, &line_len, file) < 0) 109 each_line_starting(FILE *file, const char *prefix, 117 while ((line = find_line_starting(file, prefix, len)) != NULL) 137 FILE * file = open_status_file(pid); local 159 FILE * file = open_status_file(pid); local 207 FILE * file = open_status_file(pid); local [all...] |
/external/mesa3d/src/gallium/auxiliary/rtasm/ |
rtasm_x86sse.h | 37 unsigned file:2; member in struct:x86_reg 166 struct x86_reg x86_make_reg( enum x86_reg_file file,
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_optimize.c | 38 rc_register_file File; 51 combine.File = inner.File; 69 rc_register_file file = src->File; local 83 if (file == RC_FILE_ADDRESS) { 88 /* These instructions cannot read from the constants file. 91 if(reader_data->Writer->U.I.SrcReg[0].File != RC_FILE_TEMPORARY && 92 reader_data->Writer->U.I.SrcReg[0].File != RC_FILE_INPUT && 111 if (src->File == sc_data->Fil [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_eu.h | 76 GLuint file:2; member in struct:brw_reg 176 * \param file one of the BRW_x_REGISTER_FILE values 186 static INLINE struct brw_reg brw_reg( GLuint file, 197 if (file == BRW_GENERAL_REGISTER_FILE) 199 else if (file == BRW_MESSAGE_REGISTER_FILE) 201 else if (file == BRW_ARCHITECTURE_REGISTER_FILE) 205 reg.file = file; 230 static INLINE struct brw_reg brw_vec16_reg( GLuint file, 234 return brw_reg(file, [all...] |
/external/nanopb-c/generator/google/protobuf/ |
descriptor_pb2.py | 23 file=DESCRIPTOR, variable 108 file=DESCRIPTOR, variable 133 file=DESCRIPTOR, variable 158 file=DESCRIPTOR, variable 184 file=DESCRIPTOR, variable 188 name='file', full_name='google.protobuf.FileDescriptorSet.file', index=0, 212 file=DESCRIPTOR, variable 310 file=DESCRIPTOR, variable 344 file=DESCRIPTOR variable 414 file=DESCRIPTOR, variable 493 file=DESCRIPTOR, variable 535 file=DESCRIPTOR, variable 577 file=DESCRIPTOR, variable 619 file=DESCRIPTOR, variable 668 file=DESCRIPTOR, variable 760 file=DESCRIPTOR, variable 802 file=DESCRIPTOR, variable 873 file=DESCRIPTOR, variable 908 file=DESCRIPTOR, variable 936 file=DESCRIPTOR, variable 964 file=DESCRIPTOR, variable 992 file=DESCRIPTOR, variable 1026 file=DESCRIPTOR, variable 1096 file=DESCRIPTOR, variable 1144 file=DESCRIPTOR, variable [all...] |
/external/opencv/cvaux/src/ |
cvcorrimages.cpp | 774 FILE *file; local 775 file = fopen("d:\\test\\projStatus.txt","w"); 780 fprintf(file,"%d (%d) ",i,status->data.ptr[i]); 794 fprintf(file,"%d (%lf %lf %lf %lf) - (%lf %lf)",i,X,Y,Z,W,x,y ); 807 fprintf(file,"\n"); 811 fclose(file); [all...] |
/external/proguard/src/proguard/ |
ConfigurationParser.java | 34 * array of arguments or from a configuration file or URL. External references 35 * in file names ('<...>') can be resolved against a given set of properties. 64 File baseDir, 77 File baseDir, 88 * Creates a new ConfigurationParser for the given file, with the system 92 public ConfigurationParser(File file) throws IOException 94 this(file, System.getProperties()); 99 * Creates a new ConfigurationParser for the given file and the given 102 public ConfigurationParser(File file 242 File file = file(nextWord); local 256 reader.setBaseDir(file(nextWord)); method 408 File file = file(nextWord); local 429 File file = file(nextWord); local 1130 private File file(String word) throws ParseException method in class:ConfigurationParser 1133 File file = new File(fileName); local [all...] |
/external/protobuf/src/google/protobuf/io/ |
zero_copy_stream_unittest.cc | 35 // Testing strategy: For each type of I/O (array, string, file, etc.) we 72 #include <google/protobuf/testing/file.h> 563 GOOGLE_CHECK_OK(File::GetContents( 677 // To test files, we create a temporary file, write, read, truncate, repeat. 683 // Make a temporary file. 684 int file = local 686 ASSERT_GE(file, 0); 689 FileOutputStream output(file, kBlockSizes[i]); 695 ASSERT_NE(lseek(file, 0, SEEK_SET), (off_t)-1); 698 FileInputStream input(file, kBlockSizes[j]) 715 int file = local [all...] |
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
ContextTest.java | 13 import java.io.File; 34 File[] files = context.getFilesDir().listFiles(); 38 File[] cachedFiles = context.getFilesDir().listFiles(); 51 public void deleteDir(File path) { 53 File[] files = path.listFiles(); 55 for (File f : files) { 64 File dataDir = new File(ShadowContext.FILES_DIR, "data"); 75 File dataDir = new File(ShadowContext.FILES_DIR, "data") 159 File file = new File(context.getFilesDir(), "__test__"); local 190 File file = new File("__test__"); local 226 File file = new File(filesDir, "test.txt"); local 236 File file = new File(filesDir, "test.txt"); local [all...] |