/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
D | AndroidNature.java | 197 ICommand command = desc.newCommand(); in configureResourceManagerBuilder() local 198 command.setBuilderName(ResourceManagerBuilder.ID); in configureResourceManagerBuilder() 199 newCommands[0] = command; in configureResourceManagerBuilder() 243 ICommand command = desc.newCommand(); in configurePreBuilder() local 244 command.setBuilderName(PreCompilerBuilder.ID); in configurePreBuilder() 245 newCommands[index] = command; in configurePreBuilder() 269 ICommand command = desc.newCommand(); in configureApkBuilder() local 270 command.setBuilderName(PostCompilerBuilder.ID); in configureApkBuilder() 271 newCommands[commands.length] = command; in configureApkBuilder()
|
D | ProjectHelper.java | 1053 for (ICommand command : commands) { in compileInReleaseMode() 1054 String name = command.getBuilderName(); in compileInReleaseMode() 1058 if (command.getArguments() != null) { in compileInReleaseMode() 1059 newArgs.putAll(command.getArguments()); in compileInReleaseMode() 1068 command.getArguments(), monitor); in compileInReleaseMode() 1073 command.getArguments(), monitor); in compileInReleaseMode()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
D | BuildHelper.java | 521 List<String> command = new ArrayList<String>(); in runProguard() local 522 command.add(AdtPlugin.getOsAbsoluteProguard()); in runProguard() 525 command.add("-include"); //$NON-NLS-1$ in runProguard() 526 command.add(quotePath(configFile.getAbsolutePath())); in runProguard() 529 command.add("-injars"); //$NON-NLS-1$ in runProguard() 535 command.add(quoteWinArg(sb.toString())); in runProguard() 537 command.add("-outjars"); //$NON-NLS-1$ in runProguard() 538 command.add(quotePath(obfuscatedJar.getAbsolutePath())); in runProguard() 540 command.add("-libraryjars"); //$NON-NLS-1$ in runProguard() 549 command.add(quoteWinArg(sb.toString())); in runProguard() [all …]
|
D | AidlProcessor.java | 243 private boolean execAidl(BaseBuilder builder, IProject project, String[] command, IFile file, in execAidl() argument 249 for (String c : command) { in execAidl() 257 Process p = Runtime.getRuntime().exec(command); in execAidl() 298 String msg = String.format(Messages.AIDL_Exec_Error_s, command[0]); in execAidl() 304 String msg = String.format(Messages.AIDL_Exec_Error_s, command[0]); in execAidl()
|
D | build_messages.properties | 64 …der_Update_or_Execute_manually_s=Update it if necessary, or manually execute the following command:
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/ |
D | ActivityLaunchAction.java | 48 String command = "am start" //$NON-NLS-1$ in doLaunchAction() local 67 device.executeShellCommand(command, new AMReceiver(info, device, mLaunchController)); in doLaunchAction() 85 AdtPlugin.log(e, "No command output when running: '%1$s' on device %2$s", command, in doLaunchAction()
|
D | messages.properties | 42 RemoteAdtTestRunner_RunAdbCommandRejectedException_s=Adb rejected command: %s
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
D | VersionLoader.java | 40 private static int loadVersion(IDevice device, String command) { in loadVersion() argument 53 out.write(command); in loadVersion()
|
D | ViewManager.java | 42 private static void sendCommand(String command, IDevice device, Window window, String params) { in sendCommand() argument 53 out.write(command + " " + window.encode() + " " + params); in sendCommand()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/ |
D | GdbServerTask.java | 68 String command = String.format("run-as %s lib/gdbserver +%s --attach %d", in run() local 71 mDevice.executeShellCommand(command, mOutputReceiver, 0); in run()
|
D | NdkGdbLaunchDelegate.java | 233 String command = String.format("am start -n %s/%s", manifestData.getPackage(), //$NON-NLS-1$ in doLaunch() local 238 device.executeShellCommand(command, receiver); in doLaunch() 498 String command = String.format("run-as %s /system/bin/sh -c pwd", app); //$NON-NLS-1$ in getAppDirectory() local 502 device.executeShellCommand(command, receiver); in getAppDirectory()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/ |
D | ExportWizard.java | 560 String[] command = new String[5]; in zipAlign() local 561 command[0] = zipAlignPath; in zipAlign() 562 command[1] = "-f"; //$NON-NLS-1$ in zipAlign() 563 command[2] = "4"; //$NON-NLS-1$ in zipAlign() 564 command[3] = source.getAbsolutePath(); in zipAlign() 565 command[4] = destination.getAbsolutePath(); in zipAlign() 567 Process process = Runtime.getRuntime().exec(command); in zipAlign()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
D | AndroidXmlAutoEditStrategy.java | 345 private void copyPreviousLineIndentation(IDocument doc, DocumentCommand command) in copyPreviousLineIndentation() argument 348 if (command.offset == -1 || doc.getLength() == 0) { in copyPreviousLineIndentation() 352 int lineStart = findLineStart(doc, command.offset); in copyPreviousLineIndentation() 353 int textStart = findTextStart(doc, lineStart, command.offset); in copyPreviousLineIndentation() 355 StringBuilder sb = new StringBuilder(command.text); in copyPreviousLineIndentation() 360 command.text = sb.toString(); in copyPreviousLineIndentation()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/ |
D | DexDumpAction.java | 167 String[] command = new String[2]; in runDexDump() local 168 command[0] = dexDumpFile.getAbsolutePath(); in runDexDump() 169 command[1] = classesDexFile.getAbsolutePath(); in runDexDump() 172 final Process process = Runtime.getRuntime().exec(command); in runDexDump()
|
D | SdkManagerAction.java | 189 String command[] = new String[] { in openExternalSdkManager() 193 Process process = Runtime.getRuntime().exec(command); in openExternalSdkManager()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/build/ |
D | NdkCommandLauncher.java | 119 private String findWindowsExecutableExtension(IPath command) { in findWindowsExecutableExtension() argument 121 File exeFile = command.addFileExtension(e).toFile(); in findWindowsExecutableExtension()
|
/sdk/apkbuilder/ |
D | readme.txt | 1 The apkbuilder command line tool is deprecated, and is not maintained anymore.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
D | TemplateHandlerTest.java | 864 List<String> command = new ArrayList<String>(); in ensureNoBuildErrors() local 865 command.add(AdtPlugin.getOsSdkToolsFolder() + "android" + in ensureNoBuildErrors() 867 command.add("update"); in ensureNoBuildErrors() 868 command.add("project"); in ensureNoBuildErrors() 869 command.add("-p"); in ensureNoBuildErrors() 870 command.add(projectDir.getPath()); in ensureNoBuildErrors() 873 Process process = Runtime.getRuntime().exec(command.toArray(new String[command.size()])); in ensureNoBuildErrors()
|
/sdk/docs/ |
D | howto_use_cupcake_sdk.txt | 57 Unzip the SDK somewhere. We'll call that directory "SDK" in command-line 222 command given above to read the rest. 231 these operations. For right now, please use the command line interface. 247 To learn about available targets in your SDK, use this command: 259 command line. 299 D- Invoking an AVD from the command-line 302 To use this AVD in the emulator from the command-line, type:
|
D | howto_build_SDK.txt | 57 It is designed for advanced users which are proficient with command-line 134 tofrodos adds a unix2dos command
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/ |
D | AdtStartup.java | 198 String[] command = new String[] { in getSdkPathFromWindowsRegistry() local 204 process = Runtime.getRuntime().exec(command); in getSdkPathFromWindowsRegistry()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/ |
D | DeviceView.java | 267 String[] command = new String[3]; in open() local 268 command[0] = DdmsPlugin.getHprofConverter(); in open() 269 command[1] = path; in open() 270 command[2] = tempPath; in open() 272 Process p = Runtime.getRuntime().exec(command); in open()
|
/sdk/ |
D | README.txt | 6 them by using a repo init command such as: 23 To build it from the command-line, you'd use "gradle" as such:
|
/sdk/bash_completion/ |
D | adb.bash | 201 printf '%s\n' "$command"
|
/sdk/find_java/ |
D | find_java.bat | 42 rem be 0 if the command worked or 1 if the exec failed (program not found).
|