/packages/providers/ContactsProvider/tests/ |
Android.mk | 7 # Only compile source java files in this apk. 8 LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
/prebuilt/android-arm/gdbserver/ |
Android.mk | 13 # Any prebuilt files with default TAGS can use the below: 16 $(call add-prebuilt-files, EXECUTABLES, $(prebuilt_files))
|
/external/bluetooth/glib/docs/reference/ |
README | 20 package installed. To rebuild the template files, 22 header files installed. 39 template files 43 Generate SGML files using the DocBook DTD from 44 the template files 48 Generate HTML from the SGML files.
|
/external/clearsilver/cs/ |
test12.cs | 3 <?cs def:display_files(files) ?> 5 <?cs each:file = files ?> 14 <?cs call:display_files(Files) ?> 16 <?cs def:display_files2(files, spc) ?> 20 <?cs each:file = files ?> 29 <?cs call:display_files2(Files, blank) ?>
|
/dalvik/libcore/icu/ |
unicode-license.txt | 1 UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE 3 Unicode Data Files include all data files under the directories 11 DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES 12 ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND 14 DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES 23 of the Unicode data files and any associated documentation (the "Data Files") or 25 the Data Files or Software without restriction, including without limitation the 27 the Data Files or Software, and to permit persons to whom the Data Files o [all...] |
/external/icu4c/data/unidata/ |
ucdterms.txt | 1 UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE 3 Unicode Data Files include all data files under the directories 9 INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES ("DATA FILES"), 12 DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. 20 the Unicode data files and associated documentation (the "Data Files") or 22 Data Files or Software without restriction, including without limitation the 24 the Data Files or Software, and to permit persons to whom the Data Files o [all...] |
/external/icu4c/ |
unicode-license.txt | 1 UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE 3 Unicode Data Files include all data files under the directories 11 DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES 12 ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND 14 DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES 23 of the Unicode data files and any associated documentation (the "Data Files") or 25 the Data Files or Software without restriction, including without limitation the 27 the Data Files or Software, and to permit persons to whom the Data Files o [all...] |
/frameworks/base/core/java/android/app/backup/ |
FileBackupHelper.java | 28 * files. Whenever backup is performed, all files changed since the last backup 36 * used only with small configuration files, not large binary files. 47 * Construct a helper to manage backup/restore of entire files within the 51 * @param files A list of the files to be backed up or restored. 53 public FileBackupHelper(Context context, String... files) { 58 mFiles = files; 62 * Based on <code>oldState</code>, determine which of the files from th 76 String[] files = mFiles; local [all...] |
/packages/apps/Email/src/org/apache/commons/io/filefilter/ |
SizeFileFilter.java | 23 * Filters files based on size, can filter either smaller files or
24 * files equal to or larger than a given threshold.
26 * For example, to print all files and directories in the
31 * String[] files = dir.list( new SizeFileFilter(1024 * 1024) );
32 * for ( int i = 0; i < files.length; i++ ) {
33 * System.out.println(files[i]);
45 /** Whether the files accepted will be larger or smaller. */
49 * Constructs a new size file filter for files equal to or
52 * @param size the threshold size of the files
[all...] |
CanWriteFileFilter.java | 26 * current directory's <i>writable</i> files:
30 * String[] files = dir.list( CanWriteFileFilter.CAN_WRITE );
31 * for ( int i = 0; i < files.length; i++ ) {
32 * System.out.println(files[i]);
38 * current directory's <i>un-writable</i> files:
42 * String[] files = dir.list( CanWriteFileFilter.CANNOT_WRITE );
43 * for ( int i = 0; i < files.length; i++ ) {
44 * System.out.println(files[i]);
49 * <b>N.B.</b> For read-only files, use
|
CanReadFileFilter.java | 26 * current directory's <i>readable</i> files:
30 * String[] files = dir.list( CanReadFileFilter.CAN_READ );
31 * for ( int i = 0; i < files.length; i++ ) {
32 * System.out.println(files[i]);
38 * current directory's <i>un-readable</i> files:
42 * String[] files = dir.list( CanReadFileFilter.CANNOT_READ );
43 * for ( int i = 0; i < files.length; i++ ) {
44 * System.out.println(files[i]);
50 * current directory's <i>read-only</i> files:
54 * String[] files = dir.list( CanReadFileFilter.READ_ONLY ); [all...] |
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/ |
DeleteOnExit.java | 38 * Our list of files scheduled for deletion. 40 private ArrayList<String> files = new ArrayList<String>(); field in class:DeleteOnExit 60 synchronized(files) { 61 if (!files.contains(filename)) { 62 files.add(filename); 68 * Does the actual work. Note we (a) first sort the files lexicographically 69 * and then (b) delete them in reverse order. This is to make sure files 74 Collections.sort(files); 75 for (int i = files.size() - 1; i >= 0; i--) { 76 new File(files.get(i)).delete() [all...] |
/frameworks/base/tests/backup/ |
test_backup.sh | 43 # load up the three files 45 "rm /data/data/com.android.backuptest/files/file.txt ; \ 46 rm /data/data/com.android.backuptest/files/another_file.txt ; \ 47 rm /data/data/com.android.backuptest/files/empty.txt ; \ 49 mkdir /data/data/com.android.backuptest/files ; \ 53 echo -n first file > /data/data/com.android.backuptest/files/file.txt ; \ 54 echo -n asdf > /data/data/com.android.backuptest/files/another_file.txt ; \ 55 echo -n "" > /data/data/com.android.backuptest/files/empty.txt ; \ 56 date >> /data/data/com.android.backuptest/files/3.txt ; \ 58 # echo -n 3 > /data/data/com.android.backuptest/files/3.txt ; [all...] |
/bionic/libc/kernel/tools/ |
find_users.py | 18 this program is used to scan a list of files or directories for 20 the list of said source files when it's done. 22 when scanning directories, only files matching the following 47 # helper function used to walk the user files 52 # first, obtain the list of kernel files used by our clients 58 files = fparser.getFiles() variable 60 for f in sorted(files):
|
/device/sample/products/ |
sample_addon.mk | 7 # Manually copy the optional library XML files in the system image. 14 # Copy the manifest and hardware files for the SDK add-on. 15 # The content of those files is manually created for now. 19 $(call find-copy-subdir-files,*,device/sample/skins/WVGAMedDpi,skins/WVGAMedDpi) 22 # Add this to PRODUCT_SDK_ADDON_COPY_FILES to copy the files for an 24 #$(call find-copy-subdir-files,*,device/sample/skins/WVGAMedDpi,skins/WVGAMedDpi) 26 # Copy the jar files for the optional libraries that are exposed as APIs.
|
/external/elfutils/libdw/ |
dwarf_getsrcfiles.c | 25 dwarf_getsrcfiles (Dwarf_Die *cudie, Dwarf_Files **files, size_t *nfiles) 43 else if (cu->files != (void *) -1l) 49 assert (cu->files != NULL && cu->files != (void *) -1l); 50 *files = cu->files; 52 *nfiles = cu->files->nfiles;
|
/development/host/windows/usb/ |
readme.txt | 10 * Subfolder i386 containing files for 32-bit installation:
14 * Subfolder amd64 containing files for AMD 64-bit installation:
20 to install WinUsb framework. These files can be obtained from WDK 'redist'
21 folder, respectively to the OS: copy x86 files to i386 subfolder, and amd64
22 files to amd64 subfolder.
28 file is modified, .cat files must be rebuilt and resigned in order to keep
29 integrity of the installation. Failure to rebuild and resign .cat files will
35 to build and sign new .cat files for that custom .inf file of yours.
37 The simplest way to create .cat files would be using inf2cat.exe utility,
|
/external/oprofile/daemon/ |
opd_sfile.h | 3 * Management of sample files 31 * Each set of sample files (where a set is over the physical counter 35 * cg files are stored in the hash. 63 /** opened sample files */ 64 odb_t files[OP_MAX_COUNTERS]; member in struct:sfile 65 /** extended sample files */ 67 /** hash table of opened cg sample files */ 87 /** sync sample files */ 90 /** close sample files */
|
/external/webkit/WebKit/wx/ |
Bakefiles.bkgen | 49 <add-flags files="../../JavaScriptCore/jscore.bkl" formats="gnu"> 52 <add-flags files="../../JavaScriptCore/jscore.bkl" formats="msvs2005prj"> 55 <add-flags files="../../JavaScriptCore/jscore.bkl" formats="msvc"> 59 <add-flags files="jscore.bkl" formats="xcode2"> 65 <add-flags files="../../WebCore/webcore-wx.bkl" formats="gnu"> 68 <add-flags files="../../WebCore/webcore-wx.bkl" formats="msvs2005prj"> 71 <add-flags files="../../WebCore/webcore-wx.bkl" formats="msvc"> 75 <add-flags files="wxwebkit.bkl" formats="gnu"> 78 <add-flags files="wxwebkit.bkl" formats="msvs2005prj"> 81 <add-flags files="wxwebkit.bkl" formats="msvc" [all...] |
/external/dbus/test/ |
Makefile.am | 89 data/valid-config-files \ 90 data/valid-config-files/basic.d \ 91 data/valid-config-files/system.d \ 92 data/valid-service-files \ 93 data/invalid-config-files \ 94 data/equiv-config-files \ 95 data/equiv-config-files/basic \ 96 data/equiv-config-files/basic/basic.d \ 97 data/equiv-config-files/entities \ 98 data/equiv-config-files/entities/basic. [all...] |
/external/clearsilver/ |
LICENSE | 3 All files in this release are marked with their license 4 terms. Files which are part of our public open-source 6 A few files are from other sources, and will include their respective
|
/external/clearsilver/util/ |
neo_files.h | 30 NEOERR *ne_listdir(const char *path, ULIST **files); 31 NEOERR *ne_listdir_match(const char *path, ULIST **files, const char *match); 32 NEOERR *ne_listdir_fmatch(const char *path, ULIST **files, MATCH_FUNC fmatch,
|
/external/icu4c/test/intltest/ |
ucaconf.h | 9 * files. ICU ships with stub data files, as the whole test are too 10 * long. To do the whole test, download the test files.
|
/prebuilt/darwin-x86/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/include/ |
README | 1 This README file is copied into the directory for GCC-only header files 4 Many of the files in this directory were automatically edited from the 5 standard system header files by the fixincludes process. They are
|
/prebuilt/darwin-x86/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/install-tools/include/ |
README | 1 This README file is copied into the directory for GCC-only header files 4 Many of the files in this directory were automatically edited from the 5 standard system header files by the fixincludes process. They are
|