/tools/metalava/src/main/java/com/android/tools/metalava/doclava1/ |
D | Issues.kt | 31 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/ |
D | checkpatch.pl | 2084 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/ |
D | error_prone_rules.mk | 18 -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 …]
|
D | Android.bp | 22 "-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/ |
D | RemoteManager.java | 287 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/ |
D | Reporter.kt | 19 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() 349 … ERROR -> 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/ |
D | ChangeIdProcessor.java | 21 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/ |
D | RemoteOperation.java | 29 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/ |
D | LogRegistryTest.java | 100 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/ |
D | repackage-common.sh | 198 typeset -i ERROR=0 205 ERROR=1 246 if [[ $ERROR = 1 ]]; then
|
/tools/metalava/src/test/java/com/android/tools/metalava/ |
D | OptionsTest.kt | 511 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/ |
D | LogcatEventParserTest.java | 99 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/ |
D | UnsupportedAppUsageProcessor.java | 18 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()
|
D | SignatureConverter.java | 18 import static javax.tools.Diagnostic.Kind.ERROR; 85 messager.printMessage(ERROR, problem.getMessage(), element); in getSignature()
|
/tools/test/connectivity/acts/framework/tests/ |
D | acts_utils_test.py | 398 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/ |
D | TestInvocation.java | 136 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/ |
D | logcat.py | 47 return logging.ERROR 57 return logging.ERROR
|
/tools/tradefederation/core/tests/res/testtype/ |
D | python_output3.txt | 13 ERROR 26 ERROR: test_reconnect (__main__.ConnectionTest)
|
D | python_output1.txt | 18 Ensure that the emulator can connect. ... ERROR 31 ERROR: test_emulator_connect (__main__.EmulatorTest)
|
/tools/test/connectivity/acts/framework/tests/controllers/android_lib/ |
D | logcat_test.py | 90 self.assertEqual(level, logging.ERROR) 96 self.assertEqual(level, logging.ERROR)
|
/tools/asuite/asuite_plugin/ |
D | gradlew.bat | 27 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/ |
D | gradlew.bat | 27 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/ |
D | gradlew.bat | 27 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/ |
D | XmlResultReporter.java | 59 private static final String ERROR = "error"; field in XmlResultReporter 182 String result = testResult.getStatus().equals(TestStatus.FAILURE) ? FAILURE : ERROR; in print()
|
/tools/external_updater/ |
D | external_updater.py | 56 ERROR = '\x1b[31m' variable in Color 156 print('{} {}.'.format(color_string('Failed.', Color.ERROR), err))
|