/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
ProguardExecException.java | 26 ProguardExecException(String message, Throwable cause) { 27 super(message, cause);
|
/external/protobuf/src/google/protobuf/ |
message_unittest.cc | 35 #include <google/protobuf/message.h> 74 protobuf_unittest::TestAllTypes message; local 75 TestUtil::SetAllFields(&message); 81 EXPECT_TRUE(message.SerializeToString(&str1)); 82 EXPECT_TRUE(message.AppendToString(&str2)); 83 EXPECT_TRUE(message.SerializeToOstream(&stream)); 95 EXPECT_TRUE(message.SerializeAsString() == str1); 101 protobuf_unittest::TestAllTypes message; local 102 message.set_optional_int32(123); 104 EXPECT_FALSE(message.SerializeToOstream(&out)) 112 unittest::TestAllTypes message; local 125 unittest::TestPackedTypes message; local 139 protobuf_unittest::TestAllTypes message; local 146 protobuf_unittest::TestAllTypes message; local 153 protobuf_unittest::TestAllTypes message; local 165 protobuf_unittest::TestAllTypes message; local 174 protobuf_unittest::TestAllTypes message; local 181 unittest::TestRequired message; local 197 unittest::TestRequired message; local 204 unittest::TestRequired message; local 211 unittest::TestRequired message; local 219 unittest::TestRequired message; local 228 unittest::TestRequired message; local 235 unittest::TestRequired message; local 245 unittest::TestAllTypes message; local [all...] |
extension_set_unittest.cc | 60 // Check that all default values are set correctly in the initial message. 61 unittest::TestAllExtensions message; local 63 TestUtil::ExpectExtensionsClear(message); 69 &message.GetExtension(unittest::optionalgroup_extension)); 71 &message.GetExtension(unittest::optional_nested_message_extension)); 73 &message.GetExtension( 76 &message.GetExtension(unittest::optional_import_message_extension)); 82 unittest::TestAllExtensions message; local 84 TestUtil::SetAllExtensions(&message); 85 TestUtil::ExpectAllExtensionsSet(message); 94 unittest::TestAllExtensions message; local 123 unittest::TestAllExtensions message; local 174 unittest::TestAllExtensions message; local 297 unittest::TestAllExtensions message; local 324 unittest::TestAllExtensions message; local 364 unittest::TestAllExtensions message; local 375 unittest::TestAllExtensions message; local 385 unittest::TestAllExtensions message; local 443 unittest::TestAllExtensions message; local 458 unittest::TestAllExtensions message; local 476 unittest::TestAllExtensions message; local 537 unittest::TestDynamicExtensions message; local 564 unittest::TestAllExtensions message; local [all...] |
generated_message_reflection_unittest.cc | 36 // generate a full protocol message implementation and then test its 38 // trying to create our own Message class for GeneratedMessageReflection 68 // Check that all default values are set correctly in the initial message. 69 unittest::TestAllTypes message; local 73 reflection_tester.ExpectClearViaReflection(message); 75 const Reflection* reflection = message.GetReflection(); 81 &reflection->GetMessage(message, F("optionalgroup"))); 83 &reflection->GetMessage(message, F("optional_nested_message"))); 85 &reflection->GetMessage(message, F("optional_foreign_message"))); 87 &reflection->GetMessage(message, F("optional_import_message"))) 93 unittest::TestAllTypes message; local 108 unittest::TestAllTypes message; local 130 unittest::TestAllTypes message; local 211 unittest::TestAllTypes message; local 223 unittest::TestAllExtensions message; local 234 unittest::TestAllTypes message; local 250 unittest::TestAllExtensions message; local 268 unittest::TestAllExtensions message; local 333 unittest::TestAllTypes message; local [all...] |
message.h | 35 // Defines Message, the abstract interface implemented by non-lite 36 // protocol message objects. Although it's possible to implement this 42 // Say you have a message defined as: 44 // message Foo { 52 // string data; // Will store a serialized version of the message. 55 // // Create a message and serialize it. 66 // // Parse the serialized message and check that it contains the 79 // // Same as the last block, but do it dynamically via the Message 81 // Message* foo = new Foo; 95 // // Parse the message [all...] |
/external/apache-http/src/org/apache/commons/logging/ |
LogConfigurationException.java | 33 * Construct a new exception with <code>null</code> as its detail message. 43 * Construct a new exception with the specified detail message. 45 * @param message The detail message 47 public LogConfigurationException(String message) { 49 super(message); 56 * detail message. 68 * Construct a new exception with the specified detail message and cause. 70 * @param message The detail message [all...] |
/external/icu4c/samples/layout/ |
GDIGUISupport.h | 25 virtual void postErrorMessage(const char *message, const char *title);
|
GnomeGUISupport.h | 25 virtual void postErrorMessage(const char *message, const char *title);
|
GnomeGUISupport.cpp | 22 void GnomeGUISupport::postErrorMessage(const char *message, const char *title) 28 s = g_strconcat(title, ":\n", message, NULL); 33 fprintf(stderr, "%s: %s\n", title, message);
|
/external/webkit/Source/WebKit2/Shared/win/ |
NativeWebMouseEventWin.cpp | 33 NativeWebMouseEvent::NativeWebMouseEvent(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam, bool didActivateWebView) 34 : WebMouseEvent(WebEventFactory::createWebMouseEvent(hwnd, message, wParam, lParam, didActivateWebView)) 38 m_nativeEvent.message = message;
|
WebEventFactory.h | 38 static WebMouseEvent createWebMouseEvent(HWND, UINT message, WPARAM, LPARAM, bool didActivateWebView); 39 static WebWheelEvent createWebWheelEvent(HWND, UINT message, WPARAM, LPARAM); 40 static WebKeyboardEvent createWebKeyboardEvent(HWND, UINT message, WPARAM, LPARAM);
|
/frameworks/base/core/jni/ |
sqlite3_exception.h | 29 /* throw a SQLiteException with a message appropriate for the error in handle */ 32 /* throw a SQLiteException with the given message */ 33 void throw_sqlite3_exception(JNIEnv* env, const char* message); 35 /* throw a SQLiteException with a message appropriate for the error in handle 36 concatenated with the given message 38 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle, const char* message); 41 void throw_sqlite3_exception_errcode(JNIEnv* env, int errcode, const char* message); 44 const char* sqlite3Message, const char* message);
|
/frameworks/base/drm/java/android/drm/ |
DrmErrorEvent.java | 68 * @param message Message description. 70 public DrmErrorEvent(int uniqueId, int type, String message) { 71 super(uniqueId, type, message); 79 * @param message Message description. 83 public DrmErrorEvent(int uniqueId, int type, String message, 85 super(uniqueId, type, message, attributes);
|
DrmInfoEvent.java | 58 * @param message Message description. 60 public DrmInfoEvent(int uniqueId, int type, String message) { 61 super(uniqueId, type, message); 69 * @param message Message description. 73 public DrmInfoEvent(int uniqueId, int type, String message, 75 super(uniqueId, type, message, attributes);
|
/libcore/luni/src/main/java/javax/xml/transform/ |
TransformerConfigurationException.java | 29 * detail message. 37 * the <code>String </code> specified as an error message. 39 * @param msg The error message for the exception. 58 * given <code>Exception</code> base cause and detail message. 62 * @param msg The detail message. 69 * Create a new TransformerConfigurationException from a message and a Locator. 75 * @param message The error or warning message. 78 public TransformerConfigurationException(String message, 80 super(message, locator) [all...] |
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/ |
InvalidValueTypeException.java | 36 * Constructs a new exception with the default detail message. 44 * Constructs a new exception with the specified detail message. 45 * @param message the detail message. The detail message is saved for later retrieval 49 public InvalidValueTypeException(String message) { 50 super(message); 54 * Constructs a new exception with the specified cause and a detail message of 56 * the class and detail message of cause). 67 * Constructs a new exception with the specified detail message and cause [all...] |
/external/v8/test/mjsunit/regress/ |
regress-1200351.js | 41 } catch (e) { if (e.message.length > 0) { print (e.message); } }; 45 } catch (e) { if (e.message.length > 0) { print (e.message); } }; 49 } catch (e) { if (e.message.length > 0) { print (e.message); } }; 53 } catch (e) { if (e.message.length > 0) { print (e.message); } }; 57 } catch (e) { if (e.message.length > 0) { print (e.message); } }; [all...] |
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
ClientKeyExchangeTest.java | 42 ClientKeyExchange message = new ClientKeyExchange( local 45 message.getType()); 48 message.exchange_keys, encrypted_pre_master_secret)); 51 message.send(out); 53 assertEquals("incorrect out data length ", message.length(), 58 ClientKeyExchange message_2 = new ClientKeyExchange(in, message 61 assertTrue("Incorrect message decoding", Arrays.equals( 62 message.exchange_keys, message_2.exchange_keys)); 63 assertEquals("Incorrect message decoding", message.length() 103 ClientKeyExchange message = new ClientKeyExchange(dh_Yc); local 149 ClientKeyExchange message = new ClientKeyExchange(); local [all...] |
ClientHelloTest.java | 43 ClientHello message = new ClientHello(new SecureRandom(), version, local 45 assertEquals("incorrect type", Handshake.CLIENT_HELLO, message.getType()); 46 assertEquals("incorrect length", 51, message.length()); 47 assertEquals("incorrect random", 32, message.getRandom().length); 50 message.send(out); 52 assertEquals("incorrect out data length", message.length(), encoded.length); 56 ClientHello message_2 = new ClientHello(in, message.length()); 58 assertTrue("Incorrect message decoding", 59 Arrays.equals(message.client_version, message_2.client_version)); 60 assertTrue("Incorrect message decoding" [all...] |
/cts/libs/vogar-expect/src/vogar/util/ |
LogOutput.java | 25 void warn(String message); 30 void warn(String message, List<String> list); 34 void info(String message, Throwable throwable);
|
/external/icu4c/test/intltest/ |
icusvtst.h | 38 UnicodeString& lrmsg(UnicodeString& result, const UnicodeString& message, const UObject* lhs, const UObject* rhs) const; 39 void confirmBoolean(const UnicodeString& message, UBool val); 41 void confirmEqual(const UnicodeString& message, const UObject* lhs, const UObject* rhs); 43 void confirmEqual(const UnicodeString& message, const Integer* lhs, const Integer* rhs); 44 void confirmEqual(const UnicodeString& message, const UnicodeString* lhs, const UnicodeString* rhs); 45 void confirmEqual(const UnicodeString& message, const Locale* lhs, const Locale* rhs); 47 void confirmStringsEqual(const UnicodeString& message, const UnicodeString& lhs, const UnicodeString& rhs); 48 void confirmIdentical(const UnicodeString& message, const UObject* lhs, const UObject* rhs); 49 void confirmIdentical(const UnicodeString& message, int32_t lhs, int32_t rhs); 51 void msgstr(const UnicodeString& message, UObject* obj, UBool err = TRUE) [all...] |
/dalvik/dx/src/junit/framework/ |
Assert.java | 16 * an AssertionFailedError with the given message. 18 static public void assertTrue(String message, boolean condition) { 20 fail(message); 31 * an AssertionFailedError with the given message. 33 static public void assertFalse(String message, boolean condition) { 34 assertTrue(message, !condition); 44 * Fails a test with the given message. 46 static public void fail(String message) { 47 throw new AssertionFailedError(message); 50 * Fails a test with no message [all...] |
/dalvik/tests/021-string2/src/junit/framework/ |
Assert.java | 16 * an AssertionFailedError with the given message. 18 static public void assertTrue(String message, boolean condition) { 20 fail(message); 31 * an AssertionFailedError with the given message. 33 static public void assertFalse(String message, boolean condition) { 34 assertTrue(message, !condition); 44 * Fails a test with the given message. 46 static public void fail(String message) { 47 throw new AssertionFailedError(message); 50 * Fails a test with no message [all...] |
/dalvik/tests/082-inline-execute/src/junit/framework/ |
Assert.java | 16 * an AssertionFailedError with the given message. 18 static public void assertTrue(String message, boolean condition) { 20 fail(message); 31 * an AssertionFailedError with the given message. 33 static public void assertFalse(String message, boolean condition) { 34 assertTrue(message, !condition); 44 * Fails a test with the given message. 46 static public void fail(String message) { 47 throw new AssertionFailedError(message); 50 * Fails a test with no message [all...] |
/libcore/junit/src/main/java/junit/framework/ |
Assert.java | 16 * an AssertionFailedError with the given message. 18 static public void assertTrue(String message, boolean condition) { 20 fail(message); 31 * an AssertionFailedError with the given message. 33 static public void assertFalse(String message, boolean condition) { 34 assertTrue(message, !condition); 44 * Fails a test with the given message. 46 static public void fail(String message) { 47 throw new AssertionFailedError(message); 50 * Fails a test with no message [all...] |