HomeSort by relevance Sort by last modified time
    Searched refs:MessageLite (Results 1 - 25 of 31) sorted by null

1 2

  /external/protobuf/src/google/protobuf/
message_lite.cc 46 MessageLite::~MessageLite() {}
48 string MessageLite::InitializationErrorString() const {
73 const MessageLite& message) {
104 MessageLite* message)
107 MessageLite* message)
110 MessageLite* message)
113 MessageLite* message)
116 MessageLite* message)
120 MessageLite* message)
    [all...]
message_lite.h 36 // Defines MessageLite, the abstract interface implemented by all (lite
52 // subclass of MessageLite. Use MessageLite instead when you only need
55 // to generate classes which implement only MessageLite, not the full
71 class LIBPROTOBUF_EXPORT MessageLite {
73 inline MessageLite() {}
74 virtual ~MessageLite();
83 virtual MessageLite* New() const = 0;
102 virtual void CheckTypeAndMergeFrom(const MessageLite& other) = 0;
233 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(MessageLite);
    [all...]
extension_set.h 55 class MessageLite; // message_lite.h
107 const MessageLite* message_prototype;
130 GeneratedExtensionFinder(const MessageLite* containing_type)
138 const MessageLite* containing_type_;
165 static void RegisterExtension(const MessageLite* containing_type,
168 static void RegisterEnumExtension(const MessageLite* containing_type,
172 static void RegisterMessageExtension(const MessageLite* containing_type,
175 const MessageLite* prototype);
230 const MessageLite& GetMessage(int number,
231 const MessageLite& default_value) const
    [all...]
wire_format_lite.h 294 static inline bool ReadGroup (field_number, input, MessageLite* value);
295 static inline bool ReadMessage(input, MessageLite* value);
347 field_number, const MessageLite& value, output);
349 field_number, const MessageLite& value, output);
353 field_number, const MessageLite& value, output);
355 field_number, const MessageLite& value, output);
425 field_number, const MessageLite& value, output) INL;
427 field_number, const MessageLite& value, output) INL;
469 static inline int GroupSize (const MessageLite& value);
470 static inline int MessageSize(const MessageLite& value)
    [all...]
