HomeSort by relevance Sort by last modified time
    Searched defs:SimpleSerializer (Results 1 - 2 of 2) sorted by null

  /external/google-breakpad/src/processor/
simple_serializer.h 30 // simple_serializer.h: SimpleSerializer is a template for calculating size and
33 // All specializations of SimpleSerializer template are defined in the
47 // Default implementation of SimpleSerializer template.
49 template<class Type> class SimpleSerializer {
simple_serializer-inl.h 53 // Specializations of SimpleSerializer: bool
55 class SimpleSerializer<bool> {
70 // Specializations of SimpleSerializer: string
72 class SimpleSerializer<string> {
82 // Specializations of SimpleSerializer: C-string
84 class SimpleSerializer<const char*> {
96 // Specializations of SimpleSerializer: Line
98 class SimpleSerializer<BasicSourceLineResolver::Line> {
102 return SimpleSerializer<MemAddr>::SizeOf(line.address)
103 + SimpleSerializer<MemAddr>::SizeOf(line.size
    [all...]

Completed in 68 milliseconds