Home
last modified time | relevance | path

Searched defs:errorMessage (Results 1 – 25 of 132) sorted by relevance

123456

/external/exoplayer/tree/library/common/src/main/java/com/google/android/exoplayer2/util/
DAssertions.java51 public static void checkArgument(boolean expression, Object errorMessage) { in checkArgument()
93 public static void checkState(boolean expression, Object errorMessage) { in checkState()
128 public static <T> T checkStateNotNull(@Nullable T reference, Object errorMessage) { in checkStateNotNull()
164 public static <T> T checkNotNull(@Nullable T reference, Object errorMessage) { in checkNotNull()
198 public static String checkNotEmpty(@Nullable String string, Object errorMessage) { in checkNotEmpty()
/external/smali/smali/src/main/java/org/jf/smali/
DSemanticException.java38 private String errorMessage; field in SemanticException
41 SemanticException(IntStream input, String errorMessage, Object... messageArguments) { in SemanticException()
51 …SemanticException(IntStream input, CommonTree tree, String errorMessage, Object... messageArgument… in SemanticException()
61 … SemanticException(IntStream input, Token token, String errorMessage, Object... messageArguments) { in SemanticException()
/external/setupcompat/main/java/com/google/android/setupcompat/internal/
DPreconditions.java31 public static void checkArgument(boolean expression, String errorMessage) { in checkArgument()
41 public static void checkState(boolean expression, String errorMessage) { in checkState()
48 public static <T> T checkNotNull(T reference, String errorMessage) { in checkNotNull()
/external/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
DWebRtcAudioTrack.java94 void onWebRtcAudioTrackInitError(String errorMessage); in onWebRtcAudioTrackInitError()
95 void onWebRtcAudioTrackStartError(String errorMessage); in onWebRtcAudioTrackStartError()
96 void onWebRtcAudioTrackError(String errorMessage); in onWebRtcAudioTrackError()
101 void onWebRtcAudioTrackInitError(String errorMessage); in onWebRtcAudioTrackInitError()
102 void onWebRtcAudioTrackStartError(AudioTrackStartErrorCode errorCode, String errorMessage); in onWebRtcAudioTrackStartError()
103 void onWebRtcAudioTrackError(String errorMessage); in onWebRtcAudioTrackError()
500 private void reportWebRtcAudioTrackInitError(String errorMessage) { in reportWebRtcAudioTrackInitError()
512 AudioTrackStartErrorCode errorCode, String errorMessage) { in reportWebRtcAudioTrackStartError()
523 private void reportWebRtcAudioTrackError(String errorMessage) { in reportWebRtcAudioTrackError()
DWebRtcAudioRecord.java72 void onWebRtcAudioRecordInitError(String errorMessage); in onWebRtcAudioRecordInitError()
73 void onWebRtcAudioRecordStartError(AudioRecordStartErrorCode errorCode, String errorMessage); in onWebRtcAudioRecordStartError()
74 void onWebRtcAudioRecordError(String errorMessage); in onWebRtcAudioRecordError()
176 String errorMessage = "AudioRecord.read failed: " + bytesRead; in run() local
385 private void reportWebRtcAudioRecordInitError(String errorMessage) { in reportWebRtcAudioRecordInitError()
394 AudioRecordStartErrorCode errorCode, String errorMessage) { in reportWebRtcAudioRecordStartError()
402 private void reportWebRtcAudioRecordError(String errorMessage) { in reportWebRtcAudioRecordError()
/external/opencensus-java/api/src/main/java/io/opencensus/internal/
DUtils.java39 boolean isValid, @javax.annotation.Nullable Object errorMessage) { in checkArgument()
78 public static void checkState(boolean isValid, @javax.annotation.Nullable Object errorMessage) { in checkState()
112 T arg, @javax.annotation.Nullable Object errorMessage) { in checkNotNull()
127 List<T> list, @javax.annotation.Nullable Object errorMessage) { in checkListElementNotNull()
/external/tflite-support/tensorflow_lite_support/java/src/java/org/tensorflow/lite/support/common/
DSupportPreconditions.java45 public static <T extends Object> T checkNotNull(T reference, @Nullable Object errorMessage) { in checkNotNull()
75 public static String checkNotEmpty(String string, Object errorMessage) { in checkNotEmpty()
102 public static void checkArgument(boolean expression, @Nullable Object errorMessage) { in checkArgument()
165 public static void checkState(boolean expression, @Nullable Object errorMessage) { in checkState()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DDataDrivenNumberFormatTestUtility.java245 String errorMessage; in run() local
375 String errorMessage = codeUnderTest.format(tuple); in isPass() local
380 String errorMessage = codeUnderTest.toPattern(tuple); in isPass() local
385 String errorMessage = codeUnderTest.parseCurrency(tuple); in isPass() local
390 String errorMessage = codeUnderTest.parse(tuple); in isPass() local
395 String errorMessage = codeUnderTest.select(tuple); in isPass() local
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DDataDrivenNumberFormatTestUtility.java242 String errorMessage; in run() local
372 String errorMessage = codeUnderTest.format(tuple); in isPass() local
377 String errorMessage = codeUnderTest.toPattern(tuple); in isPass() local
382 String errorMessage = codeUnderTest.parseCurrency(tuple); in isPass() local
387 String errorMessage = codeUnderTest.parse(tuple); in isPass() local
392 String errorMessage = codeUnderTest.select(tuple); in isPass() local
/external/llvm-project/mlir/lib/Support/
DFileUtilities.cpp22 mlir::openInputFile(StringRef inputFilename, std::string *errorMessage) { in openInputFile()
35 mlir::openOutputFile(StringRef outputFilename, std::string *errorMessage) { in openOutputFile()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DIllegalIcuArgumentException.java21 public IllegalIcuArgumentException(String errorMessage) { in IllegalIcuArgumentException()
29 public IllegalIcuArgumentException(String errorMessage, Throwable cause) { in IllegalIcuArgumentException()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DIllegalIcuArgumentException.java18 public IllegalIcuArgumentException(String errorMessage) { in IllegalIcuArgumentException()
26 public IllegalIcuArgumentException(String errorMessage, Throwable cause) { in IllegalIcuArgumentException()
/external/grpc-grpc/src/csharp/Grpc.Core/Utils/
DGrpcPreconditions.cs45 public static void CheckArgument(bool condition, string errorMessage) in CheckArgument()
97 public static void CheckState(bool condition, string errorMessage) in CheckState()
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DTemplateCompiler.java91 String errorMessage = "Could not compile template: " + templateName; in compile() local
119 private Class<?> compileAndLoad(CharSequence javaSource, String errorMessage) in compileAndLoad()
145 private void throwExceptionWithLotsOfDiagnosticInfo(CharSequence javaSource, String errorMessage, in throwExceptionWithLotsOfDiagnosticInfo()
/external/libchrome/mojo/public/java/system/javatests/src/org/chromium/mojo/bindings/
DValidationTestUtil.java40 private Data(ByteBuffer data, int handlesCount, String errorMessage) { in Data()
57 private static Data buildData(ByteBuffer data, int handlesCount, String errorMessage) { in buildData()
/external/conscrypt/common/src/main/java/org/conscrypt/
DPreconditions.java34 static <T> T checkNotNull(T reference, String errorMessage) { in checkNotNull()
48 static void checkArgument(boolean condition, String errorMessage) { in checkArgument()
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DPreconditions.java35 static <T> T checkNotNull(T reference, String errorMessage) { in checkNotNull()
49 static void checkArgument(boolean condition, String errorMessage) { in checkArgument()
/external/webrtc/sdk/android/api/org/webrtc/audio/
DJavaAudioDeviceModule.java229 void onWebRtcAudioRecordInitError(String errorMessage); in onWebRtcAudioRecordInitError()
230 void onWebRtcAudioRecordStartError(AudioRecordStartErrorCode errorCode, String errorMessage); in onWebRtcAudioRecordStartError()
231 void onWebRtcAudioRecordError(String errorMessage); in onWebRtcAudioRecordError()
290 void onWebRtcAudioTrackInitError(String errorMessage); in onWebRtcAudioTrackInitError()
291 void onWebRtcAudioTrackStartError(AudioTrackStartErrorCode errorCode, String errorMessage); in onWebRtcAudioTrackStartError()
292 void onWebRtcAudioTrackError(String errorMessage); in onWebRtcAudioTrackError()
/external/dagger2/java/dagger/internal/codegen/validation/
DBindingMethodValidator.java252 protected String errorMessage(BindingMethodValidator validator) { in errorMessage() method
271 protected String errorMessage(BindingMethodValidator validator) { in EXCEPTION() method
280 protected String errorMessage(BindingMethodValidator validator) { in RUNTIME_EXCEPTION() method
317 protected abstract String errorMessage(BindingMethodValidator validator); in errorMessage() method in BindingMethodValidator.ExceptionSuperclass
/external/dagger2/java/dagger/hilt/processor/internal/
DProcessorErrors.java47 @Nullable Object errorMessage) { in checkState()
99 @Nullable Object errorMessage) { in checkState()
/external/apache-http/android/src/android/net/http/
DCertificateChainValidator.java265 SSLSocket socket, String errorMessage, String defaultErrorMessage) in closeSocketThrowException()
272 String errorMessage) throws IOException { in closeSocketThrowException()
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/internal/
DUtils.java34 List<T> list, @javax.annotation.Nullable Object errorMessage) { in checkListElementNotNull()
/external/perfetto/ui/src/controller/
Dvalidate_config.ts19 errorMessage?: string; property
/external/sl4a/Common/src/com/googlecode/android_scripting/
DSl4aException.java30 Sl4aException(int errorCode, String errorMessage) { in Sl4aException()
/external/nist-sip/java/javax/sip/header/
DErrorInfoHeader.java13 void setErrorMessage(String errorMessage) throws ParseException; in setErrorMessage()

123456