extension_set.cc 62 typedef hash_map<pair<const MessageLite*, int>,
79 void Register(const MessageLite* containing_type,
92 const MessageLite* containing_type, int number) {
112 void ExtensionSet::RegisterExtension(const MessageLite* containing_type,
135 void ExtensionSet::RegisterEnumExtension(const MessageLite* containing_type,
147 void ExtensionSet::RegisterMessageExtension(const MessageLite* containing_type,
150 const MessageLite* prototype) {
405 const MessageLite& ExtensionSet::GetMessage(
406 int number, const MessageLite& default_value) const {
418 // const MessageLite& ExtensionSet::GetMessage(int number
    [all...]
extension_set_heavy.cc 112 const MessageLite& ExtensionSet::GetMessage(int number,
125 MessageLite* ExtensionSet::MutableMessage(const FieldDescriptor* descriptor,
133 const MessageLite* prototype =
144 MessageLite* ExtensionSet::AddMessage(const FieldDescriptor* descriptor,
152 new RepeatedPtrField<MessageLite>();
159 MessageLite* result = extension->repeated_message_value
160 ->AddFromCleared<internal::GenericTypeHandler<MessageLite> >();
162 const MessageLite* prototype;
274 // repeated_message_value is actually a RepeatedPtrField<MessageLite>,
275 // but MessageLite has no SpaceUsed(), so we must directly cal
    [all...]
wire_format_lite.cc 296 const MessageLite& value,
304 const MessageLite& value,
313 const MessageLite& value,
328 const MessageLite& value,
message.h 180 // See also MessageLite, which contains most every-day operations. Message
188 class LIBPROTOBUF_EXPORT Message : public MessageLite {
196 // caller. (This is also defined in MessageLite, but is defined again here
256 // MessageLite because they are not supported by the lite library.
284 // These methods are pure-virtual in MessageLite, but Message provides
290 virtual void CheckTypeAndMergeFrom(const MessageLite& other);
    [all...]
wire_format_lite_inl.h 346 MessageLite* value) {
357 MessageLite* value) {
660 const MessageLite& value,
667 const MessageLite& value,
725 inline int WireFormatLite::GroupSize(const MessageLite& value) {
728 inline int WireFormatLite::MessageSize(const MessageLite& value) {
message.cc 69 void Message::CheckTypeAndMergeFrom(const MessageLite& other) {
repeated_field.h 180 // RepeatedPtrField<MessageLite>, but non-lite ExtensionSets need to
182 // reinterpreting MessageLite as Message. ExtensionSet also needs to make
281 inline void GenericTypeHandler<MessageLite>::Merge(
282 const MessageLite& from, MessageLite* to) {
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
MessageLite.java 45 * of MessageLite. Use MessageLite instead when you only need the subset of
48 * which implement only MessageLite, not the full Message interface, by adding
67 public interface MessageLite {
72 * this method is an abstract method of the {@code MessageLite} interface
76 MessageLite getDefaultInstanceForType();
170 MessageLite build();
181 MessageLite buildPartial();
197 * message, as if using {@link Builder#mergeFrom(MessageLite)}.
208 * {@code parseFrom} methods, then use {@link #mergeFrom(MessageLite)}
    [all...]
GeneratedMessageLite.java 181 (MessageLite) next.getValue());
365 MessageLite.Builder subBuilder = null;
367 MessageLite existingValue =
368 (MessageLite) extensions.getField(extension.descriptor);
421 public static <ContainingType extends MessageLite, Type>
474 public MessageLite.Builder internalMergeFrom(
475 MessageLite.Builder to, MessageLite from) {
491 ContainingType extends MessageLite, Type> {
504 final MessageLite messageDefaultInstance
    [all...]
FieldSet.java 66 MessageLite.Builder internalMergeFrom(
67 MessageLite.Builder to, MessageLite from);
313 isValid = value instanceof MessageLite;
346 for (final MessageLite element:
347 (List<MessageLite>) entry.getValue()) {
353 if (!((MessageLite) entry.getValue()).isInitialized()) {
407 ((MessageLite) value).toBuilder(), (MessageLite) otherValue)
488 (MessageLite) entry.getValue())
    [all...]
UninitializedMessageException.java 52 public UninitializedMessageException(final MessageLite message) {
CodedOutputStream.java 197 public void writeGroup(final int fieldNumber, final MessageLite value)
207 * @deprecated UnknownFieldSet now implements MessageLite, so you can just
212 final MessageLite value)
218 public void writeMessage(final int fieldNumber, final MessageLite value)
281 final MessageLite value)
360 public void writeGroupNoTag(final MessageLite value) throws IOException {
367 * @deprecated UnknownFieldSet now implements MessageLite, so you can just
371 public void writeUnknownGroupNoTag(final MessageLite value)
377 public void writeMessageNoTag(final MessageLite value) throws IOException {
506 final MessageLite value)
    [all...]
Message.java 43 * See also {@link MessageLite}, which defines most of the methods that typical
51 public interface Message extends MessageLite {
61 // (From MessageLite, re-declared here only for return type covariance.)
154 // (From MessageLite, re-declared here only for return type covariance.)
161 interface Builder extends MessageLite.Builder {
162 // (From MessageLite.Builder, re-declared here only for return type
184 // (From MessageLite.Builder, re-declared here only for return type
200 // (From MessageLite.Builder, re-declared here only for return type
280 // (From MessageLite.Builder, re-declared here only for return type
ExtensionRegistryLite.java 96 public <ContainingType extends MessageLite>
AbstractMessageLite.java 40 * A partial implementation of the {@link MessageLite} interface which
46 public abstract class AbstractMessageLite implements MessageLite {
101 implements MessageLite.Builder {
297 newUninitializedMessageException(MessageLite message) {
CodedInputStream.java 215 final MessageLite.Builder builder,
232 * @deprecated UnknownFieldSet.Builder now implements MessageLite.Builder, so
237 final MessageLite.Builder builder)
248 public void readMessage(final MessageLite.Builder builder,
UnknownFieldSet.java 59 public final class UnknownFieldSet implements MessageLite {
280 public static final class Builder implements MessageLite.Builder {
  /external/chromium/chrome/browser/sync/util/
cryptographer.h 70 bool Encrypt(const ::google::protobuf::MessageLite& message,
76 ::google::protobuf::MessageLite* message) const;
cryptographer.cc 44 bool Cryptographer::Encrypt(const ::google::protobuf::MessageLite& message,
65 ::google::protobuf::MessageLite* message) const {
  /external/webrtc/src/modules/audio_processing/test/
unpack.cc 46 ::google::protobuf::MessageLite* msg) {
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace.pb.cpp     [all...]

Completed in 651 milliseconds

1 2