/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/ |
D | PsdFile.java | 68 DataOutputStream out = new DataOutputStream(new BufferedOutputStream(stream)); in write() local 70 mHeader.write(out); in write() 71 out.flush(); in write() 73 mColorMode.write(out); in write() 74 mImageResources.write(out); in write() 75 mLayersMasksInfo.write(out); in write() 76 mLayersInfo.write(out); in write() 77 out.flush(); in write() 79 mLayersInfo.writeImageData(out); in write() 80 out.flush(); in write() [all …]
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
D | CaptureLoader.java | 44 BufferedWriter out = null; in saveLayers() local 52 out = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream())); in saveLayers() 55 out.write("CAPTURE_LAYERS " + window.encode()); in saveLayers() 56 out.newLine(); in saveLayers() 57 out.flush(); in saveLayers() 74 if (out != null) { in saveLayers() 75 out.close(); in saveLayers() 94 System.out.println("Found end of layers list"); in readLayer() 98 System.out.println("name = " + name); in readLayer() 132 BufferedWriter out = null; in loadCapture() local [all …]
|
D | WindowsLoader.java | 36 BufferedWriter out = null; in loadWindows() local 37 System.out.println("protocol = " + protocol); in loadWindows() 38 System.out.println("version = " + server); in loadWindows() 46 out = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream())); in loadWindows() 49 out.write("LIST"); in loadWindows() 50 out.newLine(); in loadWindows() 51 out.flush(); in loadWindows() 80 if (out != null) { in loadWindows() 81 out.close(); in loadWindows()
|
D | VersionLoader.java | 43 BufferedWriter out = null; in loadVersion() local 50 out = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream())); in loadVersion() 53 out.write(command); in loadVersion() 54 out.newLine(); in loadVersion() 55 out.flush(); in loadVersion() 62 if (out != null) { in loadVersion() 63 out.close(); in loadVersion()
|
D | ViewManager.java | 44 BufferedWriter out = null; in sendCommand() local 51 out = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream())); in sendCommand() 53 out.write(command + " " + window.encode() + " " + params); in sendCommand() 54 out.newLine(); in sendCommand() 55 out.flush(); in sendCommand() 60 if (out != null) { in sendCommand() 61 out.close(); in sendCommand()
|
D | ProfilesLoader.java | 40 BufferedWriter out = null; in loadProfiles() local 47 out = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream())); in loadProfiles() 50 out.write("PROFILE " + window.encode() + " " + params); in loadProfiles() 51 out.newLine(); in loadProfiles() 52 out.flush(); in loadProfiles() 66 if (out != null) { in loadProfiles() 67 out.close(); in loadProfiles()
|
D | ViewHierarchyLoader.java | 44 BufferedWriter out = null; in loadScene() local 49 System.out.println("==> Starting client"); in loadScene() 55 out = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream())); in loadScene() 58 System.out.println("==> DUMP"); in loadScene() 60 out.write("DUMP " + window.encode()); in loadScene() 61 out.newLine(); in loadScene() 62 out.flush(); in loadScene() 119 if (out != null) { in loadScene() 120 out.close(); in loadScene() 131 System.out.println("==> DONE"); in loadScene()
|
/sdk/testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/ |
D | Rect.java | 29 public void writeToParcel(Parcel out) { in writeToParcel() argument 30 out.writeInt(left); in writeToParcel() 31 out.writeInt(top); in writeToParcel() 32 out.writeInt(right); in writeToParcel() 33 out.writeInt(bottom); in writeToParcel()
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ |
D | HierarchyViewer.java | 65 System.out.println("List of devices attached"); in listDevices() 78 System.out.println(device.toString() + "\t\t" + in printDevice() 90 System.out.println("Capturing layers to " + file); in outputPsd() 93 System.out.println("The selected device does not exist"); in outputPsd() 121 System.out.println("Usage: hierarchyviewer1 [options]\n"); in main() 122 System.out.println("Options:"); in main() 123 System.out.println(" --help\t\t\t Show this help message and exit"); in main() 124 System.out.println(" --no-profiling\t Disable views profiling"); in main() 125 System.out.println(" --devices\t\t\t Show the list of available devices"); in main() 126 System.out.println(" --psd [device] <file>\t Export psd and exit"); in main() [all …]
|
/sdk/testapps/customPropAnimTest/src/com/android/custompropertyanimation/ |
D | MyView.java | 15 System.out.println("foo = " + foo); in setFoo() 20 System.out.println("getFoo() returning " + mFoo); in getFoo()
|
/sdk/testapps/aidlTest/libWithAidl/src/com/android/tests/aidl/lib/ |
D | MyParcelable.java | 29 public void writeToParcel(Parcel out, int flags) { in writeToParcel() argument 30 out.writeInt(mData); in writeToParcel()
|
/sdk/eventanalyzer/src/com/android/eventanalyzer/ |
D | EventAnalyzer.java | 465 System.out.println("Usage:"); in printUsageAndQuit() 466 System.out.println(" eventanalyzer [-t <TAG_FILE>] <SOURCE> <OUTPUT>"); in printUsageAndQuit() 467 System.out.println(""); in printUsageAndQuit() 468 System.out.println("Possible sources:"); in printUsageAndQuit() 469 … System.out.println(" -fb <file> The path to a binary event log, gathered by dumpeventlog"); in printUsageAndQuit() 470 …System.out.println(" -ft <file> The path to a text event log, gathered by adb logcat -b event… in printUsageAndQuit() 471 … System.out.println(" -F <folder> The path to a folder containing multiple text log files."); in printUsageAndQuit() 472 …System.out.println(" -s <serial> The serial number of the Device to grab the event log from."); in printUsageAndQuit() 473 System.out.println("Options:"); in printUsageAndQuit() 474 …System.out.println(" -t <file> The path to tag file to use in case the one associated with"); in printUsageAndQuit() [all …]
|
/sdk/dumpeventlog/src/com/android/dumpeventlog/ |
D | DumpEventLog.java | 57 System.out.println(e); in newData() 76 System.out.println("Usage: dumpeventlog <device s/n> <filepath>"); in main()
|
/sdk/ |
D | README.txt | 1 Some of the SDK tools sources have moved out of the sdk.git project. 28 Output is located in $TOP/out/host/gradle/tools/base/lint/libs/ 62 repo located in the out/gradle folder. Note that this is just a 68 located in the out/gradlew folder.
|
/sdk/testapps/customViewTest/libWithCustomView/ |
D | ant.properties | 10 # 'out.dir' for the location of your output folder.
|
/sdk/testapps/basicProjectWithAidl/ |
D | ant.properties | 10 # 'out.dir' for the location of your output folder.
|
/sdk/testapps/customViewTest/mainProject/ |
D | ant.properties | 10 # 'out.dir' for the location of your output folder.
|
/sdk/testapps/jarCheckTests2/lib2/ |
D | ant.properties | 10 # 'out.dir' for the location of your output folder.
|
/sdk/testapps/jarCheckTests2/app/ |
D | ant.properties | 10 # 'out.dir' for the location of your output folder.
|
/sdk/testapps/jarCheckTests3/lib2/ |
D | ant.properties | 10 # 'out.dir' for the location of your output folder.
|
/sdk/testapps/buildConfigTest/app/ |
D | ant.properties | 10 # 'out.dir' for the location of your output folder.
|
/sdk/testapps/jarCheckTests1/app/ |
D | ant.properties | 10 # 'out.dir' for the location of your output folder.
|
/sdk/testapps/jarCheckTests1/lib1/ |
D | ant.properties | 10 # 'out.dir' for the location of your output folder.
|
/sdk/testapps/jarCheckTests1/lib2/ |
D | ant.properties | 10 # 'out.dir' for the location of your output folder.
|
/sdk/testapps/aidlTest/mainProject/ |
D | ant.properties | 10 # 'out.dir' for the location of your output folder.
|