Home
last modified time | relevance | path

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

123

/tools/metalava/src/main/java/com/android/tools/metalava/doclava1/
DIssues.kt31 val PARSE_ERROR = Issue(1, Severity.ERROR)
77 val DEPRECATION_MISMATCH = Issue(113, Severity.ERROR, Category.DOCUMENTATION)
79 val IO_ERROR = Issue(115, Severity.ERROR)
82 val BROKEN_SINCE_FILE = Issue(118, Severity.ERROR, Category.DOCUMENTATION)
83 val INVALID_CONTENT_TYPE = Issue(119, Severity.ERROR, Category.DOCUMENTATION)
84 val INVALID_SAMPLE_INDEX = Issue(120, Severity.ERROR, Category.DOCUMENTATION)
94 val BROKEN_ARTIFACT_FILE = Issue(130, Severity.ERROR, Category.DOCUMENTATION)
102 val INVALID_NULL_CONVERSION = Issue(135, Severity.ERROR, Category.COMPATIBILITY)
103 val PARAMETER_NAME_CHANGE = Issue(136, Severity.ERROR, Category.COMPATIBILITY)
104 val OPERATOR_REMOVAL = Issue(137, Severity.ERROR, Category.COMPATIBILITY)
[all …]
/tools/repohooks/tools/
Dcheckpatch.pl2084 sub ERROR { subroutine
2450 ERROR("MODIFIED_INCLUDE_ASM",
2495 ERROR("DIFF_IN_COMMIT_MSG",
2505 ERROR("EXECUTE_PERMISSIONS",
2564 ERROR("BAD_SIGN_OFF",
2601 ERROR("STABLE_ADDRESS",
2607 ERROR("GERRIT_CHANGE_ID",
2696 ERROR("GIT_COMMIT_ID",
2715 ERROR("CORRUPTED_PATCH",
2795 if (ERROR("DOS_LINE_ENDINGS",
[all …]
/tools/tradefederation/core/
Derror_prone_rules.mk18 -Xep:ArrayToString:ERROR \
19 -Xep:BoxedPrimitiveConstructor:ERROR \
20 -Xep:CatchFail:ERROR \
21 -Xep:ConstantField:ERROR \
22 -Xep:DeadException:ERROR \
23 -Xep:EqualsIncompatibleType:ERROR \
24 -Xep:ExtendingJUnitAssert:ERROR \
25 -Xep:FormatString:ERROR \
26 -Xep:GetClassOnClass:ERROR \
27 -Xep:IdentityBinaryExpression:ERROR \
[all …]
DAndroid.bp22 "-Xep:ArrayToString:ERROR",
23 "-Xep:BoxedPrimitiveConstructor:ERROR",
24 "-Xep:CatchFail:ERROR",
25 "-Xep:ConstantField:ERROR",
26 "-Xep:DeadException:ERROR",
27 "-Xep:EqualsIncompatibleType:ERROR",
28 "-Xep:ExtendingJUnitAssert:ERROR",
29 "-Xep:FormatString:ERROR",
30 "-Xep:GetClassOnClass:ERROR",
31 "-Xep:IdentityBinaryExpression:ERROR",
[all …]
/tools/tradefederation/core/src/com/android/tradefed/command/remote/
DRemoteManager.java287 result.put(RemoteOperation.ERROR, "Unrecognized operation"); in processClientOperations()
308 result.put(RemoteOperation.ERROR, "Failed to handle remote command: " + in addErrorToResult()
368 result.put(RemoteOperation.ERROR, msg); in processAllocate()
385 result.put(RemoteOperation.ERROR, msg); in processFree()
395 result.put(RemoteOperation.ERROR, "Failed to add command"); in processAdd()
400 result.put(RemoteOperation.ERROR, "Config error: " + e.toString()); in processAdd()
412 result.put(RemoteOperation.ERROR, "Config error: " + e.toString()); in processAddCommandFile()
422 result.put(RemoteOperation.ERROR, msg); in processExecCommand()
432 result.put(RemoteOperation.ERROR, msg); in processExecCommand()
444 result.put(RemoteOperation.ERROR, "Config error: " + e.toString()); in processExecCommand()
/tools/metalava/src/main/java/com/android/tools/metalava/
DReporter.kt19 import com.android.tools.metalava.Severity.ERROR in <lambda>()
74 ERROR("error"); in <lambda>()
187 if (severity == LINT || severity == WARNING || severity == ERROR) { in isSuppressed()
310 ERROR in doReport()
312 ERROR in doReport()
318 if (effectiveSeverity == ERROR) { in doReport()
349ERROR -> sb.append(terminalAttributes(foreground = TerminalColor.RED)).append("error: ") in format()
368 ERROR -> sb.append("error ") in format()
379 ERROR -> sb.append("error: ") in format()
462 val output = if (severity == ERROR) { in severity()
/tools/platform-compat/java/android/processor/compat/changeid/
DChangeIdProcessor.java21 import static javax.tools.Diagnostic.Kind.ERROR;
99 messager.printMessage(ERROR, "Failed to write output: " + e); in process()
135 ERROR, in isValidChangeId()
142 ERROR, in isValidChangeId()
149 ERROR, in isValidChangeId()
156 ERROR, in isValidChangeId()
163 ERROR, in isValidChangeId()
222 ERROR, in verifyChange()
228 ERROR, in verifyChange()
/tools/tradefederation/core/remote/src/com/android/tradefed/command/remote/
DRemoteOperation.java29 static final String ERROR = "error"; field in RemoteOperation
164 if (jsonData.has(ERROR)) { in unpackResponseFromString()
165 throw new RemoteException(jsonData.getString(ERROR)); in unpackResponseFromString()
/tools/tradefederation/core/tests/src/com/android/tradefed/log/
DLogRegistryTest.java100 EasyMock.expect(mockLogger.getLogLevel()).andReturn(LogLevel.ERROR); in testPrintLog_lowerLogLevel()
144 EasyMock.expect(mockLogger.getLogLevel()).andReturn(LogLevel.ERROR); in testThreadedLogging()
145 mockLogger.printLog(LogLevel.ERROR, LOG_TAG, testMessage); in testThreadedLogging()
/tools/currysrc/scripts/
Drepackage-common.sh198 typeset -i ERROR=0
205 ERROR=1
246 if [[ $ERROR = 1 ]]; then
/tools/metalava/src/test/java/com/android/tools/metalava/
DOptionsTest.kt511 assertEquals(Severity.ERROR, defaultConfiguration.getSeverity(Issues.ARRAY_RETURN)) in Test issue severity options()
529 assertEquals(Severity.ERROR, defaultConfiguration.getSeverity(Issues.REMOVED_CLASS)) in Test issue severity options with inheriting issues()
530 … assertEquals(Severity.ERROR, defaultConfiguration.getSeverity(Issues.REMOVED_DEPRECATED_CLASS)) in Test issue severity options with inheriting issues()
/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DLogcatEventParserTest.java99 LogcatEventType.ERROR); in testParseEventTypePartialMatch()
104 assertEquals(LogcatEventType.ERROR, mParser.pollForEvent().getEventType()); in testParseEventTypePartialMatch()
129 "update_engine", "finished with ErrorCode", LogcatEventType.ERROR); in testParseEventTypeMatchOrder()
/tools/platform-compat/java/android/processor/compat/unsupportedappusage/
DUnsupportedAppUsageProcessor.java18 import static javax.tools.Diagnostic.Kind.ERROR;
115 messager.printMessage(ERROR, "Could not write CSV file: " + exception); in process()
172 messager.printMessage(ERROR, String.format( in getSourcePositionOverride()
DSignatureConverter.java18 import static javax.tools.Diagnostic.Kind.ERROR;
85 messager.printMessage(ERROR, problem.getMessage(), element); in getSignature()
/tools/test/connectivity/acts/framework/tests/
Dacts_utils_test.py398 for lvl in (logging.DEBUG, logging.INFO, logging.ERROR)
403 with utils.SuppressLogOutput(log, [logging.INFO, logging.ERROR]):
408 any(handler.level in (logging.INFO, logging.ERROR)
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DTestInvocation.java136 ERROR("error"), enumConstant
649 invocationPath.reportLogs(device, listener, Stage.ERROR); in invokeFetchBuild()
702 invocationPath.reportLogs(device, listener, Stage.ERROR); in invokeRemoteDynamic()
891 invocationPath.reportLogs(device, listener, Stage.ERROR); in invoke()
/tools/test/connectivity/acts/framework/acts/controllers/android_lib/
Dlogcat.py47 return logging.ERROR
57 return logging.ERROR
/tools/tradefederation/core/tests/res/testtype/
Dpython_output3.txt13 ERROR
26 ERROR: test_reconnect (__main__.ConnectionTest)
Dpython_output1.txt18 Ensure that the emulator can connect. ... ERROR
31 ERROR: test_emulator_connect (__main__.EmulatorTest)
/tools/test/connectivity/acts/framework/tests/controllers/android_lib/
Dlogcat_test.py90 self.assertEqual(level, logging.ERROR)
96 self.assertEqual(level, logging.ERROR)
/tools/asuite/asuite_plugin/
Dgradlew.bat27 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
41 echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
/tools/trebuchet/
Dgradlew.bat27 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
41 echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
/tools/metalava/
Dgradlew.bat27 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
41 echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
/tools/tradefederation/core/src/com/android/tradefed/result/
DXmlResultReporter.java59 private static final String ERROR = "error"; field in XmlResultReporter
182 String result = testResult.getStatus().equals(TestStatus.FAILURE) ? FAILURE : ERROR; in print()
/tools/external_updater/
Dexternal_updater.py56 ERROR = '\x1b[31m' variable in Color
156 print('{} {}.'.format(color_string('Failed.', Color.ERROR), err))

123