HomeSort by relevance Sort by last modified time
    Searched defs:msg (Results 176 - 200 of 892) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/llvm/tools/llvm-c-test/
module.c 25 char *msg = NULL; local
27 if (LLVMCreateMemoryBufferWithSTDIN(&MB, &msg)) {
28 fprintf(stderr, "Error reading file: %s\n", msg);
32 if (LLVMParseBitcode(MB, &M, &msg)) {
33 fprintf(stderr, "Error parsing bitcode: %s\n", msg);
  /external/mesa3d/src/egl/main/
egllog.c 128 _eglDefaultLogger(EGLint level, const char *msg)
130 fprintf(stderr, "libEGL %s: %s\n", level_strings[level], msg);
182 char msg[MAXSTRING]; local
195 ret = vsnprintf(msg, MAXSTRING, fmtStr, args);
197 strcpy(msg, "<message truncated>");
200 logging.logger(level, msg);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jdepend.jar 
  /art/runtime/mirror/
throwable.cc 75 String* msg = GetDetailMessage(); local
76 if (msg != NULL) {
77 result += msg->ToModifiedUtf8();
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/
AssertHelpers.java 68 String msg = String.format( local
73 assertTrue(msg, left[i] <= right[i]);
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/
RepeatingSensorOperation.java 59 String msg = String.format("Iteration %d failed: \"%s\"", i, e.getMessage()); local
60 getStats().addValue(SensorStats.ERROR, msg);
61 throw new AssertionError(msg, e);
  /cts/tests/tests/util/src/android/util/cts/
LogTest.java 31 final String msg = "Test Log operations."; local
39 Log.e(TAG, msg);
40 Log.e(TAG, msg, tr);
41 Log.w(TAG, msg);
43 Log.w(TAG, msg, tr);
44 Log.i(TAG, msg);
45 Log.i(TAG, msg, tr);
46 Log.d(TAG, msg);
47 Log.d(TAG, msg, tr);
48 Log.v(TAG, msg);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
MessengerServiceActivities.java 46 public void handleMessage(Message msg) {
47 switch (msg.what) {
49 mCallbackText.setText("Received from service: " + msg.arg1);
52 super.handleMessage(msg);
79 Message msg = Message.obtain(null,
81 msg.replyTo = mMessenger;
82 mService.send(msg);
85 msg = Message.obtain(null,
87 mService.send(msg);
128 Message msg = Message.obtain(null local
    [all...]
  /device/sample/frameworks/PlatformLibrary/jni/
PlatformLibrary.cpp 55 char msg[1000]; local
56 snprintf(msg, sizeof(msg), fmt, data);
57 env->ThrowNew(cls, msg);
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestFastQueue.java 92 String msg = null; local
95 msg = nsee.getMessage();
98 String found = msg;
108 String msg = null; local
111 msg = nsee.getMessage();
114 String found = msg;
123 String msg = null; local
126 msg = nsee.getMessage();
129 String found = msg;
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
DigestExceptionTest.java 65 * constructs DigestException with detail message msg. Parameter
66 * <code>msg</code> is not null.
80 * constructs DigestException when <code>msg</code> is null
83 String msg = null; local
84 DigestException tE = new DigestException(msg);
120 * <code>msg</code> is null
131 * <code>msg</code> is not null
146 * null <code>msg</code> is null
164 * null <code>msg</code> is not null
GeneralSecurityExceptionTest.java 66 * Assertion: constructs GeneralSecurityException with detail message msg.
67 * Parameter <code>msg</code> is not null.
81 * Assertion: constructs GeneralSecurityException when <code>msg</code> is
85 String msg = null; local
86 GeneralSecurityException tE = new GeneralSecurityException(msg);
124 * <code>cause</code> is null <code>msg</code> is null
135 * <code>cause</code> is null <code>msg</code> is not null
150 * <code>cause</code> is not null <code>msg</code> is null
168 * <code>cause</code> is not null <code>msg</code> is not null
InvalidAlgorithmParameterExceptionTest.java 68 * detail message msg. Parameter <code>msg</code> is not null.
83 * <code>msg</code> is null
86 String msg = null; local
88 msg);
129 * <code>cause</code> is null <code>msg</code> is null
142 * <code>cause</code> is null <code>msg</code> is not null
158 * <code>cause</code> is not null <code>msg</code> is null
178 * <code>cause</code> is not null <code>msg</code> is not null
InvalidKeyExceptionTest.java 65 * Assertion: constructs InvalidKeyException with detail message msg.
66 * Parameter <code>msg</code> is not null.
80 * Assertion: constructs InvalidKeyException when <code>msg</code> is null
83 String msg = null; local
84 InvalidKeyException tE = new InvalidKeyException(msg);
122 * <code>cause</code> is null <code>msg</code> is null
133 * <code>cause</code> is null <code>msg</code> is not null
148 * <code>cause</code> is not null <code>msg</code> is null
166 * <code>cause</code> is not null <code>msg</code> is not null
KeyExceptionTest.java 65 * constructs KeyException with detail message msg. Parameter
66 * <code>msg</code> is not null.
80 * constructs KeyException when <code>msg</code> is null
83 String msg = null; local
84 KeyException tE = new KeyException(msg);
120 * <code>msg</code> is null
131 * <code>msg</code> is not null
146 * <code>msg</code> is null
164 * <code>msg</code> is not null
KeyManagementExceptionTest.java 66 * Assertion: constructs KeyManagementException with detail message msg.
67 * Parameter <code>msg</code> is not null.
81 * Assertion: constructs KeyManagementException when <code>msg</code> is
85 String msg = null; local
86 KeyManagementException tE = new KeyManagementException(msg);
124 * <code>cause</code> is null <code>msg</code> is null
135 * <code>cause</code> is null <code>msg</code> is not null
150 * <code>cause</code> is not null <code>msg</code> is null
168 * <code>cause</code> is not null <code>msg</code> is not null
KeyStoreExceptionTest.java 65 * constructs KeyStoreException with detail message msg. Parameter
66 * <code>msg</code> is not null.
80 * constructs KeyStoreException when <code>msg</code> is null
83 String msg = null; local
84 KeyStoreException tE = new KeyStoreException(msg);
121 * <code>msg</code> is null
132 * <code>msg</code> is not null
147 * null <code>msg</code> is null
165 * null <code>msg</code> is not null
KeyStoreSpiTest.java 162 final String msg = "error"; local
168 throw new RuntimeException(msg);
175 assertSame(msg, e.getMessage());
NoSuchAlgorithmExceptionTest.java 66 * Assertion: constructs NoSuchAlgorithmException with detail message msg.
67 * Parameter <code>msg</code> is not null.
81 * Assertion: constructs NoSuchAlgorithmException when <code>msg</code> is
85 String msg = null; local
86 NoSuchAlgorithmException tE = new NoSuchAlgorithmException(msg);
124 * <code>cause</code> is null <code>msg</code> is null
135 * <code>cause</code> is null <code>msg</code> is not null
150 * <code>cause</code> is not null <code>msg</code> is null
168 * <code>cause</code> is not null <code>msg</code> is not null
ProviderExceptionTest.java 65 * constructs ProviderException with detail message msg. Parameter
66 * <code>msg</code> is not null.
80 * constructs ProviderException when <code>msg</code> is null
83 String msg = null; local
84 ProviderException tE = new ProviderException(msg);
121 * <code>msg</code> is null
132 * <code>msg</code> is not null
147 * null <code>msg</code> is null
165 * null <code>msg</code> is not null
SignatureExceptionTest.java 65 * constructs SignatureException with detail message msg. Parameter
66 * <code>msg</code> is not null.
80 * constructs SignatureException when <code>msg</code> is null
83 String msg = null; local
84 SignatureException tE = new SignatureException(msg);
122 * null <code>msg</code> is null
133 * null <code>msg</code> is not null
148 * null <code>msg</code> is null
166 * null <code>msg</code> is not null
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CRLExceptionTest.java 64 * constructs CRLException with detail message msg. Parameter
65 * <code>msg</code> is not null.
79 * constructs CRLException when <code>msg</code> is null
82 String msg = null; local
83 CRLException tE = new CRLException(msg);
119 * <code>msg</code> is null
130 * <code>msg</code> is not null
145 * <code>msg</code> is null
163 * <code>msg</code> is not null
CertPathBuilderExceptionTest.java 66 * Assertion: constructs CertPathBuilderException with detail message msg.
67 * Parameter <code>msg</code> is not null.
81 * Assertion: constructs CertPathBuilderException when <code>msg</code> is
85 String msg = null; local
86 CertPathBuilderException tE = new CertPathBuilderException(msg);
124 * <code>cause</code> is null <code>msg</code> is null
135 * <code>cause</code> is null <code>msg</code> is not null
150 * <code>cause</code> is not null <code>msg</code> is null
168 * <code>cause</code> is not null <code>msg</code> is not null
CertStoreExceptionTest.java 64 * constructs CertStoreException with detail message msg. Parameter
65 * <code>msg</code> is not null.
79 * constructs CertStoreException when <code>msg</code> is null
82 String msg = null; local
83 CertStoreException tE = new CertStoreException(msg);
121 * null <code>msg</code> is null
132 * null <code>msg</code> is not null
147 * null <code>msg</code> is null
165 * null <code>msg</code> is not null
CertificateEncodingExceptionTest.java 67 * msg. Parameter <code>msg</code> is not null.
81 * Assertion: constructs CertificateEncodingException when <code>msg</code>
85 String msg = null; local
86 CertificateEncodingException tE = new CertificateEncodingException(msg);
126 * <code>cause</code> is null <code>msg</code> is null
138 * <code>cause</code> is null <code>msg</code> is not null
153 * <code>cause</code> is not null <code>msg</code> is null
172 * <code>cause</code> is not null <code>msg</code> is not null

Completed in 1072 milliseconds

1 2 3 4 5 6 78 91011>>