/external/google-breakpad/src/common/ |
simple_string_dictionary_unittest.cc | 272 TestMap deserialized(serialized_copy, size); 275 EXPECT_EQ(3u, deserialized.GetCount()); 276 EXPECT_STREQ("abc", deserialized.GetValueForKey("one")); 277 EXPECT_STREQ("def", deserialized.GetValueForKey("two")); 278 EXPECT_STREQ("hig", deserialized.GetValueForKey("tre"));
|
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
SQLClientInfoExceptionTest.java | 239 Serializable deserialized) { 242 deserialized); 245 SQLClientInfoException desrEx = (SQLClientInfoException) deserialized;
|
SQLWarningTest.java | 425 Serializable deserialized) { 429 deserialized); 432 SQLWarning dserThr = (SQLWarning) deserialized;
|
BatchUpdateExceptionTest.java | 451 Serializable deserialized) { 455 deserialized); 458 BatchUpdateException dserThr = (BatchUpdateException) deserialized;
|
DataTruncationTest.java | 488 Serializable deserialized) { 492 deserialized); 495 DataTruncation dserThr = (DataTruncation) deserialized;
|
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
LevelTest.java | 277 Serializable deserialized) { 280 Level dser = (Level) deserialized; 294 * deserialized cost level should be the same instance as the existing one. 306 * deserialized level object should be equal to the original one.
|
/external/icu/icu4c/source/i18n/ |
collationtailoring.h | 39 * built from rules or deserialized from binary data.
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
ProtocolStringList.java | 41 * ByteStrings when handling protos that have been deserialized from bytes.
|
/libcore/luni/src/test/java/libcore/java/io/ |
SerializationTest.java | 46 FieldMadeTransient deserialized = (FieldMadeTransient) SerializationTester.deserializeHex(s); local 47 assertEquals(0, deserialized.transientInt); 68 FieldMadeStatic deserialized = (FieldMadeStatic) SerializationTester.deserializeHex(s); local 70 assertEquals(9999, deserialized.staticInt);
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
SealedObjectTest.java | 67 * deserialized, the content od deserialized object equals to the content of 81 assertEquals("The secret content of deserialized object " 85 + "deserialized object should be equal to the value returned "
|
/external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/ |
PropertyChangeEventTest.java | 147 Serializable deserialized) { 150 PropertyChangeEvent desrEv = (PropertyChangeEvent) deserialized;
|
/external/clang/include/clang/Lex/ |
PreprocessorOptions.h | 71 /// \brief Dump declarations that are deserialized from PCH, for testing. 75 /// deserialized, and we emit an error if they are; for testing purposes.
|
/external/clang/test/PCH/ |
cxx-templates.cpp | 8 // RUN: %clang_cc1 -std=c++11 -triple %itanium_abi_triple -fcxx-exceptions -fexceptions -include-pch %t %s -emit-llvm -o - -error-on-deserialized-decl doNotDeserialize -DNO_ERRORS | FileCheck %s 13 // RUN: %clang_cc1 -std=c++11 -triple %itanium_abi_triple -fcxx-exceptions -fexceptions -fmodules -include-pch %t %s -emit-llvm -o - -error-on-deserialized-decl doNotDeserialize -DNO_ERRORS -fmodules-ignore-macro=NO_ERRORS | FileCheck %s
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
SerializableTester.java | 57 * serialized or deserialized 90 * serialized or deserialized
|
/external/mockito/src/org/mockito/internal/creation/ |
AcrossJVMSerializationFeature.java | 211 * Resolves the proxy to a new deserialized instance of the Mockito mock. 215 * @return A deserialized instance of the Mockito mock. 231 "Mockito mock cannot be deserialized to a mock of '" + typeToMock.getCanonicalName() + "'. The error was :", 297 // create the Mockito mock class before it can even be deserialized 320 * When names differ, which happens when the mock is deserialized in another ClassLoader, a
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
NanoTest.java | 2141 EnumValidity.M deserialized = MessageNano.mergeFrom(new EnumValidity.M(), serialized); local 2213 EnumValidityAccessors.M deserialized = local 3192 AnotherMessage deserialized = AnotherMessage.parseFrom(newBytes); local 3679 TestAllTypesNano deserialized = MessageNano.mergeFrom(new TestAllTypesNano(), serialized); local [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
CollationTailoring.java | 26 * built from rules or deserialized from binary data.
|
/frameworks/base/telecomm/java/android/telecom/ |
ConferenceParticipant.java | 68 * Responsible for creating {@code ConferenceParticipant} objects for deserialized Parcels.
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
AtomicBooleanTest.java | 125 * a deserialized serialized atomic holds same value
|
AtomicReferenceTest.java | 124 * a deserialized serialized atomic holds same value
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
HashSetTest.java | 245 public void assertDeserialized(Serializable initial, Serializable deserialized) { 247 HashSet<String> deseriaHs = (HashSet<String>) deserialized;
|
RandomTest.java | 314 public void assertDeserialized(Serializable initial, Serializable deserialized) { 316 Random deserializedRand = (Random) deserialized;
|
/libcore/luni/src/main/java/java/text/ |
AttributedCharacterIterator.java | 116 * Resolves a deserialized instance to the correct constant attribute. 127 * equality, resolve to the canonical instance when deserialized.
|
/libcore/luni/src/test/java/libcore/java/util/beans/ |
PropertyChangeSupportTest.java | 251 @Override protected void verify(PropertyChangeSupport deserialized) { 253 describe(deserialized.getPropertyChangeListeners()));
|
/libcore/luni/src/test/java/libcore/java/util/ |
OldCollectionsTest.java | 706 @Override protected void verify(Collection<?> deserialized) throws Exception { 708 ((Collection) deserialized).add(Boolean.TRUE); 727 @Override protected void verify(Map<?, ?> deserialized) throws Exception { 729 ((Map) deserialized).put(Boolean.TRUE, "a"); 734 ((Map) deserialized).put("a", Boolean.TRUE);
|