/development/tools/winscope/src/traces/ |
D | TraceBase.ts | 30 constructor(data: any, timeline: Number[], files: any[]) { 34 this._files = files; 37 get files(): File[] { method in Trace 44 if (this.files.length == 0) { 48 if (this.files.length == 1) { 49 return this.files[0].blobUrl; 55 for (const file of this.files) { 67 files: Array<Object>; property
|
D | InputMethodClients.ts | 23 constructor(files) { 24 const imeTraceFileClients = files[FILE_TYPES.IME_TRACE_CLIENTS]; 25 super(imeTraceFileClients.data, imeTraceFileClients.timeline, files);
|
D | Wayland.ts | 23 constructor(files) { 24 const waylandFile = files[FILE_TYPES.WAYLAND_TRACE]; 25 super(waylandFile.data, waylandFile.timeline, files);
|
D | ScreenRecording.ts | 23 constructor(files) { 24 const screenRecordingFile = files[FILE_TYPES.SCREEN_RECORDING]; 25 super(screenRecordingFile.data, screenRecordingFile.timeline, files);
|
D | InputMethodService.ts | 23 constructor(files) { 24 const imeTraceFileService = files[FILE_TYPES.IME_TRACE_SERVICE]; 25 super(imeTraceFileService.data, imeTraceFileService.timeline, files);
|
D | SystemUI.ts | 23 constructor(files) { 24 const systemUIFile = files[FILE_TYPES.SYSTEM_UI]; 25 super(systemUIFile.data, systemUIFile.timeline, files);
|
D | InputMethodManagerService.ts | 23 constructor(files) { 24 const imeTraceFileManagerService = files[FILE_TYPES.IME_TRACE_MANAGERSERVICE]; 25 super(imeTraceFileManagerService.data, imeTraceFileManagerService.timeline, files);
|
D | SurfaceFlinger.ts | 23 constructor(files) { 24 const sfTraceFile = files[FILE_TYPES.SURFACE_FLINGER_TRACE]; 25 super(sfTraceFile.data, sfTraceFile.timeline, files);
|
D | Launcher.ts | 23 constructor(files) { 24 const launcherFile = files[FILE_TYPES.LAUNCHER]; 25 super(launcherFile.data, launcherFile.timeline, files);
|
D | WindowManager.ts | 25 constructor(files) { 26 const wmTraceFile = files[FILE_TYPES.WINDOW_MANAGER_TRACE]; 27 super(wmTraceFile.data, wmTraceFile.timeline, files);
|
/development/tools/checkcolor/ |
D | .gitignore | 1 #built application files 5 # files for the dex VM 8 # Java class files 11 # generated files 21 # OSX files 24 # Eclipse project files
|
/development/tools/winscope/src/ |
D | main.js | 42 function sortFiles(files) { argument 43 return files.sort( 51 function findSmallestTimestamp(files) { argument 53 for (const file of files) { 86 files(state) { 90 return sortFiles(getters.files); 114 setFiles(state, files) { argument 116 for (const file of files) { 129 for (const traceDataFile of typeInfo.files) { 131 const files = filesByType[traceDataFile.type]; [all …]
|
/development/tools/winscope/src/dumps/ |
D | DumpBase.ts | 21 constructor(data, files) { 23 this._files = files; 26 get files(): any[] { method in DumpBase 34 files: Array<Object>;
|
D | Wayland.ts | 23 constructor(files) { 24 const waylandFile = files[FILE_TYPES.WAYLAND_DUMP]; 25 super(waylandFile.data, files);
|
D | SurfaceFlinger.ts | 24 constructor(files) { 25 const sfDumpFile = files[FILE_TYPES.SURFACE_FLINGER_DUMP]; 26 super(sfDumpFile.data, files);
|
D | WindowManager.ts | 25 constructor(files) { 26 const wmDumpFile = files[FILE_TYPES.WINDOW_MANAGER_DUMP]; 27 super(wmDumpFile.data, files);
|
/development/samples/ReceiveContentDemo/src/com/example/android/receivecontent/ |
D | AttachmentsRepo.java | 85 File[] files = mAttachmentsDir.listFiles(); in deleteAll() local 86 if (files == null) { in deleteAll() 89 for (File file : files) { in deleteAll() 96 File[] files = mAttachmentsDir.listFiles(); in getAllUris() local 97 if (files == null || files.length == 0) { in getAllUris() 100 ImmutableList.Builder<Uri> uris = ImmutableList.builderWithExpectedSize(files.length); in getAllUris() 101 for (File file : files) { in getAllUris()
|
/development/samples/apkcachetest/src/com/android/apkcachetest/ |
D | Main.java | 44 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/vndk/tools/sourcedr/Documentation/ |
D | list-installed-files-from-source-dirs.md | 5 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/ |
D | 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,
|
/development/samples/ShortcutDemo/publisher/ |
D | Android.mk | 36 LOCAL_SRC_FILES := $(call all-java-files-under, src) 37 LOCAL_SRC_FILES += $(call all-java-files-under, ../common/src) 62 LOCAL_SRC_FILES := $(call all-java-files-under, src) 63 LOCAL_SRC_FILES += $(call all-java-files-under, ../common/src)
|
/development/samples/ShortcutDemo/launcher/ |
D | Android.mk | 32 LOCAL_SRC_FILES := $(call all-java-files-under, src) 33 LOCAL_SRC_FILES += $(call all-java-files-under, ../common/src) 61 LOCAL_SRC_FILES := $(call all-java-files-under, src) 62 LOCAL_SRC_FILES += $(call all-java-files-under, ../common/src)
|
/development/samples/RenderScript/HelloCompute/ |
D | Android.mk | 22 LOCAL_SRC_FILES := $(call all-java-files-under, src) \ 23 $(call all-renderscript-files-under, src)
|
/development/samples/RenderScript/Levels/ |
D | Android.mk | 22 LOCAL_SRC_FILES := $(call all-java-files-under, src) $(call all-renderscript-files-under, src)
|
/development/tools/winscope/src/mixins/ |
D | FocusedDataViewFinder.js | 40 for (const file of this.files) { 65 let focusedDataView = this.files[0]; 66 for (const file of this.files) {
|