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

1 2 3 4 5 6 7 8

  /external/perfetto/protos/perfetto/trace/
trace_packet.proto 37 oneof data {
56 oneof optional_trusted_uid { int32 trusted_uid = 3; };
trusted_packet.proto 45 // The oneof boilerplate here is required to tell the difference between
47 oneof optional_trusted_uid { int32 trusted_uid = 3; };
  /frameworks/base/core/proto/android/os/
bundle.proto 26 oneof data {
persistablebundle.proto 26 oneof data {
  /system/core/init/
subcontext.proto 23 oneof command {
36 oneof reply {
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
MessageOrBuilder.java 92 * Returns true if the given oneof is set.
94 * {@code oneof.getContainingType() != getDescriptorForType()}.
96 boolean hasOneof(Descriptors.OneofDescriptor oneof);
99 * Obtains the FieldDescriptor if the given oneof is set. Returns null
103 Descriptors.OneofDescriptor oneof);
DynamicMessage.java 59 * oneofCases stores the FieldDescriptor for each oneof to indicate
175 public boolean hasOneof(OneofDescriptor oneof) {
176 verifyOneofContainingType(oneof);
177 FieldDescriptor field = oneofCases[oneof.getIndex()];
185 public FieldDescriptor getOneofFieldDescriptor(OneofDescriptor oneof) {
186 verifyOneofContainingType(oneof);
187 return oneofCases[oneof.getIndex()];
316 /** Verifies that the oneof is an oneof of this message. */
317 private void verifyOneofContainingType(OneofDescriptor oneof) {
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_context.cc 118 const OneofDescriptor* oneof = message->oneof_decl(i); local
120 info.name = UnderscoresToCamelCase(oneof->name(), false);
121 info.capitalized_name = UnderscoresToCamelCase(oneof->name(), true);
122 oneof_generator_info_map_[oneof] = info;
182 const OneofDescriptor* oneof) const {
184 FindOrNull(oneof_generator_info_map_, oneof);
186 GOOGLE_LOG(FATAL) << "Can not find OneofGeneratorInfo for oneof: "
187 << oneof->name();
java_context.h 78 // Get the OneofGeneratorInfo for a given oneof.
80 const OneofDescriptor* oneof) const;
  /frameworks/base/tools/stats_log_api_gen/
test.proto 62 oneof event {
76 oneof event {
86 oneof event {
98 oneof event {
109 oneof event { BadAttributionNodePositionAtom bad = 1; }
113 oneof event {
121 oneof event {
  /external/golang-protobuf/proto/
size_test.go 128 {"oneof not set", &pb.Oneof{}},
129 {"oneof bool", &pb.Oneof{Union: &pb.Oneof_F_Bool{true}}},
130 {"oneof zero int32", &pb.Oneof{Union: &pb.Oneof_F_Int32{0}}},
131 {"oneof big int32", &pb.Oneof{Union: &pb.Oneof_F_Int32{1 << 20}}},
132 {"oneof int64", &pb.Oneof{Union: &pb.Oneof_F_Int64{42}}}
    [all...]
  /external/perfetto/src/ftrace_reader/test/
test_messages.proto 23 oneof event { FakeAllFieldsFtraceEvent all_fields = 42; }
  /frameworks/base/core/proto/android/content/
clipdata.proto 45 oneof data {
  /tools/tradefederation/core/proto/
metric_measurement.proto 43 // All the types a measurement can take, use the oneOf to find which type was
45 oneof measurement {
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/TrEEConfig/
TrEEConfig.vfr 39 oneof varid = TREE_CONFIGURATION.TpmDevice,
55 oneof name = Tpm2Operation,
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
DynamicMessageTest.java 249 // Test oneof behavior
285 OneofDescriptor oneof = TestAllTypes.getDescriptor().getOneofs().get(0); local
286 assertFalse(builder.hasOneof(oneof));
287 assertSame(null, builder.getOneofFieldDescriptor(oneof));
290 assertTrue(builder.hasOneof(oneof));
291 FieldDescriptor field = oneof.getField(3);
292 assertSame(field, builder.getOneofFieldDescriptor(oneof));
295 assertTrue(message.hasOneof(oneof));
299 FieldDescriptor mergedField = oneof.getField(0);
306 builder.clearOneof(oneof);
    [all...]
  /external/perfetto/protos/perfetto/ipc/
consumer_port.proto 70 oneof state { bool disabled = 1; }
producer_port.proto 127 oneof cmd {
  /external/perfetto/src/ipc/
wire_protocol.proto 66 oneof msg {
  /frameworks/base/tools/aapt2/
Resources.proto 197 oneof value {
207 oneof value {
222 oneof value {
315 oneof oneof_value {
484 oneof node {
  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootConfigVfr.vfr 38 oneof varid = HTTP_BOOT_CONFIG_IFR_NVDATA.IpVersion,
  /external/tensorflow/tensorflow/core/grappler/costs/
op_performance_data.proto 96 oneof execution_time {
  /frameworks/base/core/proto/android/util/
log.proto 79 oneof value {
  /external/protobuf/src/google/protobuf/compiler/ruby/
ruby_generator.cc 167 void GenerateOneof(const google::protobuf::OneofDescriptor* oneof,
170 "oneof :$name$ do\n",
171 "name", oneof->name());
174 for (int i = 0; i < oneof->field_count(); i++) {
175 const FieldDescriptor* field = oneof->field(i);
205 const OneofDescriptor* oneof = message->oneof_decl(i); local
206 GenerateOneof(oneof, printer);
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/TcgConfigDxe/
TcgConfig.vfr 40 oneof varid = TCG_CONFIGURATION.TpmOperation,

Completed in 746 milliseconds

1 2 3 4 5 6 7 8