Home
last modified time | relevance | path

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

123

/sdk/build/
Dtools.atree18 # These are the files that comprise the tools component of the SDK.
40 # version files for the SDK updater, from sdk.git
41 sdk/files/tools_source.properties tools/source.properties
44 sdk/files/plugin.prop tools/lib/plugin.prop
47 sdk/files/adb_has_moved.txt tools/adb_has_moved.txt
81 # sdk.git Ant templates for project build files
84 sdk/files/proguard-project.txt tools/lib/proguard-project.txt
85 sdk/files/proguard-android.txt tools/proguard/proguard-android.txt
86 sdk/files/proguard-android-optimize.txt tools/proguard/proguard-android-optimize.txt
89 sdk/files/ant tools/ant
[all …]
Dtools.windows.atree18 # These are the files that comprise the tools component of the Windows SDK.
98 # RCP Monitor. Remove linux stuff and replace by Windows files.
114 # Supporting bat files
115 sdk/files/post_tools_install.bat tools/lib/post_tools_install.bat
/sdk/emulator/opengl/host/tools/emugen/
DREADME14 * Input files description & format
107 Emugen input files - protocol specification
109 The protocol generated by emugen consists of two input files:
113 from c/c++ header files or similar.
116 the files that are generated for this protocol. A line in the .in
140 This files describes the types that are described by the API. A type
156 Encoder generated code files
158 In order to generate the encoder files, one should run the ‘emugen’
161 emugen -i <input directory> -E <encoder files output directory> <basename>
163 <input directory> containes the api specification files (basename.in + basename.attrib)
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
DTemplateManager.java151 File[] files = new File(root, folder).listFiles(); in getTemplates() local
152 if (files != null) { in getTemplates()
153 for (File file : files) { in getTemplates()
164 File[] files = new File(extra, folder).listFiles(); in getTemplates() local
165 if (files != null) { in getTemplates()
166 for (File file : files) { in getTemplates()
/sdk/attribute_stats/
DREADME.txt5 files. This is how the "topAttrs" attributes listed in ADT's
11 all of them recursively for layout files that are not in folders
/sdk/
Dchanges.txt10 * Aidl files from library projects are now in the import list.
35 @SuppressLint annotation, and in XML files with the new tools:
49 * Find manifest files which declare more than one <uses-sdk>
72 * Find Java code which creates world-writeable files (which can lead
88 * Find XML files using a different encoding format than UTF-8, since
91 * Find XML resource files that contain text which should not be
103 configuration files, etc. For a full list of available issues run
115 * PNG files that are optimized during resource packaging are now cached
131 source files (in the gen directory) and bytecode (in the res/raw
132 directory) from your native .rs files
[all …]
D.gitignore11 # Hide temporary files created by the build_server script
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
DProjectClassLoader.java176 File[] files = parent.listFiles(); in getFile() local
182 if (files != null) { in getFile()
183 for (File file : files) { in getFile()
196 if (files != null) { in getFile()
197 for (File file : files) { in getFile()
/sdk/annotations/
DAndroid.mk19 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/sdk/dumpeventlog/src/
DAndroid.mk6 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/sdk/eventanalyzer/src/
DAndroid.mk19 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
DAdtUtils.java498 IFile[] files = workspace.findFilesForLocationURI(file.toURI()); in fileToIFile() local
499 if (files.length > 0) { in fileToIFile()
500 return files[0]; in fileToIFile()
519 IFile[] files = workspace.findFilesForLocationURI(file.toURI()); in fileToResource() local
520 if (files.length > 0) { in fileToResource()
521 return files[0]; in fileToResource()
537 IFile[] files = workspace.findFilesForLocationURI(URIUtil.toURI(path.makeAbsolute())); in pathToIFile() local
538 if (files.length > 0) { in pathToIFile()
539 return files[0]; in pathToIFile()
565 IFile[] files = workspace.findFilesForLocationURI(URIUtil.toURI(path.makeAbsolute())); in pathToResource() local
[all …]
/sdk/hierarchyviewer/src/
DAndroid.mk18 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/sdk/eclipse/
Dchanges.txt8 * Find misspellings in English string files
11 * Find private key files placed in directories where they end up
14 * Find invalid selector files where a later state is fully covered
24 * Automatic merging of library project manifest files into the
29 file containing classes to keep that are referenced from XML files
36 * Aidl files from library projects are now in the import list.
47 * Lint is run incrementally in Java files on save, just like XML
48 files already are.
57 files and preferences, look for calls to
123 manifest files now include version descriptions for each of the
[all …]
/sdk/emulator/skins/assets/
DREADME.txt1 The svg files in these folder were used to generate the corresponding
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
DLintJob.java88 List<File> files = new ArrayList<File>(mResources.size()); in run() local
91 files.add(file); in run()
153 mLint.analyze(files, scope); in run()
/sdk/bash_completion/
Dadb.bash331 local -a dirs files
351 files=( ${COMPREPLY[@]:-} $(compgen -f -- "${cur}") )
353 files=( ${COMPREPLY[@]:-} $(compgen -f -X "${xspec}" -- "${cur}") )
/sdk/apps/DeviceConfig/
DREADME.txt3 tools/base/files/devices.xml).
/sdk/docs/
Dhowto_SDK_git_cygwin.txt97 sync" some projects are marked as having modified files. This happens on the
98 "bionic" and the "external/iptables" project. The issue is that they have files
113 The other thing we can do is tell git not to track the files that cause
130 needed and tell git to ignore the offending files:
164 # These files cause trouble too, we need to ignore them
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/io/
DIFolderWrapper.java99 IResource[] files = mContainer.members(); in hasFile() local
100 for (IResource file : files) { in hasFile()
/sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/
DTraceviewEditor.java91 IFile[] files = workspaceRoot.findFilesForLocationURI(fileStore.toURI()); in getWorkspaceFile() local
92 if (files != null && files.length == 1) in getWorkspaceFile()
93 return files[0]; in getWorkspaceFile()
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/templates/
DSimpleFile.java62 ProcessArgument[][] files = arg.getComplexArrayValue(); in process() local
63 for (ProcessArgument[] file : files) { in process()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
DResourceExplorerView.java148 ResourceFile[] files = item.getSourceFileArray(); in createPartControl()
149 if (files[0] != null) { in createPartControl()
151 IAbstractFile iAbstractFile = files[0].getFile(); in createPartControl()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt.overlay/
DREADME.txt2 XML formatting via the "Source > Format" action on files.
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
DSourceProcessor.java151 ArrayList<IFile> files = new ArrayList<IFile>(); in isDependency() local
154 files.add(data.getSourceFile()); in isDependency()
158 return files; in isDependency()

123