Home
last modified time | relevance | path

Searched refs:ERROR (Results 1 – 25 of 125) sorted by relevance

12345

/sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/bytecode/
DViewTagTest.java.txt21 view.setTag(android.R.id.button1, group); // ERROR
22 view.setTag(android.R.id.icon, view.findViewById(android.R.id.icon)); // ERROR
23 view.setTag(android.R.id.icon1, cursor1); // ERROR
24 view.setTag(android.R.id.icon2, cursor2); // ERROR
25 view.setTag(android.R.id.copy, new MyViewHolder()); // ERROR
DHandlerTest.java.txt12 public class Inner extends Handler { // ERROR
18 Handler anonymous = new Handler() { // ERROR
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
DApplicationInfoPage.java442 if (status == null || status.getSeverity() != IStatus.ERROR) { in validatePage()
448 if (status == null || status.getSeverity() != IStatus.ERROR) { in validatePage()
455 if (status == null || status.getSeverity() != IStatus.ERROR) { in validatePage()
464 if (status == null || status.getSeverity() != IStatus.ERROR) { in validatePage()
472 if (status == null || status.getSeverity() != IStatus.ERROR) { in validatePage()
479 if (status == null || status.getSeverity() != IStatus.ERROR) { in validatePage()
488 if (status == null || status.getSeverity() != IStatus.ERROR) { in validatePage()
490 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validatePage()
498 setPageComplete(status == null || status.getSeverity() != IStatus.ERROR); in validatePage()
501 status.getSeverity() == IStatus.ERROR in validatePage()
[all …]
DProjectNamePage.java439 if (status == null || status.getSeverity() != IStatus.ERROR) { in validatePage()
452 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validatePage()
461 setPageComplete(status == null || status.getSeverity() != IStatus.ERROR); in validatePage()
464 status.getSeverity() == IStatus.ERROR in validatePage()
465 ? IMessageProvider.ERROR : IMessageProvider.WARNING); in validatePage()
495 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validateLocation()
511 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validateLocation()
516 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validateLocation()
526 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validateLocation()
534 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validateLocation()
[all …]
DSampleSelectionPage.java249 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validatePage()
252 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, "Choose a sample"); in validatePage()
254 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validatePage()
261 setPageComplete(status == null || status.getSeverity() != IStatus.ERROR); in validatePage()
264 status.getSeverity() == IStatus.ERROR in validatePage()
265 ? IMessageProvider.ERROR : IMessageProvider.WARNING); in validatePage()
DImportPage.java225 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validatePage()
228 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validatePage()
233 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validatePage()
242 setPageComplete(status == null || status.getSeverity() != IStatus.ERROR); in validatePage()
245 status.getSeverity() == IStatus.ERROR in validatePage()
246 ? IMessageProvider.ERROR : IMessageProvider.WARNING); in validatePage()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
DProjectContentsPage.java306 setPageComplete(status == null || status.getSeverity() != IStatus.ERROR); in validatePage()
309 status.getSeverity() == IStatus.ERROR in validatePage()
310 ? IMessageProvider.ERROR : IMessageProvider.WARNING); in validatePage()
326 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, String.format( in validateLocationInWorkspace()
342 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validateProjectLocation()
349 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validateProjectLocation()
355 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validateProjectLocation()
364 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validateProjectLocation()
369 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validateProjectLocation()
374 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validateProjectLocation()
DNewProjectPage.java747 if (status == null || status.getSeverity() != IStatus.ERROR) { in validatePage()
754 if (status == null || status.getSeverity() != IStatus.ERROR) { in validatePage()
762 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validatePage()
771 if (status == null || status.getSeverity() != IStatus.ERROR) { in validatePage()
773 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validatePage()
787 setPageComplete(status == null || status.getSeverity() != IStatus.ERROR); in validatePage()
790 status.getSeverity() == IStatus.ERROR in validatePage()
791 ? IMessageProvider.ERROR : IMessageProvider.WARNING); in validatePage()
802 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validateAppName()
833 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validatePackageName()
[all …]
DActivityPage.java247 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in validatePage()
256 setPageComplete(status == null || status.getSeverity() != IStatus.ERROR); in validatePage()
259 status.getSeverity() == IStatus.ERROR in validatePage()
260 ? IMessageProvider.ERROR : IMessageProvider.WARNING); in validatePage()
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/
DInstrumentationResultParser.java76 private static final String ERROR = "Error"; field in InstrumentationResultParser.StatusKeys
87 KNOWN_KEYS.add(StatusKeys.ERROR);
99 private static final int ERROR = -1; field in InstrumentationResultParser.StatusCodes
332 } else if (mCurrentKey.equals(StatusKeys.ERROR)) { in submitCurrentKeyValue()
402 testInfo.mCode = StatusCodes.ERROR; in parseStatusCode()
407 testInfo.mCode = StatusCodes.ERROR; in parseStatusCode()
464 case StatusCodes.ERROR: in reportResult()
467 listener.testFailed(ITestRunListener.TestFailure.ERROR, testId, in reportResult()
557 listener.testFailed(ITestRunListener.TestFailure.ERROR, testId, in handleTestRunFailed()
DITestRunListener.java44 ERROR, enumConstant
/sdk/ddms/libs/ddmuilib/tests/src/com/android/ddmuilib/logcat/
DLogCatFilterSettingsSerializerTest.java34 LogLevel.ERROR); in testSerializer()
59 LogLevel.ERROR); in testTransientFilters()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
DExportHelper.java112 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in exportReleaseApk()
200 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in exportReleaseApk()
280 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in exportReleaseApk()
285 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in exportReleaseApk()
292 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in exportReleaseApk()
299 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in exportReleaseApk()
302 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in exportReleaseApk()
305 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in exportReleaseApk()
308 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, in exportReleaseApk()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/lint/
DProjectLintConfigurationTest.java61 config.setSeverity(usuallyDisabledIssue, Severity.ERROR); in testBasic()
97 otherConfig.setSeverity(usuallyDisabledIssue, Severity.ERROR); in testInheritance()
104 otherConfig.setSeverity(usuallyEnabledIssue, Severity.ERROR); in testInheritance()
110 config.setSeverity(usuallyEnabledIssue, Severity.ERROR); in testInheritance()
117 otherConfig.setSeverity(usuallyDisabledIssue, Severity.ERROR); in testInheritance()
166 config.setSeverity(usuallyDisabledIssue, Severity.ERROR); in testBulkEditing()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/binaryxml/
DFileStorage.java64 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.getDefault().getBundle() in getContents()
65 .getSymbolicName(), IStatus.ERROR, mFile.getAbsolutePath(), e)); in getContents()
/sdk/manifmerger/src/com/android/manifmerger/
DXmlUtils.java93 log.error(Severity.ERROR, in parseDocument()
100 log.error(Severity.ERROR, in parseDocument()
114 log.error(Severity.ERROR, in parseDocument()
119 log.error(Severity.ERROR, in parseDocument()
151 log.error(Severity.ERROR, errorContext, "Failed to parse XML string"); in parseDocument()
286 log.error(Severity.ERROR, in printXmlFile()
317 log.error(Severity.ERROR, in printXmlString()
DManifestMerger.java537 mLog.error(Severity.ERROR, in mergeNewOrEqual()
549 mLog.error(Severity.ERROR, in mergeNewOrEqual()
581 mLog.conflict(Severity.ERROR, in mergeNewOrEqual()
648 mLog.error(Severity.ERROR, in mergeAdjustRequired()
670 mLog.error(Severity.ERROR, in mergeAdjustRequired()
794 mLog.error(Severity.ERROR, in checkGlEsVersion()
831 mLog.error(Severity.ERROR, in checkGlEsVersion()
869 mLog.error(Severity.ERROR, in checkGlEsVersion()
936 mLog.conflict(Severity.ERROR, in checkSdkVersion()
1031 mLog.error(Severity.ERROR, in extractSdkVersionAttribute()
[all …]
DMergerLog.java57 case ERROR: in wrapSdkLog()
88 case ERROR: in wrapSdkLog()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
DLintJob.java122 return new Status(Status.ERROR, AdtPlugin.PLUGIN_ID, Status.ERROR, in run()
156 return new Status(Status.ERROR, AdtPlugin.PLUGIN_ID, Status.ERROR, in run()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/
DApplicationPackageNameRefactoring.java156 Status s = new Status(Status.ERROR, AdtPlugin.PLUGIN_ID, e.getMessage(), e); in updateJavaFileImports()
159 Status s = new Status(Status.ERROR, AdtPlugin.PLUGIN_ID, e.getMessage(), e); in updateJavaFileImports()
196 Status s = new Status(Status.ERROR, AdtPlugin.PLUGIN_ID, e.getMessage(), e); in editXmlResourceFile()
199 Status s = new Status(Status.ERROR, AdtPlugin.PLUGIN_ID, e.getMessage(), e); in editXmlResourceFile()
287 Status s = new Status(Status.ERROR, AdtPlugin.PLUGIN_ID, e.getMessage(), e); in editAndroidManifest()
290 Status s = new Status(Status.ERROR, AdtPlugin.PLUGIN_ID, e.getMessage(), e); in editAndroidManifest()
492 Status s = new Status(Status.ERROR, AdtPlugin.PLUGIN_ID, e.getMessage(), e); in getTextEdit()
495 Status s = new Status(Status.ERROR, AdtPlugin.PLUGIN_ID, e.getMessage(), e); in getTextEdit()
/sdk/anttasks/src/com/android/ant/
DDependencyGraph.java41 NONE, NEW_FILE, UPDATED_FILE, MISSING_FILE, ERROR; enumConstant
88 case ERROR: in dependenciesHaveChanged()
106 case ERROR: in dependenciesHaveChanged()
265 return DependencyStatus.ERROR; in checkInputFolder()
/sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
DSeverity.java41 ERROR("Error"), enumConstant
/sdk/layoutlib_api/src/com/android/layoutlib/api/
DILayoutResult.java40 final static int ERROR = 1; field
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
DLog.java39 ERROR(6, "error", 'E'), //$NON-NLS-1$ enumConstant
203 println(LogLevel.ERROR, tag, message); in e()
230 println(LogLevel.ERROR, tag, throwable.getMessage() + '\n' + sw.toString()); in e()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
DRemoteAdtTestRunner.java256 return new Status(Status.ERROR, AdtPlugin.PLUGIN_ID, in run()
260 return new Status(Status.ERROR, AdtPlugin.PLUGIN_ID, in run()
265 return new Status(Status.ERROR, AdtPlugin.PLUGIN_ID, in run()
271 return new Status(Status.ERROR, AdtPlugin.PLUGIN_ID, in run()
453 if (status == TestFailure.ERROR) { in testFailed()

12345