OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StringByteSink
(Results
1 - 2
of
2
) sorted by null
/external/icu/icu4c/source/common/unicode/
bytestream.h
15
//
StringByteSink
Write to an STL string
231
class
StringByteSink
: public ByteSink {
238
StringByteSink
(StringClass* dest) : dest_(dest) { }
248
StringByteSink
(); ///< default constructor not implemented
249
StringByteSink
(const
StringByteSink
&); ///< copy constructor not implemented
250
StringByteSink
&operator=(const
StringByteSink
&); ///< assignment operator not implemented
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
bytestream.h
43
//
StringByteSink
Writes to an STL string
252
//
StringByteSink
sink(&dest);
256
class LIBPROTOBUF_EXPORT
StringByteSink
: public ByteSink {
258
explicit
StringByteSink
(string* dest) : dest_(dest) {}
263
GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(
StringByteSink
);
Completed in 146 milliseconds