/aosp12/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/ |
H A D | error_type_utils.h | 65 static bool isMissingExplicitAccent(const ErrorType errorType) { in isMissingExplicitAccent() argument 66 return (errorType & MATCH_WITH_MISSING_EXPLICIT_ACCENT) != 0; in isMissingExplicitAccent() 69 static bool isEditCorrectionError(const ErrorType errorType) { in isEditCorrectionError() argument 70 return (errorType & EDIT_CORRECTION) != 0; in isEditCorrectionError() 73 static bool isProximityCorrectionError(const ErrorType errorType) { in isProximityCorrectionError() argument 74 return (errorType & PROXIMITY_CORRECTION) != 0; in isProximityCorrectionError() 77 static bool isCompletion(const ErrorType errorType) { in isCompletion() argument 78 return (errorType & COMPLETION) != 0; in isCompletion()
|
/aosp12/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/internal/ |
H A D | dic_node_state_scoring.h | 73 const ErrorTypeUtils::ErrorType errorType) { in addCost() argument 75 mContainedErrorTypes = mContainedErrorTypes | errorType; in addCost() 76 if (ErrorTypeUtils::isEditCorrectionError(errorType)) { in addCost() 79 if (ErrorTypeUtils::isProximityCorrectionError(errorType)) { in addCost() 82 if (ErrorTypeUtils::isCompletion(errorType)) { in addCost()
|
/aosp12/packages/modules/IPsec/src/java/android/net/ipsec/ike/exceptions/ |
H A D | UnrecognizedIkeProtocolException.java | 44 public UnrecognizedIkeProtocolException(int errorType, @NonNull byte[] errorData) { in UnrecognizedIkeProtocolException() argument 45 super(errorType, errorData); in UnrecognizedIkeProtocolException()
|
/aosp12/packages/services/Iwlan/src/com/google/android/iwlan/ |
H A D | ErrorPolicyManager.java | 520 int errorType = UNKNOWN_ERROR_TYPE; in readErrorPolicies() local 522 if ((errorType = getErrorPolicyErrorType(errorTypeStr)) == UNKNOWN_ERROR_TYPE) { in readErrorPolicies() 528 errorType, in readErrorPolicies() 529 parseErrorDetails(errorType, errorDetailArray), in readErrorPolicies() 591 private List<String> parseErrorDetails(int errorType, JSONArray errorDetailArray) in parseErrorDetails() argument 598 switch (errorType) { in parseErrorDetails() 608 "Invalid ErrorDetail: " + errorDetail + " for ErrorType: " + errorType); in parseErrorDetails() 651 private @ErrorPolicyErrorType int getErrorPolicyErrorType(String errorType) { in getErrorPolicyErrorType() argument 653 switch (errorType) { in getErrorPolicyErrorType() 780 @ErrorPolicyErrorType int errorType, in ErrorPolicy() [all …]
|
H A D | IwlanError.java | 167 public static int getErrorType(String errorType) { in getErrorType() argument 171 switch (errorType) { in getErrorType()
|
/aosp12/packages/services/Car/packages/ScriptExecutor/src/ |
H A D | ScriptExecutorListener.cpp | 57 void ScriptExecutorListener::onError(const ErrorType errorType, const char* message, in onError() argument 76 env->CallVoidMethod(mScriptExecutorListener, onErrorMethod, static_cast<int>(errorType), in onError()
|
H A D | ScriptExecutorListener.h | 67 void onError(const ErrorType errorType, const char* message, const char* stackTrace);
|
/aosp12/packages/modules/Connectivity/framework/src/android/net/ |
H A D | QosCallbackConnection.java | 127 public void onError(@QosCallbackException.ExceptionType final int errorType) { in onError() argument 134 callback.onError(QosCallbackException.createException(errorType)); in onError()
|
/aosp12/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/message/ |
H A D | IkeNotifyPayloadTest.java | 274 int errorType, Class<T> exceptionClass) throws Exception { in verifyValidateAndBuildIkeExceptionWithoutData() argument 275 IkeNotifyPayload payload = new IkeNotifyPayload(errorType); in verifyValidateAndBuildIkeExceptionWithoutData() 277 payload.validateAndBuildIkeException(), errorType, exceptionClass); in verifyValidateAndBuildIkeExceptionWithoutData() local 281 IkeProtocolException exception, int errorType, Class<T> exceptionClass) in verifyIkeExceptionWithoutData() argument 284 assertEquals(errorType, exception.getErrorType()); in verifyIkeExceptionWithoutData()
|
/aosp12/hardware/interfaces/biometrics/fingerprint/2.1/vts/functional/ |
H A D | VtsHalBiometricsFingerprintV2_1TargetTest.cpp | 144 FingerprintError errorType=FingerprintError::ERROR_NO_ERROR) { in ErrorCallback() argument 146 this->errorType = errorType; in ErrorCallback() 151 if ((this->filterErrors && this->errorType == error) || !this->filterErrors) { in onError() 161 FingerprintError errorType; member in __anonf33b92db0110::ErrorCallback
|
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/ |
H A D | NetworkRequestDialogActivityTest.java | 114 assertThat(fakeActivity.errorType).isEqualTo(ERROR_DIALOG_TYPE.TIME_OUT); in onResumeAndWaitTimeout_shouldCallTimeoutDialog() 119 ERROR_DIALOG_TYPE errorType = null; field in NetworkRequestDialogActivityTest.FakeNetworkRequestDialogActivity 129 errorType = type; in stopScanningAndPopErrorDialog()
|
/aosp12/packages/services/Car/service/src/com/android/car/telemetry/databroker/ |
H A D | DataBrokerImpl.java | 452 private void onScriptError(int errorType, String message, String stackTrace) { in onScriptError() argument 455 .setErrorType(TelemetryProto.TelemetryError.ErrorType.forNumber(errorType)) in onScriptError() 493 public void onError(int errorType, String message, String stackTrace) { in onError() argument 498 dataBroker.onScriptError(errorType, message, stackTrace); in onError()
|
/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/telemetry/databroker/ |
H A D | DataBrokerTest.java | 271 TelemetryProto.TelemetryError.ErrorType errorType = in testScheduleNextTask_onScriptError_shouldStoreErrorObject() local 275 .setErrorType(errorType) in testScheduleNextTask_onScriptError_shouldStoreErrorObject() 281 mFakeScriptExecutor.notifyScriptError(errorType.getNumber(), errorMessage); in testScheduleNextTask_onScriptError_shouldStoreErrorObject() 598 public void notifyScriptError(int errorType, String errorMessage) { in notifyScriptError() argument 600 mListener.onError(errorType, errorMessage, null); in notifyScriptError()
|
/aosp12/packages/inputmethods/LatinIME/native/jni/src/suggest/core/policy/ |
H A D | weighting.cpp | 86 const ErrorTypeUtils::ErrorType errorType = weighting->getErrorType(correctionType, in addCostAndForwardInputIndex() local 96 inputSize, errorType); in addCostAndForwardInputIndex()
|
/aosp12/packages/services/Car/service/src/com/android/car/telemetry/scriptexecutorinterface/ |
H A D | IScriptExecutorListener.aidl | 54 void onError(int errorType, String message, @nullable String stackTrace); in onError() argument
|
/aosp12/packages/apps/Dialer/java/com/android/dialer/logging/ |
H A D | LoggingBindingsStub.java | 61 long latency, int httpResponseCode, PeopleApiLookupError.Type errorType) {} in logPeopleApiLookupReportWithError() argument
|
H A D | LoggingBindings.java | 88 long latency, int httpResponseCode, PeopleApiLookupError.Type errorType); in logPeopleApiLookupReportWithError() argument
|
/aosp12/frameworks/base/tests/Compatibility/src/com/android/compatibilitytest/ |
H A D | AppCompatibility.java | 281 private void addProcessError(String processName, String errorType, String errorInfo) { in addProcessError() argument 290 errors.add(String.format("### Type: %s, Details:\n%s", errorType, errorInfo)); in addProcessError()
|
/aosp12/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/ |
H A D | dic_node.h | 465 const ErrorTypeUtils::ErrorType errorType) { in addCost() argument 470 inputSize, getTotalInputIndex(), errorType); in addCost()
|
/aosp12/packages/services/Car/packages/ScriptExecutor/tests/unit/src/com/android/car/scriptexecutor/ |
H A D | ScriptExecutorTest.java | 77 public void onError(int errorType, String message, String stackTrace) { in onError() argument 78 mErrorType = errorType; in onError()
|
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/ |
H A D | IkeSessionStateMachine.java | 1618 IkeSaRecord ikeSaRecord, int messageId, @ErrorType int errorType) { in buildAndSendErrorNotificationResponse() argument 1619 IkeNotifyPayload error = new IkeNotifyPayload(errorType); in buildAndSendErrorNotificationResponse()
|
/aosp12/packages/apps/TV/libs/m2/ |
H A D | dagger-compiler-2.23.jar | java/dagger/internal/codegen/META-INF/gradle/incremental.annotation.processors
... |
H A D | javac-shaded-9-dev-r4023-3.jar | org/openjdk/tools/sjavac/server/log/LoggingOutputStream.class
LoggingOutputStream.java
package ... |
/aosp12/packages/apps/TV/libs/ |
H A D | google-java-format-1.7-all-deps.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/aosp12/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 74343 Lcom/android/i18n/phonenumbers/NumberParseException;->errorType:Lcom/android/i18n/phonenumbers/Numb…
|