/frameworks/compile/libbcc/bcinfo/tools/ |
main.cpp | 40 const char* inFile = NULL; 73 inFile = argv[optind]; 111 if (!inFile) { 117 if (stat(inFile, &statInFile) < 0) { 127 FILE *in = fopen(inFile, "r"); 129 fprintf(stderr, "Could not open input file %s\n", inFile); 139 fprintf(stderr, "Could not read all of file %s\n", inFile);
|
/frameworks/compile/libbcc/tests/ |
main.cpp | 116 const char* inFile = NULL; 159 inFile = argv[optind]; 164 if (!inFile) { 170 if (stat(inFile, &statInFile) < 0) { 180 FILE *in = fopen(inFile, "r"); 182 fprintf(stderr, "Could not open input file %s\n", inFile); 192 fprintf(stderr, "Could not read all of file %s\n", inFile);
|
/external/webkit/Source/WebCore/WebCore.gyp/scripts/ |
action_csspropertynames.py | 113 # first listed inFile, but in the output directory. 120 inFile = open(inFilePath) 121 for line in inFile: 131 inFile.close()
|
action_cssvaluekeywords.py | 117 # first listed inFile, but in the output directory. 125 inFile = open(inFilePath) 126 for line in inFile: 137 inFile.close()
|
/frameworks/base/core/tests/coretests/src/android/os/storage/ |
StorageManagerBaseTest.java | 281 File inFile = new File(path, fileName); 284 inStream = new DataInputStream(new FileInputStream(inFile)); 466 File inFile = new File(path, filename); 470 inStream = new DataInputStream(new FileInputStream(inFile)); 482 fail("File " + inFile + " not found: " + e.toString()); 484 fail("IOError with file " + inFile + ":" + e.toString()); 496 File inFile = new File(path, filename); 501 fileReader = new BufferedReader(new FileReader(inFile)); 515 fail("IOError with file " + inFile + ":" + e.toString()); 532 File inFile = new File(path, filename) [all...] |
/cts/tools/dx-tests/src/dxconvext/ |
ClassFileParser.java | 75 String inFile = classesDir + "/" + pck + "/" + cName + ".class"; 76 if (!new File(inFile).exists()) { 77 throw new RuntimeException("cannot read:" + inFile); 79 byte[] bytes = FileUtils.readFile(inFile);
|
/external/llvm/include/llvm/CompilerDriver/ |
Tool.h | 53 const llvm::sys::Path& inFile,
|
/external/bzip2/ |
bzip2recover.c | 303 FILE* inFile; 351 inFile = fopen ( inFileName, "rb" ); 352 if (inFile == NULL) { 357 bsIn = bsOpenReadStream ( inFile ); 425 inFile = fopen ( inFileName, "rb" ); 426 if (inFile == NULL) { 430 bsIn = bsOpenReadStream ( inFile );
|
/bionic/libc/tools/zoneinfo/ |
ZoneCompactor.java | 50 // Concatenate the contents of 'inFile' onto 'out' 52 private static byte[] copyFile(File inFile, OutputStream out) 56 InputStream in = new FileInputStream(inFile);
|
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
DeflaterTest.java | 644 InputStream inFile = Support_Resources.getStream("hyts_checkInput.txt"); 645 inFile.read(byteArray); 646 inFile.close(); 718 InputStream inFile = Support_Resources.getStream("hyts_checkInput.txt"); 719 inFile.read(byteArray); 720 inFile.close(); 794 InputStream inFile = Support_Resources.getStream("hyts_checkInput.txt"); 795 inFile.read(byteArray); 796 inFile.close(); 939 InputStream inFile = Support_Resources.getStream("hyts_checkInput.txt") [all...] |
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
CalendarDebugActivity.java | 122 final File inFile = getDatabasePath("calendar.db"); 123 is = new FileInputStream(inFile); 126 os.putNextEntry(new ZipEntry(inFile.getName()));
|
/external/emma/core/java12/com/vladium/emma/rt/ |
ClassPathProcessorST.java | 201 final File inFile = Files.newFile (pathDir, file.getPath ()); 202 readFile (inFile); 204 srcURL = inFile.toURL ().toExternalForm ();
|
/frameworks/base/media/libstagefright/codecs/amrwbenc/SampleCode/ |
AMRWB_E_SAMPLE.c | 64 int GetNextBuf(FILE* inFile,unsigned char* dst,int size) 66 int size2 = (int)fread(dst, sizeof(signed char), size,inFile);
|
/external/emma/core/java12/com/vladium/emma/instr/ |
InstrProcessorST.java | 435 final File inFile = Files.newFile (pathDir, file.getPath ()); 455 final long inTimeStamp = inFile.lastModified (); 466 readFile (inFile); 553 final File inFile = Files.newFile (pathDir, file.getPath ()); 554 readFile (inFile); [all...] |
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/ |
DownloadManagerTestApp.java | 185 FileInputStream inFile = mContext.openFileInput(DOWNLOAD_STARTED_FLAG); 186 dataInputFile = new DataInputStream(inFile);
|
/libcore/luni/src/test/java/libcore/java/net/ |
OldJarURLConnectionTest.java | 46 private URL createContent(String jarFile, String inFile) 54 return new URL("jar:file:" + file.getPath() + "!/" + inFile);
|
/frameworks/base/core/tests/coretests/src/android/app/ |
DownloadManagerBaseTest.java | 396 DataInputStream inFile = new DataInputStream(new FileInputStream(file)); 401 ((expectedRead = inFile.read(expected)) != -1)) { [all...] |
/external/clang/lib/Rewrite/ |
RewriteObjC.cpp | 169 RewriteObjC(std::string inFile, llvm::raw_ostream *OS, 508 RewriteObjC::RewriteObjC(std::string inFile, llvm::raw_ostream* OS, 511 : Diags(D), LangOpts(LOpts), InFileName(inFile), OutFile(OS), 513 IsHeader = IsHeaderFile(inFile); 521 ASTConsumer *clang::CreateObjCRewriter(const std::string& InFile, 526 return new RewriteObjC(InFile, OS, Diags, LOpts, SilenceRewriteMacroWarning); [all...] |
/external/emma/lib/ |
emma.jar | |
/prebuilt/common/ant/ |
ant.jar | |