Searched defs:DataPiece (Results 1 - 1 of 1) sorted by relevance

/external/protobuf/src/google/protobuf/util/internal/
H A Ddatapiece.h57 // Just like StringPiece, the DataPiece class does not own the storage for
59 // that the underlying storage is still valid when the DataPiece is accessed.
60 class LIBPROTOBUF_EXPORT DataPiece { class in namespace:google::protobuf::util::converter
63 // These are the types supported by DataPiece.
79 explicit DataPiece(const int32 value) : type_(TYPE_INT32), i32_(value) {} function in class:google::protobuf::util::converter::DataPiece
80 explicit DataPiece(const int64 value) : type_(TYPE_INT64), i64_(value) {} function in class:google::protobuf::util::converter::DataPiece
81 explicit DataPiece(const uint32 value) : type_(TYPE_UINT32), u32_(value) {} function in class:google::protobuf::util::converter::DataPiece
82 explicit DataPiece(const uint64 value) : type_(TYPE_UINT64), u64_(value) {} function in class:google::protobuf::util::converter::DataPiece
83 explicit DataPiece(const double value) : type_(TYPE_DOUBLE), double_(value) {} function in class:google::protobuf::util::converter::DataPiece
84 explicit DataPiece(cons function in class:google::protobuf::util::converter::DataPiece
85 explicit DataPiece(const bool value) : type_(TYPE_BOOL), bool_(value) {} function in class:google::protobuf::util::converter::DataPiece
86 DataPiece(StringPiece value, bool use_strict_base64_decoding) function in class:google::protobuf::util::converter::DataPiece
91 DataPiece(StringPiece value, bool dummy, bool use_strict_base64_decoding) function in class:google::protobuf::util::converter::DataPiece
95 DataPiece(const DataPiece& r) : type_(r.type_), str_(r.str_) {} function in class:google::protobuf::util::converter::DataPiece
159 DataPiece(Type type, int32 val) : type_(type), i32_(val) {} function in class:google::protobuf::util::converter::DataPiece
[all...]

Completed in 192 milliseconds