Searched refs:message (Results 126 - 150 of 199) sorted by relevance

12345678

/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/ui/
H A DAuthenticationDialog.java47 * Constructor which retrieves the parent {@link Shell} and the message to
52 * @param message Message the be displayed in this dialog.
54 public AuthenticationDialog(Shell parentShell, String title, String message) { argument
58 mMessage = message;
76 // add message label
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
H A DGridLayoutRule.java477 String message;
479 message = width;
481 message = height;
484 message = String.format("%s \u00D7 %s", width, height);
488 return String.format("%s\n(Press Shift to resize row/column spans)", message);
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
H A DEmulatorControlPanel.java475 // we need to encode the message. We need to replace the carriage return
479 String message = mSmsMessage.getText();
480 message = message.replaceAll("\\\\", //$NON-NLS-1$
488 message = message.replaceAll("\r\n", "\\\\n"); //$NON-NLS-1$ //$NON-NLS-2$
491 message = message.replaceAll("\n", "\\\\n"); //$NON-NLS-1$ //$NON-NLS-2$
494 message = message
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
H A DAddTranslationDialog.java416 String message = null;
419 message = "Select a language";
422 message = String.format("%1$s is already translated in this project",
429 message = String.format("%1$s (%2$s) is already translated in this project",
439 // message = String.format("Missing %1$d translations", missing);
443 boolean valid = message == null;
444 mTable.setEnabled(message == null);
446 showError(message);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
H A DLintColumn.java167 String message = marker.getAttribute(IMarker.MESSAGE, "");
168 styledString.append(message);
172 styledString.append(String.format(" (%2$d items)", message, count),
H A DGlobalLintConfiguration.java99 @Nullable Location location, @NonNull String message,
98 ignore(@onNull Context context, @NonNull Issue issue, @Nullable Location location, @NonNull String message, @Nullable Object data) argument
H A DLintFixGenerator.java189 String message = marker.getAttribute(IMarker.MESSAGE, null);
190 proposals.add(new MoreInfoProposal(id, message));
481 public MoreInfoProposal(String id, String message) { argument
483 mMessage = message;
H A DAddSuppressAnnotation.java335 String message = marker.getAttribute(IMarker.MESSAGE, null);
336 if (message != null) {
338 Matcher matcher = pattern.matcher(message);
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
H A DAndroidDebugBridge.java662 String message = String.format(
667 Log.logAndDisplay(LogLevel.ERROR, ADB, message);
670 String message = String.format(
675 Log.logAndDisplay(LogLevel.ERROR, ADB, message);
H A DSyncService.java176 Log.w("ddms", "Got unhappy response from ADB sync req: " + resp.message);
498 // create the full request message
690 // create the DONE message
709 * Reads an error message from the opened {@link #mChannel}.
710 * @param result the current adb result. Must contain both FAIL and the length of the message.
724 String message = new String(mBuffer, 0, len);
725 Log.e("ddms", "transfer error: " + message);
727 return message;
743 // create the stat request message.
/sdk/lint/cli/src/com/android/tools/lint/
H A DTextReporter.java89 output.append(warning.message);
H A DHtmlReporter.java210 mWriter.write("<span class=\"message\">"); //$NON-NLS-1$
211 appendEscapedText(warning.message);
231 String message = l.getMessage();
232 if (message != null && message.length() > 0) {
239 mWriter.write("<span class=\"message\">"); //$NON-NLS-1$
240 appendEscapedText(message);
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/build/
H A DApkBuilder.java261 public void out(String message) {
262 verboseStream.println(message);
266 public void err(String message) {
267 verboseStream.println(message);
801 * Output a given message if the verbose mode is enabled.
H A DJarListSanitizer.java142 public DifferentLibException(String message, String[] details) { argument
143 super(message);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
H A DMarginChooser.java212 String message = String.format("Hint: Use \"%1$sdp\" instead", input);
213 mErrorLabel.setText(message);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
H A DAdtStartup.java169 String message) {
176 String message) {
167 handleError( CheckSdkErrorHandler.Solution solution, String message) argument
174 handleWarning( CheckSdkErrorHandler.Solution solution, String message) argument
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
H A DInstallDependencyPage.java288 String message = String.format("Could not open browser. Vist\n%1$s\ninstead.",
290 MessageDialog.openError(getShell(), "Browser Error", message);
/sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/
H A DTraceviewEditor.java122 String message = String.format(
126 dialog.setMessage(message, IMessageProvider.WARNING);
/sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
H A DManifestOrderDetector.java297 String message = String.format(
300 context.getLocation(nameNode), message, null);
/sdk/ddms/app/src/com/android/ddms/
H A DUIThread.java163 "logcat.message"; //$NON-NLS-1$
334 public void onEndFailure(final Client client, final String message) { argument
343 message != null ? message + "\n\n" : "");
474 final String message) {
475 Log.printLog(logLevel, tag, message);
482 MessageDialog.openError(activeShell, tag, message);
484 MessageDialog.openWarning(activeShell, tag, message);
491 public void printLog(LogLevel logLevel, String tag, String message) {
492 Log.printLog(logLevel, tag, message);
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
H A DPostCompilerBuilder.java121 public void setWarning(IResource resource, String message) {
123 message, IMarker.SEVERITY_WARNING);
587 String message = e.getMessage();
589 AdtPlugin.printErrorToConsole(project, message);
591 message, IMarker.SEVERITY_ERROR);
626 // mark the project with the standard message
642 // mark the project with the standard message
649 // mark the project with the standard message
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
H A DGestureManager.java126 * Flag tracking whether we've set a message or error message on the global status
127 * line (since we only want to clear that message if we have set it ourselves).
128 * This is the actual message rather than a boolean such that (if we can get our
129 * hands on the global message) we can check to see if the current message is the
350 * Update the Eclipse status message with any feedback messages from the given
352 * @param feedback the feedback whose message we want to display, or null to clear the
353 * message if previously set
369 } else if (feedback.message !
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
H A DExtractStyleWizard.java356 String message = validator.isValid(text);
357 if (message != null) {
358 setErrorMessage(message);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
H A DUiClassAttributeNode.java330 // Make sure the validator removes its message(s) when the widget is disposed
672 * Sets the error messages. If message is <code>null</code>, the message is removed.
673 * @param message the message to set, or <code>null</code> to remove the current message
674 * @param textWidget the {@link Text} widget associated to the message.
676 private final void setErrorMessage(String message, Text textWidget) { argument
677 if (message != null) {
679 getManagedForm().getMessageManager().addMessage(textWidget, message, nul
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/
H A DAttributeInfoTest.java350 String message = "In file " +
355 System.out.println("\n" + message);
356 fail(message);

Completed in 481 milliseconds

12345678