Home
last modified time | relevance | path

Searched refs:serialized (Results 1 – 25 of 58) sorted by relevance

123

/external/clang/test/ARCMT/
Dcheck-with-serialized-diag.m42 // CHECK: {{.*}}check-with-serialized-diag.m:32:4: error: [rewriter] it is not safe to remove 'reta…
44 // CHECK-NEXT: {{.*}}check-with-serialized-diag.m:34:4: error: [rewriter] it is not safe to remove …
46 // CHECK-NEXT: {{.*}}check-with-serialized-diag.m:32:23: error: ARC forbids explicit message send o…
47 // CHECK-NEXT: Range: {{.*}}check-with-serialized-diag.m:32:4 {{.*}}check-with-serialized-diag.m:32…
49 // CHECK-NEXT: {{.*}}check-with-serialized-diag.m:34:15: error: ARC forbids explicit message send o…
50 // CHECK-NEXT: Range: {{.*}}check-with-serialized-diag.m:34:4 {{.*}}check-with-serialized-diag.m:34…
52 // CHECK-NEXT: {{.*}}check-with-serialized-diag.m:35:6: error: ARC forbids explicit message send of…
53 // CHECK-NEXT: Range: {{.*}}check-with-serialized-diag.m:35:4 {{.*}}check-with-serialized-diag.m:35…
/external/clang/test/Misc/
Dserialized-diags.m18 // This test checks that serialized diagnostics handle notes with no source location.
20 // CHECK: {{.*[/\\]}}serialized-diags.m:8:4: error: use of undeclared identifier '_self'; did you m…
21 // CHECK: Range: {{.*[/\\]}}serialized-diags.m:8:4 {{.*[/\\]}}serialized-diags.m:8:9
23 // CHECK: FIXIT: ({{.*[/\\]}}serialized-diags.m:8:4 - {{.*[/\\]}}serialized-diags.m:8:9): "self"
26 // CHECK: {{.*[/\\]}}serialized-diags.m:1:12: warning: class 'Foo' defined without specifying a bas…
28 // CHECK: +-{{.*[/\\]}}serialized-diags.m:1:15: note: add a super class to fix this problem [] [Sem…
/external/protobuf/java/src/test/java/com/google/protobuf/
DCheckUtf8Test.java59 ByteString serialized = in testParseRequiredStringWithGoodUtf8() local
62 StringWrapper.PARSER.parseFrom(serialized).getReq()); in testParseRequiredStringWithGoodUtf8()
93 ByteString serialized = in testParseRequiredStringWithBadUtf8() local
96 StringWrapper.PARSER.parseFrom(serialized); in testParseRequiredStringWithBadUtf8()
131 ByteString serialized = in testParseRequiredStringWithBadUtf8Size() local
134 StringWrapperSize.PARSER.parseFrom(serialized); in testParseRequiredStringWithBadUtf8Size()
DGeneratedMessageTest.java1478 ByteString serialized = message.toByteString(); in testOneofSerialization() local
1479 TestOneof2 message2 = TestOneof2.parseFrom(serialized); in testOneofSerialization()
1488 ByteString serialized = message.toByteString(); in testOneofSerialization() local
1489 TestOneof2 message2 = TestOneof2.parseFrom(serialized); in testOneofSerialization()
1498 ByteString serialized = message.toByteString(); in testOneofSerialization() local
1499 TestOneof2 message2 = TestOneof2.parseFrom(serialized); in testOneofSerialization()
1509 ByteString serialized = message.toByteString(); in testOneofSerialization() local
1510 TestOneof2 message2 = TestOneof2.parseFrom(serialized); in testOneofSerialization()
/external/sfntly/cpp/src/test/
Dserialization_test.cc50 FontPtr serialized = new_font_array[0]; in TestSerialization() local
53 EXPECT_EQ(original->num_tables(), serialized->num_tables()); in TestSerialization()
57 const TableMap* serialized_tables = serialized->GetTableMap(); in TestSerialization()
69 TablePtr serialized_table = serialized->GetTable(TTF_KNOWN_TAGS[i]); in TestSerialization()
116 FontPtr serialized = new_font_array[0]; in TestSerializationBitmap() local
119 EXPECT_EQ(original->num_tables(), serialized->num_tables()); in TestSerializationBitmap()
123 const TableMap* serialized_tables = serialized->GetTableMap(); in TestSerializationBitmap()
134 TablePtr serialized_table = serialized->GetTable(BITMAP_KNOWN_TAGS[i]); in TestSerializationBitmap()
/external/clang/test/Modules/
Dserialized-diags.m16 // CHECK: serialized-diags.m:1:9: note: while building module 'HasWarnings' imported from
17 // CHECK: serialized-diags.m:8:9: warning: incompatible pointer types initializing 'double *'
26 // CHECK-WITH-ERRORS: serialized-diags.m:1:9: note: while building module 'HasWarnings'
28 // CHECK-WITH-ERRORS: serialized-diags.m:4:9: note: while building module 'HasErrors'
30 // CHECK-WITH-ERRORS: serialized-diags.m:4:9: fatal: could not build module 'HasErrors'
/external/protobuf/python/google/protobuf/
Dmessage.py149 def MergeFromString(self, serialized): argument
179 def ParseFromString(self, serialized): argument
186 self.MergeFromString(serialized)
279 return dict(serialized=self.SerializePartialToString())
/external/nanopb-c/generator/google/protobuf/
Dmessage.py149 def MergeFromString(self, serialized): argument
179 def ParseFromString(self, serialized): argument
182 self.MergeFromString(serialized)
275 return dict(serialized=self.SerializePartialToString())
/external/protobuf/python/google/protobuf/internal/
Dreflection_test.py1697 serialized = proto.SerializeToString()
1700 self.assertEqual(proto.ByteSize(), len(serialized))
1703 bytes_read = raw.MergeFromString(serialized)
1704 self.assertEqual(len(serialized), bytes_read)
1764 serialized = proto.SerializeToString()
1767 len(serialized),
1768 proto2.MergeFromString(serialized))
2230 serialized = first_proto.SerializeToString()
2231 self.assertEqual(first_proto.ByteSize(), len(serialized))
2233 len(serialized),
[all …]
Dmessage_factory_test.py81 serialized = msg.SerializeToString()
82 converted = factory_test2_pb2.Factory2Message.FromString(serialized)
84 self.assertEquals(serialized, reserialized)
Dcpp_message.py568 def ParseFromString(self, serialized): argument
570 self.MergeFromString(serialized)
572 def MergeFromString(self, serialized): argument
573 byte_size = self._cmsg.MergeFromString(serialized)
Dunknown_fields_test.py156 serialized = raw.SerializeToString()
160 proto.MergeFromString(serialized)
Dmessage_test.py190 serialized = golden_message.SerializeToString()
192 message.ParseFromString(serialized)
224 serialized = golden_message.SerializeToString()
226 message.ParseFromString(serialized)
/external/protobuf/java/src/main/java/com/google/protobuf/
DAbstractMessageLite.java86 final int serialized = getSerializedSize(); in writeDelimitedTo() local
88 CodedOutputStream.computeRawVarint32Size(serialized) + serialized); in writeDelimitedTo()
91 codedOutput.writeRawVarint32(serialized); in writeDelimitedTo()
/external/boringssl/src/ssl/test/runner/
Dticket.go173 serialized := state.marshal()
174 encrypted := make([]byte, aes.BlockSize+len(serialized)+sha256.Size)
185 cipher.NewCTR(block, iv).XORKeyStream(encrypted[aes.BlockSize:], serialized)
Dkey_agreement.go543 serialized := elliptic.Marshal(ka.curve, mx, my)
546 ckx.ciphertext = make([]byte, 1+len(serialized))
547 ckx.ciphertext[0] = byte(len(serialized))
548 copy(ckx.ciphertext[1:], serialized)
/external/google-breakpad/src/common/
Dsimple_string_dictionary_unittest.cc264 const SerializedNonAllocatingMap* serialized; in TEST() local
265 size_t size = map.Serialize(&serialized); in TEST()
270 memcpy(serialized_copy, serialized, size); in TEST()
/external/jsoncpp/doc/
Droadmap.dox20 Provides more control to determine how specific items are serialized when JSON allow choice:
27 - Stream based parser to serialized a Json document without using Json::Value as input.
/external/clang/docs/
DPCHInternals.rst25 resulting PCH file contains the serialized form of the compiler's internal
60 headers to save a serialized AST file (one per module) and use those AST
70 file. The AST file itself contains a serialized representation of Clang's
128 contains the serialized representation of a part of Clang's internal
194 The source manager block contains the serialized representation of Clang's
222 The preprocessor block contains the serialized representation of the
235 The types block contains the serialized representation of all of the types
247 the types block where the serialized representation of that type resides,
258 The declarations block contains the serialized representation of all of the
298 de-serialized. For large declaration contexts (e.g., the translation unit),
[all …]
/external/chromium-trace/trace-viewer/third_party/webapp2/docs/api/webapp2_extras/
Djson.rst11 It will also escape forward slashes and, by default, output the serialized
/external/llvm/test/Bitcode/
Dflags.ll7 ; Make sure the flags are serialized/deserialized properly for both
/external/protobuf/src/google/protobuf/
Dwire_format_unittest.cc773 string serialized; in TEST() local
774 msg1.SerializeToString(&serialized); in TEST()
778 ASSERT_TRUE(msg2.ParseFromString(serialized)); in TEST()
783 ASSERT_TRUE(msg3.ParseFromString(serialized)); in TEST()
788 ASSERT_TRUE(msg4.ParseFromString(serialized)); in TEST()
793 ASSERT_TRUE(msg5.ParseFromString(serialized)); in TEST()
Dmessage_unittest.cc239 Cord serialized; in TEST() local
240 EXPECT_FALSE(message.AppendToCord(&serialized)); in TEST()
/external/llvm/test/CodeGen/ARM/
D2011-08-29-SchedCycle.ll12 ; If the libcalls are not serialized (i.e. both have chains which are dag
/external/google-tv-pairing-protocol/proto/
Dpolo.proto13 // MessageType indicates the type of the enclosed message (serialized in the

123