/external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/ |
icons_png.qrc | 3 <file alias="wpa_gui.png">icons/hicolor/16x16/apps/wpa_gui.png</file>
|
/cts/tools/dx-tests/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/dx/src/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...] |
package.html | 2 <p>Utility classes for class file access/manipulation.</p>
|
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/ |
FileTest.java | 2 * contributor license agreements. See the NOTICE file distributed with 4 * The ASF licenses this file to You under the Apache License, Version 2.0 5 * (the "License"); you may not use this file except in compliance with 19 import java.io.File; 30 @TestTargetClass(File.class) 44 * @tests java.io.File#File(java.io.File, java.lang.String) 49 method = "File", 50 args = {java.io.File.class, java.lang.String.class 56 File file = new File(root, "\/dir\/file"); local 135 File file; local 198 File file = new File("FileTest.golden.ser"); local [all...] |
/external/bluetooth/glib/build/win32/vs8/ |
glib.vcproj | 193 <File 196 </File> 197 <File 200 </File> 201 <File 204 </File> 205 <File 208 </File> 209 <File 212 </File> [all...] |
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/io/ |
FolderWrapper.java | 5 * you may not use this file except in compliance with the License. 20 import java.io.File; 25 * An implementation of {@link IAbstractFolder} extending {@link File}. 27 public class FolderWrapper extends File implements IAbstractFolder { 32 * Creates a new File instance from a parent abstract pathname and a child pathname string. 36 * @see File#File(File, String) 38 public FolderWrapper(File parent, String child) { 43 * Creates a new File instance by converting the given pathname string into an abstrac [all...] |
/external/qemu/distrib/sdl-1.2.12/src/main/macosx/ |
info.nib | 1 // This is just a stub file to force automake to create the install directory
|
/external/webkit/LayoutTests/http/tests/appcache/resources/ |
not-in-cache.txt | 1 This file is not in the cache and is thus not possible to load
|
/external/webkit/WebCore/manual-tests/resources/multiFileResources/ |
testFile1.html | 2 parent.log('test file 1 submitted');
|
testFile2.html | 2 parent.log('test file 2 submitted');
|
/sdk/emulator/qtools/ |
read_elf.h | 7 Elf32_Ehdr *ReadElfHeader(FILE *fobj); 8 Elf32_Shdr *ReadSectionHeaders(Elf32_Ehdr *hdr, FILE *fobj); 9 char *ReadStringTable(Elf32_Ehdr *hdr, Elf32_Shdr *shdr, FILE *fobj); 16 int ReadSection(Elf32_Shdr *shdr, void *buffer, FILE *f);
|
/external/clearsilver/man/man3/ |
fCreate.3 | 14 fCreate - create a file lock. 20 NEOERR *fCreate(int *plock, const char *file); 27 file - path of file to use as lock. 30 Creates a file lock on named file <file>. The lock is
|
fFind.3 | 14 fFind - find a file lock. 20 NEOERR *fFind(int *plock, const char *file); 27 file - path of file to use as lock. 30 Find a file identified by the path <file>, and returns a 31 lock identifier for it in <plock>. If the file doesn't
|
cgi_filehandle.3 | 14 cgi_filehandle - return a file pointer to an uploaded file 20 FILE *cgi_filehandle (CGI *cgi, const char *form_name); 27 form_name - the form name that the file was uploaded as 31 file handle for the PUT upload) 34 cgi_filehandle will return the stdio FILE pointer 35 associated with a file that was uploaded using 36 multipart/form-data. The FILE pointer is positioned at 37 the start of the file when first available.
|
/external/oprofile/daemon/ |
opd_mangling.h | 2 * @file daemon/opd_mangling.h 6 * @remark Read the file COPYING 20 * opd_open_sample_file - open a sample file 21 * @param sf sfile to open sample file for 23 * @param cg if this is a callgraph file 25 * Open image sample file for the sfile, counter 30 int opd_open_sample_file(odb_t *file, struct sfile *last,
|
/external/oprofile/libutil/ |
op_fileio.h | 2 * @file op_fileio.h 6 * @remark Read the file COPYING 24 * op_try_open_file - open a file 25 * @param name file name 28 * Open a file name. 29 * Returns file handle or %NULL on failure. 31 FILE * op_try_open_file(char const * name, char const * mode); 34 * op_open_file - open a file 35 * @param name file name 38 * Open a file name [all...] |
/device/sample/products/ |
AndroidProducts.mk | 2 # This file should set PRODUCT_MAKEFILES to a list of product makefiles 4 # the directory containing this file. 6 # This file may not rely on the value of any variable other than 8 # value of any variable that isn't set in this file or in a file that
|
/external/guava/src/com/google/common/io/ |
Files.java | 5 * you may not use this file except in compliance with the License. 24 import java.io.File; 58 * Returns a buffered reader that reads from a file using the given 61 * @param file the file to read from 62 * @param charset the character set used when writing the file 65 public static BufferedReader newReader(File file, Charset charset) 68 new InputStreamReader(new FileInputStream(file), charset)); 72 * Returns a buffered writer that writes to a file using the give [all...] |
/packages/apps/Email/src/org/apache/commons/io/filefilter/ |
FileFileFilter.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;
23 * This filter accepts <code>File</code>s that are files (not directories).
29 * File dir = new File(".");
30 * String[] files = dir.list( FileFileFilter.FILE );
41 /** Singleton instance of file filter */
42 public static final IOFileFilter FILE = new FileFileFilter(); [all...] |
/external/sonivox/arm-hybrid-22k/host_src/ |
eas_debugmsgs.h | 1 /* Auto-generated from source file: eas_chorusdata.c */ 2 /* Auto-generated from source file: eas_imelodydata.c */ 3 /* Auto-generated from source file: eas_mididata.c */ 4 /* Auto-generated from source file: eas_pan.c */ 5 /* Auto-generated from source file: eas_wavefiledata.c */ 6 /* Auto-generated from source file: eas_voicemgt.c */ 7 /* Auto-generated from source file: eas_ota.c */ 8 /* Auto-generated from source file: eas_mixbuf.c */ 9 /* Auto-generated from source file: eas_rtttl.c */ 10 /* Auto-generated from source file: eas_reverb.c * [all...] |
/external/sonivox/arm-fm-22k/host_src/ |
eas_debugmsgs.h | 1 /* Auto-generated from source file: eas_chorusdata.c */ 2 /* Auto-generated from source file: eas_imelodydata.c */ 3 /* Auto-generated from source file: eas_mididata.c */ 4 /* Auto-generated from source file: eas_pan.c */ 5 /* Auto-generated from source file: eas_wavefiledata.c */ 6 /* Auto-generated from source file: eas_voicemgt.c */ 7 /* Auto-generated from source file: eas_ota.c */ 8 /* Auto-generated from source file: eas_mixbuf.c */ 9 /* Auto-generated from source file: eas_fmsndlib.c */ 10 /* Auto-generated from source file: eas_rtttl.c * [all...] |
/external/expat/tests/benchmark/ |
README.txt | 3 benchmark [-n] <file name> <buffer size> <# iterations> 8 <file name> ... name/path of test xml file 10 the file is parsed in chunks of this size 11 <# iterations> ... how often will the file be parsed 15 The time (in seconds) it takes to parse the test file,
|
/external/v8/tools/visual_studio/ |
v8_cctest.vcproj | 138 <File 141 </File> 142 <File 145 </File> 146 <File 149 </File> 150 <File 153 </File> 154 <File 157 </File> [all...] |
/sdk/emulator/keymaps/ |
Android.mk | 10 file := $(TARGET_OUT_KEYLAYOUT)/qwerty.kl macro 11 ALL_PREBUILT += $(file) 12 $(file): $(LOCAL_PATH)/qwerty.kl | $(ACP) 15 file := $(TARGET_OUT_KEYLAYOUT)/AVRCP.kl macro 16 ALL_PREBUILT += $(file) 17 $(file) : $(LOCAL_PATH)/AVRCP.kl | $(ACP)
|