/external/zlib/src/ |
gzclose.c | 8 /* gzclose() is in a separate file so that it is linked in only if it is used. 11 int ZEXPORT gzclose(file) 12 gzFile file; 17 if (file == NULL) 19 state = (gz_statep)file; 21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file); 23 return gzclose_r(file);
|
/sdk/files/ |
sdk.properties | 1 # THIS FILE IS OBSOLETE AND IS ONLY THERE TO BUILD 4 # THE NEW FILE IS LOCATED IN development.git/sdk
|
/external/libunwind/doc/ |
libunwind.trans | 1 $manMacro1a{'Type'} = $manMacro1a{File}; 2 $manMacro1b{'Type'} = $manMacro1b{File}; 3 $htmlMacro1a{'Type'} = $htmlMacro1a{File}; 4 $htmlMacro1b{'Type'} = $htmlMacro1b{File}; 5 $texiMacro1a{'Type'} = $texiMacro1a{File}; 6 $texiMacro1b{'Type'} = $texiMacro1b{File}; 19 $manMacro1a{'Const'} = $manMacro1a{File}; 20 $manMacro1b{'Const'} = $manMacro1b{File}; 21 $htmlMacro1a{'Const'} = $htmlMacro1a{File}; 22 $htmlMacro1b{'Const'} = $htmlMacro1b{File}; [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/ |
DocumentLoader.java | 7 import java.io.File; 14 @Override public boolean accept(File file) { 15 return file.getName().endsWith(".xml"); 28 public void loadResourceXmlDirs(File... resourceXmlDirs) throws Exception { 32 public void loadResourceXmlDirs(boolean isSystem, File... resourceXmlDirs) throws Exception { 33 for (File resourceXmlDir : resourceXmlDirs) { 38 public void loadResourceXmlDir(File resourceXmlDir) throws Exception { 42 public void loadSystemResourceXmlDir(File resourceXmlDir) throws Exception { 46 private void loadResourceXmlDir(File resourceXmlDir, boolean isSystem) throws Exception [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
FileTest.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 20 import java.io.File; 41 private static void deleteTempFolder(File dir) { 45 File f = new File(dir, files[i]); 57 if (File.separatorChar == path.charAt(path.length() - 1)) { 60 return path + File.separator; 66 private File tempDirectory 118 File file = new File(root, "\/dir\/file"); local 985 File file; local 1206 File file = new File(dir, "notADir.tst"); local 1296 File file = new File(dir, "notADir.tst"); local 1423 File file = new File(baseDir, "notADir.tst"); local 1540 File file = new File(dir, "notADir.tst"); local 2188 File file = new File("FileTest.golden.ser"); local [all...] |
/art/tools/dexfuzz/src/dexfuzz/rawdex/ |
ClassDefItem.java | 5 * you may not use this file except in compliance with the License. 40 public void read(DexRandomAccessFile file) throws IOException { 41 file.getOffsetTracker().getNewOffsettable(file, this); 42 classIdx = file.readUInt(); 43 accessFlags = file.readUInt(); 44 superclassIdx = file.readUInt(); 45 interfacesOff = file.getOffsetTracker().getNewOffset(file.readUInt()); 46 sourceFileIdx = file.readUInt() [all...] |
/cts/tools/cfassembler/src/dxconvext/util/ |
FileUtils.java | 5 * you may not use this file except in compliance with the License. 19 import java.io.File; 24 * File I/O utilities. 35 * Reads the named file, translating {@link IOException} to a 38 * @param fileName non-null; name of the file to read 39 * @return non-null; contents of the file 42 File file = new File(fileName); local 43 return readFile(file); [all...] |
/dalvik/dexgen/src/com/android/dexgen/util/ |
FileUtils.java | 5 * you may not use this file except in compliance with the License. 19 import java.io.File; 24 * File I/O utilities. 35 * Reads the named file, translating {@link IOException} to a 38 * @param fileName {@code non-null;} name of the file to read 39 * @return {@code non-null;} contents of the file 42 File file = new File(fileName); local 43 return readFile(file); [all...] |
/external/dexmaker/src/dx/java/com/android/dx/util/ |
FileUtils.java | 5 * you may not use this file except in compliance with the License. 19 import java.io.File; 24 * File I/O utilities. 35 * Reads the named file, translating {@link IOException} to a 38 * @param fileName {@code non-null;} name of the file to read 39 * @return {@code non-null;} contents of the file 42 File file = new File(fileName); local 43 return readFile(file); [all...] |
/libcore/dex/src/main/java/com/android/dex/util/ |
FileUtils.java | 5 * you may not use this file except in compliance with the License. 19 import java.io.File; 24 * File I/O utilities. 31 * Reads the named file, translating {@link IOException} to a 34 * @param fileName {@code non-null;} name of the file to read 35 * @return {@code non-null;} contents of the file 38 File file = new File(fileName); local 39 return readFile(file); [all...] |
/external/tcpdump/win32/prj/ |
WinDump.dsp | 1 # Microsoft Developer Studio Project File - Name="WinDump" - Package Owner=<4> 2 # Microsoft Developer Studio Generated Build File, Format Version 6.00 86 # Begin Source File 89 # End Source File 90 # Begin Source File 93 # End Source File 94 # Begin Source File 97 # End Source File 98 # Begin Source File 101 # End Source File [all...] |
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
ANTLRFileStream.as | 2 import flash.filesystem.File; 8 protected var _file:File; 10 public function ANTLRFileStream(file:File, encoding:String = null) { 11 load(file, encoding); 14 public function load(file:File, encoding:String = null):void { 15 _file = file; 17 encoding = File.systemCharset; 23 stream.open(file, FileMode.READ) [all...] |
/external/marisa-trie/v0_1_5/vs2008/libmarisa_alpha/ |
libmarisa_alpha.vcproj | 151 <File
154 </File>
155 <File
158 </File>
159 <File
162 </File>
163 <File
166 </File>
167 <File
170 </File>
[all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/ |
FileSystem.java | 5 * you may not use this file except in compliance with the License. 18 import java.io.File; 27 * #SYSTEM} implementation, which uses the host machine's local file system. Alternate 31 * <p>All operations on a file system are racy. For example, guarding a call to {@link #source} 33 * The file may be moved between the two calls! 35 * <p>This interface is less ambitious than {@link java.nio.file.FileSystem} introduced in Java 7. 36 * It lacks important features like file watching, metadata, permissions, and disk space 41 /** The host machine's local file system. */ 43 @Override public Source source(File file) throws FileNotFoundException [all...] |
/external/protobuf/vsprojects/ |
libprotobuf-lite.vcproj | 150 <File 153 </File> 154 <File 157 </File> 158 <File 161 </File> 162 <File 165 </File> 166 <File 169 </File> [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/io/ |
InMemoryFileSystem.java | 5 * you may not use this file except in compliance with the License. 18 import java.io.File; 28 /** A simple file system where all files are held in memory. Not safe for concurrent use. */ 30 private final Map<File, Buffer> files = new LinkedHashMap<>(); 32 @Override public Source source(File file) throws FileNotFoundException { 33 Buffer result = files.get(file); 38 @Override public Sink sink(File file) throws FileNotFoundException { 40 files.put(file, result) 71 File file = i.next(); local [all...] |
/ndk/sources/android/support/src/stdio/ |
stdio_impl.h | 2 // crafted FILE object to represent the output/input buffers. However, this 3 // doesn't work when using FILE handle from Bionic. 5 // This header is used to 'cheat' by redefining FILE and a few other macro 13 // A structure that wraps either a real FILE* handle, or an input/output 16 FILE* file; member in struct:__anon27877 22 // Initialize FakeFILE wrapper |file| to use a FILE* handle |f| 23 void fake_file_init_file(FakeFILE* file, FILE* f) __HIDDEN__ [all...] |
/external/flac/libFLAC/ |
libFLAC_dynamic.vcproj | 190 <File
193 </File>
194 <File
197 </File>
198 <File
201 </File>
202 <File
205 </File>
206 <File
209 </File>
[all...] |
libFLAC_static.vcproj | 159 <File
162 </File>
163 <File
166 </File>
167 <File
170 </File>
171 <File
174 </File>
175 <File
178 </File>
[all...] |
/external/skia/resources/android_fonts/v17/ |
fallback_fonts-ja.xml | 5 This file specifies the fonts, and the priority order, that will be searched for any 7 Each entry consists of a family tag and a list of files (file names) which support that 10 families are listed in this file represents the order in which these fallback fonts 19 There is another optional file in /vendor/etc/fallback_fonts.xml. That file can be used to 21 fallback fonts. That file can also specify the order in which the fallback fonts should be 30 The standard fallback file (fallback_fonts.xml) is used when a locale does not have its own 31 file. All fallback files must contain the same complete set of fonts; only their ordering 37 <file>DroidNaskh-Regular-SystemUI.ttf</file> [all...] |
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/ |
TestUtil.java | 5 import java.io.File; 14 public static File testDirLocation; 35 public static File file(String... pathParts) { method in class:TestUtil 36 return file(new File("."), pathParts); 39 public static File file(File f, String... pathParts) { method in class:TestUtil 41 f = new File(f, pathPart) [all...] |
/external/toybox/kconfig/ |
util.c | 11 /* file already present in list? If not add it */ 12 struct file *file_lookup(const char *name) 14 struct file *file; local 16 for (file = file_list; file; file = file->next) { 17 if (!strcmp(name, file->name)) 18 return file; 32 struct file *file; local [all...] |
/external/toybox/tests/ |
ln.test | 11 echo file1 > file 12 testing "ln create_hardlink" "ln file hlink && [ file -ef hlink ] && 14 testing "ln create_softlink" "ln -s file slink && [ -L slink ] && 15 readlink slink" "file\n" "" "" 19 testing "ln force_create_hardlink" "ln -f file hlink && 20 [ file -ef hlink ] && cat hlink 2>/dev/null" "file1\n" "" "" 23 testing "ln force_create_softlink" "ln -f -s file slink && 24 [ -L slink ] && readlink slink" "file\n" "" "" 29 testing "ln preserves_hardlinks" "ln file hlink 2>/dev/null || echo 'yes'" [all...] |
/external/eigen/bench/btl/data/ |
smooth_all.sh | 7 for FILE in ${AXPY_FILE} 9 echo $FILE 10 BASE=${FILE##*/} 18 for FILE in ${MATRIX_VECTOR_FILE} 20 echo $FILE 21 BASE=${FILE##*/} 28 for FILE in ${MATRIX_MATRIX_FILE} 30 echo $FILE 31 BASE=${FILE##*/} 36 for FILE in ${AAT_FILE [all...] |
/external/lzma/CPP/7zip/Bundles/LzmaCon/ |
LzmaCon.dsp | 1 # Microsoft Developer Studio Project File - Name="LzmaCon" - Package Owner=<4>
2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
88 # Begin Source File
92 # End Source File
93 # Begin Source File
96 # End Source File
101 # Begin Source File
104 # End Source File
105 # Begin Source File
108 # End Source File
[all...] |