HomeSort by relevance Sort by last modified time
    Searched full:fieldmask (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/protobuf/src/google/protobuf/
field_mask.pb.cc 40 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FieldMask, paths_),
45 FieldMask::default_instance_,
50 sizeof(FieldMask),
51 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FieldMask, _internal_metadata_),
52 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FieldMask, _is_default_instance_));
66 FieldMask_descriptor_, &FieldMask::default_instance());
72 delete FieldMask::default_instance_;
90 FieldMask::default_instance_ = new FieldMask();
91 FieldMask::default_instance_->InitAsDefaultInstance()
    [all...]
field_mask.pb.h 40 class FieldMask;
44 class LIBPROTOBUF_EXPORT FieldMask : public ::google::protobuf::Message {
46 FieldMask();
47 virtual ~FieldMask();
49 FieldMask(const FieldMask& from);
51 inline FieldMask& operator=(const FieldMask& from) {
57 static const FieldMask& default_instance();
59 void Swap(FieldMask* other)
    [all...]
unittest_well_known_types.proto 28 google.protobuf.FieldMask field_mask_field = 5;
52 repeated google.protobuf.FieldMask field_mask_field = 5;
75 google.protobuf.FieldMask field_mask_field = 5;
100 map<int32,google.protobuf.FieldMask> field_mask_field = 5;
field_mask.proto 42 // `FieldMask` represents a set of symbolic field paths, for example:
87 // If a FieldMask object is not present in a get operation, the
88 // operation applies to all fields (as if a FieldMask of all fields
191 message FieldMask {
  /external/protobuf/src/google/protobuf/util/
field_mask_util.h 45 typedef google::protobuf::FieldMask FieldMask;
48 // Converts FieldMask to/from string, formatted by separating each path
50 static string ToString(const FieldMask& mask);
51 static void FromString(StringPiece str, FieldMask* out);
53 // Converts FieldMask to/from string, formatted according to proto3 JSON
54 // spec for FieldMask (e.g., "fooBar,baz.quz"). If the field name is not
57 static bool ToJsonString(const FieldMask& mask, string* out);
58 static bool FromJsonString(StringPiece str, FieldMask* out);
66 // Checks whether the given FieldMask is valid for type T
    [all...]
field_mask_util.cc 40 using google::protobuf::FieldMask;
42 string FieldMaskUtil::ToString(const FieldMask& mask) {
46 void FieldMaskUtil::FromString(StringPiece str, FieldMask* out) {
101 bool FieldMaskUtil::ToJsonString(const FieldMask& mask, string* out) {
117 bool FieldMaskUtil::FromJsonString(StringPiece str, FieldMask* out) {
154 const Descriptor* descriptor, FieldMask* out) {
161 // A FieldMaskTree represents a FieldMask in a tree structure. For example,
162 // given a FieldMask "foo.bar,foo.baz,bar.baz", the FieldMaskTree will be:
176 void MergeFromFieldMask(const FieldMask& mask);
177 void MergeToFieldMask(FieldMask* mask)
    [all...]
field_mask_util_test.cc 118 using google::protobuf::FieldMask;
121 FieldMask mask;
140 FieldMask mask;
169 // FieldMask cannot be used to specify sub-fields of a repeated message.
175 FieldMask mask;
185 FieldMask mask;
243 FieldMask in, out;
291 FieldMask mask1, mask2, out;
310 FieldMask mask1, mask2, out;
329 FieldMask mask
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/util/
field_mask_util.h 45 typedef google::protobuf::FieldMask FieldMask;
48 // Converts FieldMask to/from string, formatted by separating each path
50 static string ToString(const FieldMask& mask);
51 static void FromString(StringPiece str, FieldMask* out);
53 // Converts FieldMask to/from string, formatted according to proto3 JSON
54 // spec for FieldMask (e.g., "fooBar,baz.quz"). If the field name is not
57 static bool ToJsonString(const FieldMask& mask, string* out);
58 static bool FromJsonString(StringPiece str, FieldMask* out);
66 // Checks whether the given FieldMask is valid for type T
    [all...]
  /external/protobuf/java/util/src/main/java/com/google/protobuf/util/
FieldMaskUtil.java 38 import com.google.protobuf.FieldMask;
45 * Utility helper functions to work with {@link com.google.protobuf.FieldMask}.
55 * Converts a FieldMask to a string.
57 public static String toString(FieldMask fieldMask) {
61 for (String value : fieldMask.getPathsList()) {
77 * Parses from a string to a FieldMask.
79 public static FieldMask fromString(String value) {
86 * Parses from a string to a FieldMask and validates all field paths.
90 public static FieldMask fromString(Class<? extends Message> type, String value)
    [all...]
FieldMaskTree.java 35 import com.google.protobuf.FieldMask;
45 * A tree representation of a FieldMask. Each leaf node in this tree represent
46 * a field path in the FieldMask.
48 * <p>For example, FieldMask "foo.bar,foo.baz,bar.baz" as a tree will be:
58 * a FieldMask to a canonical form, merge two FieldMasks, calculate the
60 * FieldMask in a message tree.
76 /** Creates a FieldMaskTree for a given FieldMask. */
77 public FieldMaskTree(FieldMask mask) {
87 * Adds a field path to the tree. In a FieldMask, every field path matches the
125 * Merges all field paths in a FieldMask into this tree
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
field_mask.pb.h 40 class FieldMask;
44 class LIBPROTOBUF_EXPORT FieldMask : public ::google::protobuf::Message {
46 FieldMask();
47 virtual ~FieldMask();
49 FieldMask(const FieldMask& from);
51 inline FieldMask& operator=(const FieldMask& from) {
57 static const FieldMask& default_instance();
59 void Swap(FieldMask* other)
    [all...]
field_mask.proto 42 // `FieldMask` represents a set of symbolic field paths, for example:
87 // If a FieldMask object is not present in a get operation, the
88 // operation applies to all fields (as if a FieldMask of all fields
191 message FieldMask {
  /external/protobuf/java/util/src/test/java/com/google/protobuf/util/
FieldMaskUtilTest.java 33 import com.google.protobuf.FieldMask;
81 assertEquals("", FieldMaskUtil.toString(FieldMask.getDefaultInstance()));
82 FieldMask mask = FieldMask.newBuilder().addPaths("foo").build();
84 mask = FieldMask.newBuilder().addPaths("foo").addPaths("bar").build();
88 mask = FieldMask.newBuilder().addPaths("").addPaths("foo").addPaths("").
94 FieldMask mask = FieldMaskUtil.fromString("");
123 FieldMask mask = FieldMaskUtil.fromFieldNumbers(TestAllTypes.class);
150 FieldMask mask1 = FieldMaskUtil.fromString("foo,bar.baz,bar.quz");
151 FieldMask mask2 = FieldMaskUtil.fromString("foo.bar,bar")
    [all...]
  /external/protobuf/src/google/protobuf/util/internal/testdata/
field_mask.proto 39 google.protobuf.FieldMask single_mask = 2;
40 repeated google.protobuf.FieldMask repeated_mask = 3;
45 google.protobuf.FieldMask single_mask = 2;
46 repeated google.protobuf.FieldMask repeated_mask = 3;
66 google.protobuf.FieldMask mask = 1;
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
FieldMask.cs 33 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.FieldMask), global::Google.Protobuf.WellKnownTypes.FieldMask.Parser, new[]{ "Paths" }, null, null, null)
41 /// `FieldMask` represents a set of symbolic field paths, for example:
85 /// If a FieldMask object is not present in a get operation, the
86 /// operation applies to all fields (as if a FieldMask of all fields
191 public sealed partial class FieldMask : pb::IMessage<FieldMask> {
192 private static readonly pb::MessageParser<FieldMask> _parser = new pb::MessageParser<FieldMask>(() => new FieldMask());
    [all...]
  /external/protobuf/python/google/protobuf/internal/
well_known_types.py 36 - FieldMask
377 class FieldMask(object):
378 """Class for FieldMask message type."""
381 """Converts FieldMask to string according to proto3 JSON spec."""
385 """Converts string to FieldMask according to proto3 JSON spec."""
391 """Checks whether the FieldMask is valid for Message Descriptor."""
398 """Gets all direct fields of Message Descriptor to FieldMask."""
404 """Converts a FieldMask to the canonical form.
408 is also in the FieldMask. Then sorts all paths in alphabetical order.
411 mask: The original FieldMask to be converted
    [all...]
well_known_types_test.py 311 mask = field_mask_pb2.FieldMask()
326 mask = field_mask_pb2.FieldMask()
339 mask = field_mask_pb2.FieldMask()
340 out_mask = field_mask_pb2.FieldMask()
375 mask1 = field_mask_pb2.FieldMask()
376 mask2 = field_mask_pb2.FieldMask()
377 out_mask = field_mask_pb2.FieldMask()
394 mask1 = field_mask_pb2.FieldMask()
395 mask2 = field_mask_pb2.FieldMask()
396 out_mask = field_mask_pb2.FieldMask()
    [all...]
  /external/protobuf/src/google/protobuf/util/internal/
field_mask_utility.cc 52 // Appends a FieldMask path segment to a prefix.
142 StrCat("Invalid FieldMask '", paths,
154 StrCat("Invalid FieldMask '", paths,
166 StrCat("Invalid FieldMask '", paths,
202 StrCat("Invalid FieldMask '", paths,
211 StrCat("Invalid FieldMask '", paths,
216 StrCat("Invalid FieldMask '", paths,
field_mask_utility.h 31 // FieldMask related utility methods.
51 // Applies a 'converter' to each segment of a FieldMask path and returns the
62 // Note that we also support Apiary style FieldMask form. The above example in
  /external/protobuf/conformance/
failure_list_java.txt 24 JsonInput.FieldMask.ProtobufOutput
  /external/protobuf/objectivec/google/protobuf/
FieldMask.pbobjc.m 5 #import "google/protobuf/FieldMask.pbobjc.h"
FieldMask.pbobjc.h 38 /// `FieldMask` represents a set of symbolic field paths, for example:
83 /// If a FieldMask object is not present in a get operation, the
84 /// operation applies to all fields (as if a FieldMask of all fields
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/3.0.0/include/google/protobuf/
field_mask.proto 42 // `FieldMask` represents a set of symbolic field paths, for example:
87 // If a FieldMask object is not present in a get operation, the
88 // operation applies to all fields (as if a FieldMask of all fields
243 message FieldMask {
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java-util/3.0.0/
protobuf-java-util-3.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java-util/3.0.2/
protobuf-java-util-3.0.2.jar 

Completed in 2899 milliseconds

1 2 3