/libcore/luni/src/test/java/libcore/java/util/zip/ |
Zip64FileTest.java | 5 * you may not use this file except in compliance with the License. 20 import java.io.File; 36 final File file = createZipFile(65550, 2, false /* setEntrySize */); local 39 zf = new ZipFile(file); 54 final File file = createZipFile(5, 1073741824L, false /* setEntrySize */); local 57 zf = new ZipFile(file); 77 final File file = createZipFile(1, 4294967410L, true /* setEntrySize */) local 95 File file = createTemporaryZipFile(); local [all...] |
/libcore/luni/src/test/java/libcore/xml/ |
NodeTest.java | 5 * you may not use this file except in compliance with the License. 29 import java.io.File; 49 File file = Support_Resources.resourceToTempFile("/simple.xml"); local 50 Document document = builder.parse(file); 52 assertFileUriEquals(file, document.getBaseURI()); 58 assertFileUriEquals(file, node.getBaseURI()); 69 private void assertFileUriEquals(File expectedFile, String actual) { 71 actual.equals("file:" + expectedFile) 72 || actual.equals("file://" + expectedFile)) [all...] |
/libcore/support/src/test/java/tests/support/ |
Support_GetLocal.java | 3 * contributor license agreements. See the NOTICE file distributed with 5 * The ASF licenses this file to You under the Apache License, Version 2.0 6 * (the "License"); you may not use this file except in compliance with 22 import java.io.File; 35 static Hashtable<String, File> cache = new Hashtable<String, File>(20); 37 public static File getLocalFile(String url) throws IOException, 40 File temp = cache.get(url); 43 temp = File.createTempFile("hyts_local", ".tmp", null); 58 public static File getExternalLocalFile(String url) throws IOException 96 File file = getLocalFile("hyts_att.jar"); local [all...] |
/ndk/sources/host-tools/nawk-20071023/ |
GNUmakefile | 67 # $1: source file 68 # $2: object file 69 define build-c-file 78 $(eval $(call build-c-file,$(src),$(BUILD_DIR)/$(src:%.c=%.o)))\ 89 $(eval $(call build-c-file,$(PROCTAB_C),$(PROCTAB_O)))
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/about/ |
LicenseActivity.java | 5 * you may not use this file except in compliance with the License. 31 import java.io.File; 50 Log.e(TAG, "The system property for the license file is empty"); 55 final File file = new File(path); local 56 if (!file.exists() || file.length() == 0) { 57 Log.e(TAG, "License file " + path + " does not exist"); 66 intent.setDataAndType(Uri.fromFile(file), "text/html") [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
DirectoryWalker.java | 3 * contributor license agreements. See the NOTICE file distributed with 5 * The ASF licenses this file to You under the Apache License, Version 2.0 6 * (the "License"); you may not use this file except in compliance with 19 import java.io.File; 59 * public List clean(File startDirectory) { 65 * protected boolean handleDirectory(File directory, int depth, Collection results) { 76 * protected void handleFile(File file, int depth, Collection results) { 77 * // delete file and add to list of deleted 78 * file.delete() 572 private File file; field in class:DirectoryWalker.CancelException [all...] |
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/ |
ver4_dict_buffers.cpp | 5 * you may not use this file except in compliance with the License. 57 AKLOGE("The dict body file is corrupted."); 62 AKLOGE("The dict body file is corrupted."); 98 // Write header file. 101 AKLOGE("Dictionary header file %s%s cannot be written.", tmpDirPath, 106 // Write body file. 115 AKLOGE("File %s cannot be opened. errno: %d", bodyFilePath, errno); 119 FILE *const file = fdopen(fd, "wb"); local 120 if (!file) { [all...] |
/packages/providers/MediaProvider/src/com/android/providers/media/ |
MediaUpgradeReceiver.java | 5 * you may not use this file except in compliance with the License. 19 import java.io.File; 60 File dbDir = context.getDatabasePath("foo").getParentFile(); 64 String file = files[i]; local 65 if (MediaProvider.isMediaDatabaseName(file)) { 67 Slog.i(TAG, "---> Start upgrade of media database " + file); 71 context, file, MediaProvider.isInternalMediaDatabaseName(file), 75 Log.wtf(TAG, "Error during upgrade of media db " + file, t); 81 Slog.i(TAG, "<--- Finished upgrade of media database " + file [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/ |
stdio_sync_filebuf.h | 1 // Iostreams wrapper for stdio FILE* -*- C++ -*- 5 // This file is part of the GNU ISO C++ Library. This library is free 25 /** @file ext/stdio_sync_filebuf.h 26 * This file is a GNU extension to the Standard C++ Library. 52 * C FILE*'s. It must be instantiated by the user with the type of 53 * character used in the file stream, e.g., stdio_filebuf<char>. 67 // Underlying stdio FILE 81 * @return The underlying FILE*. 83 * This function can be used to access the underlying C file pointer. 85 * with the file, so be careful 88 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/ |
stdio_sync_filebuf.h | 1 // Iostreams wrapper for stdio FILE* -*- C++ -*- 5 // This file is part of the GNU ISO C++ Library. This library is free 25 /** @file ext/stdio_sync_filebuf.h 26 * This file is a GNU extension to the Standard C++ Library. 52 * C FILE*'s. It must be instantiated by the user with the type of 53 * character used in the file stream, e.g., stdio_filebuf<char>. 67 // Underlying stdio FILE 81 * @return The underlying FILE*. 83 * This function can be used to access the underlying C file pointer. 85 * with the file, so be careful 88 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/ |
stdio_sync_filebuf.h | 1 // Iostreams wrapper for stdio FILE* -*- C++ -*- 5 // This file is part of the GNU ISO C++ Library. This library is free 25 /** @file ext/stdio_sync_filebuf.h 26 * This file is a GNU extension to the Standard C++ Library. 52 * C FILE*'s. It must be instantiated by the user with the type of 53 * character used in the file stream, e.g., stdio_filebuf<char>. 67 // Underlying stdio FILE 81 * @return The underlying FILE*. 83 * This function can be used to access the underlying C file pointer. 85 * with the file, so be careful 88 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std [all...] |
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/ |
stdio_sync_filebuf.h | 1 // Iostreams wrapper for stdio FILE* -*- C++ -*- 5 // This file is part of the GNU ISO C++ Library. This library is free 25 /** @file ext/stdio_sync_filebuf.h 26 * This file is a GNU extension to the Standard C++ Library. 58 // Underlying stdio FILE 72 * @return The underlying FILE*. 74 * This function can be used to access the underlying "C" file pointer. 76 * with the file, so be careful. 79 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/ |
stdio_sync_filebuf.h | 1 // Iostreams wrapper for stdio FILE* -*- C++ -*- 5 // This file is part of the GNU ISO C++ Library. This library is free 25 /** @file ext/stdio_sync_filebuf.h 26 * This file is a GNU extension to the Standard C++ Library. 58 // Underlying stdio FILE 72 * @return The underlying FILE*. 74 * This function can be used to access the underlying "C" file pointer. 76 * with the file, so be careful. 79 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/ |
stdio_sync_filebuf.h | 1 // Iostreams wrapper for stdio FILE* -*- C++ -*- 5 // This file is part of the GNU ISO C++ Library. This library is free 25 /** @file ext/stdio_sync_filebuf.h 26 * This file is a GNU extension to the Standard C++ Library. 58 // Underlying stdio FILE 72 * @return The underlying FILE*. 74 * This function can be used to access the underlying "C" file pointer. 76 * with the file, so be careful. 79 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/ |
stdio_sync_filebuf.h | 1 // Iostreams wrapper for stdio FILE* -*- C++ -*- 5 // This file is part of the GNU ISO C++ Library. This library is free 25 /** @file ext/stdio_sync_filebuf.h 26 * This file is a GNU extension to the Standard C++ Library. 58 // Underlying stdio FILE 72 * @return The underlying FILE*. 74 * This function can be used to access the underlying "C" file pointer. 76 * with the file, so be careful. 79 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/ |
stdio_sync_filebuf.h | 1 // Iostreams wrapper for stdio FILE* -*- C++ -*- 6 // This file is part of the GNU ISO C++ Library. This library is free 26 /** @file ext/stdio_sync_filebuf.h 27 * This file is a GNU extension to the Standard C++ Library. 53 * C FILE*'s. It must be instantiated by the user with the type of 54 * character used in the file stream, e.g., stdio_filebuf<char>. 68 // Underlying stdio FILE 82 * @return The underlying FILE*. 84 * This function can be used to access the underlying C file pointer. 86 * with the file, so be careful 89 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/ |
stdio_sync_filebuf.h | 1 // Iostreams wrapper for stdio FILE* -*- C++ -*- 6 // This file is part of the GNU ISO C++ Library. This library is free 26 /** @file ext/stdio_sync_filebuf.h 27 * This file is a GNU extension to the Standard C++ Library. 53 * C FILE*'s. It must be instantiated by the user with the type of 54 * character used in the file stream, e.g., stdio_filebuf<char>. 68 // Underlying stdio FILE 82 * @return The underlying FILE*. 84 * This function can be used to access the underlying C file pointer. 86 * with the file, so be careful 89 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/ |
stdio_sync_filebuf.h | 1 // Iostreams wrapper for stdio FILE* -*- C++ -*- 6 // This file is part of the GNU ISO C++ Library. This library is free 26 /** @file ext/stdio_sync_filebuf.h 27 * This file is a GNU extension to the Standard C++ Library. 53 * C FILE*'s. It must be instantiated by the user with the type of 54 * character used in the file stream, e.g., stdio_filebuf<char>. 68 // Underlying stdio FILE 82 * @return The underlying FILE*. 84 * This function can be used to access the underlying C file pointer. 86 * with the file, so be careful 89 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/ |
stdio_sync_filebuf.h | 1 // Iostreams wrapper for stdio FILE* -*- C++ -*- 6 // This file is part of the GNU ISO C++ Library. This library is free 26 /** @file ext/stdio_sync_filebuf.h 27 * This file is a GNU extension to the Standard C++ Library. 53 * C FILE*'s. It must be instantiated by the user with the type of 54 * character used in the file stream, e.g., stdio_filebuf<char>. 68 // Underlying stdio FILE 82 * @return The underlying FILE*. 84 * This function can be used to access the underlying C file pointer. 86 * with the file, so be careful 89 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/ |
stdio_sync_filebuf.h | 1 // Iostreams wrapper for stdio FILE* -*- C++ -*- 5 // This file is part of the GNU ISO C++ Library. This library is free 25 /** @file ext/stdio_sync_filebuf.h 26 * This file is a GNU extension to the Standard C++ Library. 52 * C FILE*'s. It must be instantiated by the user with the type of 53 * character used in the file stream, e.g., stdio_filebuf<char>. 67 // Underlying stdio FILE 81 * @return The underlying FILE*. 83 * This function can be used to access the underlying C file pointer. 85 * with the file, so be careful 88 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/ |
stdio_sync_filebuf.h | 1 // Iostreams wrapper for stdio FILE* -*- C++ -*- 5 // This file is part of the GNU ISO C++ Library. This library is free 25 /** @file ext/stdio_sync_filebuf.h 26 * This file is a GNU extension to the Standard C++ Library. 52 * C FILE*'s. It must be instantiated by the user with the type of 53 * character used in the file stream, e.g., stdio_filebuf<char>. 67 // Underlying stdio FILE 81 * @return The underlying FILE*. 83 * This function can be used to access the underlying C file pointer. 85 * with the file, so be careful 88 file() { return this->_M_file; } function in class:stdio_sync_filebuf::std [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
posixfile.py | 1 """Extended file operations available in POSIX. 7 will create a posixfile object from a builtin file object 9 f.file() 10 will return the original builtin file object 13 will return a new file object based on a new filedescriptor 16 will return a new file object based on the given filedescriptor 60 """File wrapper class that provides extra POSIX file routines.""" 68 file = self._file_ 70 (self.states[file.closed], file.name, file.mode, 96 def file(self): member in class:_posixfile_ [all...] |
shlex.py | 75 print 'shlex: pushing to file %s' % (self.infile,) 131 self.token = '' # past end of file 135 self.state = None # end of file 168 if not nextchar: # end of file 187 if not nextchar: # end of file 201 self.state = None # end of file 285 file = sys.argv[1] variable 286 lexer = shlex(open(file), file)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
posixfile.py | 1 """Extended file operations available in POSIX. 7 will create a posixfile object from a builtin file object 9 f.file() 10 will return the original builtin file object 13 will return a new file object based on a new filedescriptor 16 will return a new file object based on the given filedescriptor 60 """File wrapper class that provides extra POSIX file routines.""" 68 file = self._file_ 70 (self.states[file.closed], file.name, file.mode, 96 def file(self): member in class:_posixfile_ [all...] |
shlex.py | 75 print 'shlex: pushing to file %s' % (self.infile,) 131 self.token = '' # past end of file 135 self.state = None # end of file 168 if not nextchar: # end of file 187 if not nextchar: # end of file 201 self.state = None # end of file 285 file = sys.argv[1] variable 286 lexer = shlex(open(file), file)
|