Lines Matching defs:source
2 // Use of this source code is governed by a BSD-style license that can be
142 // Tests that reading/writing a long works correctly when the source process
449 Pickle source;
450 source.WriteInt(1);
452 Pickle copy_refs_source_buffer(static_cast<const char*>(source.data()),
453 source.size());
456 ASSERT_EQ(source.size(), copy.size());
460 Pickle source;
462 source.WriteData(str.c_str(), 100000);
465 PickleIterator iter(source);