Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 28) sorted by relevance

12

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
DAndroidNature.java197 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()
DProjectHelper.java1053 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/
DBuildHelper.java521 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 …]
DAidlProcessor.java243 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()
Dbuild_messages.properties64 …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/
DActivityLaunchAction.java48 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()
Dmessages.properties42 RemoteAdtTestRunner_RunAdbCommandRejectedException_s=Adb rejected command: %s
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
DVersionLoader.java40 private static int loadVersion(IDevice device, String command) { in loadVersion() argument
53 out.write(command); in loadVersion()
DViewManager.java42 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/
DGdbServerTask.java68 String command = String.format("run-as %s lib/gdbserver +%s --attach %d", in run() local
71 mDevice.executeShellCommand(command, mOutputReceiver, 0); in run()
DNdkGdbLaunchDelegate.java233 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/
DExportWizard.java560 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/
DAndroidXmlAutoEditStrategy.java345 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/
DDexDumpAction.java167 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()
DSdkManagerAction.java189 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/
DNdkCommandLauncher.java119 private String findWindowsExecutableExtension(IPath command) { in findWindowsExecutableExtension() argument
121 File exeFile = command.addFileExtension(e).toFile(); in findWindowsExecutableExtension()
/sdk/apkbuilder/
Dreadme.txt1 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/
DTemplateHandlerTest.java864 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/
Dhowto_use_cupcake_sdk.txt57 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:
Dhowto_build_SDK.txt57 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/
DAdtStartup.java198 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/
DDeviceView.java267 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/
DREADME.txt6 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/
Dadb.bash201 printf '%s\n' "$command"
/sdk/find_java/
Dfind_java.bat42 rem be 0 if the command worked or 1 if the exec failed (program not found).

12