Home
last modified time | relevance | path

Searched refs:files (Results 1 – 25 of 125) sorted by relevance

12345

/development/vndk/tools/sourcedr/Documentation/
Dlist-installed-files-from-source-dirs.md5 files or vendor prebuilts that will be installed into the system image.
8 image. Some listed files are not actually installed because they are not
27 | tee files.txt
36 files. It is desirable to keep the parsed dependency graph for further
56 By default, `list_installed_file_from_source.py` lists the files that are from
60 * `--installed-filter` filters the paths of the files that may be installed to
64 * `--source-filter` filters the paths of the source files. The paths must be
72 List the files from `device/google` and installed to `/system`:
82 List the files from `device/google` and installed into `/system/lib64` with:
92 List the files from `frameworks/base` or `frameworks/native` and installed
/development/host/windows/usb/
Dreadme.txt10 * 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,
/development/samples/apkcachetest/src/com/android/apkcachetest/
DMain.java44 File[] files = preloadsFileCache.listFiles(); in onCreate() local
45 if (files == null || files.length == 0) { in onCreate()
48 for (File file : files) { in onCreate()
56 txt.append(files.length + " files"); in onCreate()
/development/samples/ShortcutSample/
DAndroid.mk35 LOCAL_SRC_FILES := $(call all-java-files-under, src)
59 LOCAL_SRC_FILES := $(call all-java-files-under, src)
83 LOCAL_SRC_FILES := $(call all-java-files-under, src)
108 LOCAL_SRC_FILES := $(call all-java-files-under, src)
133 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/development/samples/ShortcutDemo/publisher/
DAndroid.mk34 LOCAL_SRC_FILES := $(call all-java-files-under, src)
35 LOCAL_SRC_FILES += $(call all-java-files-under, ../common/src)
58 LOCAL_SRC_FILES := $(call all-java-files-under, src)
59 LOCAL_SRC_FILES += $(call all-java-files-under, ../common/src)
/development/samples/ShortcutDemo/launcher/
DAndroid.mk30 LOCAL_SRC_FILES := $(call all-java-files-under, src)
31 LOCAL_SRC_FILES += $(call all-java-files-under, ../common/src)
57 LOCAL_SRC_FILES := $(call all-java-files-under, src)
58 LOCAL_SRC_FILES += $(call all-java-files-under, ../common/src)
/development/tools/rmtypedefs/test/com/android/tools/rmtypedefs/
DRmTypeDefsTest.java228 File[] files = file.listFiles(); in list() local
229 if (files != null) { in list()
231 Collections.addAll(children, files); in list()
256 File[] files = root.listFiles(); in deleteDir() local
257 if (files != null) { in deleteDir()
258 for (File file : files) { in deleteDir()
/development/samples/SkeletonApp/
Dreadme.txt11 The files contained here:
41 The res/layout/ directory contains XML files describing user interface
52 special XML files describing more complex drawings. The violet.png file
54 skeleton_activity.xml. Like layout files, the base name is used for the
62 These XML files describe additional resources included in the application.
/development/testrunner/test_defs/
Dnative_test.py102 def _CollectTestSources(self, test_list, dirname, files): argument
117 for f in files:
157 for root, dirs, files in os.walk(path):
158 for f in files:
Dgtest.py110 def _CollectTestSources(self, test_list, dirname, files): argument
126 for f in files:
/development/vndk/tools/
Dsystem_image_diff.py46 for root, dirs, files in os.walk(system_prefix, topdown=True):
47 for file in files:
143 for package, files in packages.iteritems():
144 for file in files:
/development/samples/RenderScript/HelloCompute/
DAndroid.mk22 LOCAL_SRC_FILES := $(call all-java-files-under, src) \
23 $(call all-renderscript-files-under, src)
/development/samples/RenderScript/Levels/
DAndroid.mk22 LOCAL_SRC_FILES := $(call all-java-files-under, src) $(call all-renderscript-files-under, src)
/development/gsi/gsi_util/gsi_util/utils/
Dsepolicy_utils.py20 def secilc(options, files): argument
75 cmd.extend(files)
/development/samples/BusinessCard/
DAndroid.bp3 // Only compile source java files in this apk.
16 // Only compile source java files in this apk.
/development/vndk/tools/sourcedr/
DREADME.md9 - [files/list_app_shared_uid.py](files/list_app_shared_uid.py) lists all
/development/tools/rmtypedefs/
DREADME.txt3 This utility finds and removes all .class files that have been
9 typedef will appear in .class files as well.
/development/vndk/tools/image-diff-tool/
Dcompare_images_and_print.sh61 [ERROR] Unexpected diffing files.
62 There are diffing files that are not ignored by allowlist.
/development/tools/idegen/
Dexcluded-paths2 # line, which match paths of directories and .jar files that should be excluded
11 # Currently, we lump all the .java files together into one big module, so you
26 # Duplicate R.java files. We'll keep the versions from the "intermediates"
/development/tools/idegen/src/
DConfiguration.java126 File[] files = directory.listFiles(); in traverse() local
127 if (files == null) { in traverse()
130 for (File file : files) { in traverse()
/development/vndk/snapshot/
Dutils.py132 for root, _, files in os.walk(path):
133 for file_name in sorted(files):
/development/tools/rmtypedefs/src/com/android/tools/rmtypedefs/
DRmTypeDefs.java124 File[] files = file.listFiles(); in checkFile() local
125 if (files != null) { in checkFile()
126 for (File f : files) { in checkFile()
/development/ide/eclipse/
DREADME.importing-to-eclipse.txt24 In addition, you will need to add some include files (no way to import this
27 "Add to all configurations" and "Add to all languages". Repeat for these files:
/development/samples/browseable/AutoBackupForApps/src/com.example.android.autobackupsample/
DMainActivityFragment.java136 File[] files = dir.listFiles(); in addFilesToList() local
137 for (File file: files) { in addFilesToList()
/development/scripts/
Dboardconfig_usage_analysis.py53 for root, dirs, files in os.walk(os.path.join(TOP, folder), topdown=True):
55 for file in files:

12345