Home
last modified time | relevance | path

Searched full:foo* (Results 29051 - 29075 of 30197) sorted by relevance

1...<<1161116211631164116511661167116811691170>>...1208

/third_party/protobuf/js/
H A Dmessage_test.js144 response.setOuterEnum(proto.jspb.test.OuterEnum.FOO);
145 assertEquals(proto.jspb.test.OuterEnum.FOO, response.getOuterEnum());
157 var foo = new proto.jspb.test.Complex(data1);
159 var result = foo.toObject();
172 result = foo.toObject(true /* opt_includeInstance */);
178 {anInt: 11, $jspbMessageInstance: foo.getANestedMessage()},
180 {anInt: 22, $jspbMessageInstance: foo.getARepeatedMessageList()[0]},
181 {anInt: 33, $jspbMessageInstance: foo.getARepeatedMessageList()[1]}
185 $jspbMessageInstance: foo
192 var foo
[all...]
/third_party/protobuf/objectivec/DevTools/
H A Dpddm.py62 "foo(bar(a))", but you can define foo(a) and bar(b) where bar invokes foo()
79 int foo(MyEnum x) {
264 macro_ref_str: String of a macro reference (i.e. foo(a, b)).
H A Dpddm_tests.py49 f = io.StringIO(u"""PDDM-DEFINE foo( )
53 macro = result._macros.get('foo')
55 self.assertEquals(macro.name, 'foo')
68 PDDM-DEFINE oneArg(foo)
83 self.assertEquals(macro.args, ('foo',))
106 (u'PDDM-DEFINE foo()\nbody\nPDDM-DEFINED foo\nbaz',
109 (u'PDDM-DEFINE foo()\nbody\nPDDM-DEFINE-END\nPDDM-DEFINE-END\n',
112 (u'PDDM-DEFINE foo()\nbody\nPDDM-DEFINE-END\nmumble\n',
115 (u'PDDM-DEFINE foo()\nbod
[all...]
/third_party/protobuf/objectivec/
H A DGPBAny.pbobjc.h67 * Foo foo = ...;
69 * any.PackFrom(foo);
71 * if (any.UnpackTo(&foo)) {
77 * Foo foo = ...;
78 * Any any = Any.pack(foo);
80 * if (any.is(Foo.class)) {
81 * foo = any.unpack(Foo
[all...]
H A DGPBApi.pbobjc.m34 // We don't use [Foo class] because it is not a static value.
/third_party/protobuf/objectivec/Tests/
H A DGPBArrayTests.m3580 XCTAssertFalse([array isEqual:@[ @"foo" ]]);
3581 XCTAssertFalse([array isEqualToArray:@[ @"foo" ]]);
3583 [array addObject:@"foo"];
3587 XCTAssertTrue([array isEqual:@[ @"foo" ]]);
3588 XCTAssertTrue([array isEqualToArray:@[ @"foo" ]]);
3601 [array2 replaceObjectAtIndex:0 withObject:@"foo"];
3655 [array addObject:@"foo"];
3663 XCTAssertEqualObjects(cpy[0], @"foo");
3672 XCTAssertEqualObjects(cpy2[0], @"foo");
3682 [array addObject:@"foo"];
[all...]
H A DGPBUtilitiesTests.m142 message.new_p.copy_p = @"foo";
148 @" copy: \"foo\"\n"
198 @"repeatedStringArray" : [@[@"foo", @"bar"] mutableCopy],
H A DGPBUnknownFieldSetTest.m74 XCTAssertFalse([set1 isEqual:@"foo"]);
118 [field1 addLengthDelimited:DataFromCStr("foo")];
122 [field2 addLengthDelimited:DataFromCStr("foo")];
406 XCTAssertFalse([field1 isEqual:@"foo"]);
455 [field1 addLengthDelimited:DataFromCStr("foo")];
457 [field2 addLengthDelimited:DataFromCStr("foo")];
H A DGPBWireFormatTests.m152 setStr:@"foo"];
183 XCTAssertEqualObjects(message2.str, @"foo");
206 message.str = @"foo";
233 @"foo");
H A Dtext_format_unittest_data.txt112 default_nested_enum: FOO
H A Dunittest_objc.proto211 enum Foo {
268 optional Foo new_val_lower_enum = 23;
269 optional Foo new_Val_upper_enum = 24;
270 optional Foo newvalue_lower_no_underscore_enum = 25;
271 optional Foo newValue_upper_no_underscore_enum = 26;
288 repeated Foo new_val_lower_enum_repeated = 123;
289 repeated Foo new_Val_upper_enum_repeated = 124;
290 repeated Foo newvalue_lower_no_underscore_enum_repeated = 125;
291 repeated Foo newValue_upper_no_underscore_enum_repeated = 126;
308 optional Foo alloc_val_lower_enu
[all...]
H A Dunittest_runtime_proto2.proto36 FOO = 0;
H A Dunittest_runtime_proto3.proto36 FOO = 0;
125 FOO = 0;
/third_party/protobuf/php/ext/google/protobuf/
H A Dphp-upb.c11 * #include "upb/foobar.h"
7745 /* Regular messages: {"@type": "...","foo": 1, "bar": 2} */ in jsonenc_any()
H A Dphp-upb.h10 * #include "upb/foobar.h"
H A Dmessage.c117 * isset($message->foobar);
118 * property_exists($message->foobar);
154 * unset($message->foobar);
188 * $x = $message->foobar;
229 * $message->foobar = $x;
H A Dnames.h36 // Translates a protobuf symbol name (eg. foo.bar.Baz) into a PHP class name
37 // (eg. \Foo\Bar\Baz).
/third_party/protobuf/python/google/protobuf/internal/
H A Dreflection_test.py171 bb=message_module.TestAllTypes.FOO),
186 bb=message_module.TestAllTypes.FOO),
199 TypeError, message_module.TestAllTypes, optional_int32='foo')
207 TypeError, message_module.TestAllTypes, repeated_int32=['foo'])
317 proto.optional_string = 'foo'
323 (proto.DESCRIPTOR.fields_by_name['optional_string' ], 'foo') ],
330 (proto.DESCRIPTOR.fields_by_name['optional_string' ], 'foo'),
340 proto.repeated_string.extend(['foo', 'bar'])
351 ['foo', 'bar', 'baz', '0', '1']) ],
383 self.assertRaises(TypeError, setattr, proto, 'optional_int32', 'foo')
[all...]
H A Dpython_message.py99 myproto.foo_field = 23
1272 the top-level message, e.g. "foo.bar[5].baz".
1490 foo.bar.baz.qux = 23
1491 assert foo.HasField('bar')
H A Dservice_reflection_test.py48 class FooUnitTest(unittest.TestCase): class
75 srvc.Foo(rpc_controller, unittest_pb2.FooRequest(), MyCallback)
76 self.assertEqual('Method Foo not implemented.',
94 def Foo(self, rpc_controller, request, done): member in FooUnitTest.testService.MyServiceImpl
95 self.foo_called = True
101 srvc.Foo(rpc_controller, unittest_pb2.FooRequest(), MyCallback)
103 self.assertEqual(True, srvc.foo_called)
135 stub.Foo(rpc_controlle
[all...]
H A Dproto_builder_test.py54 ('foo', descriptor_pb2.FieldDescriptorProto.TYPE_INT64),
65 proto.foo = 12345
76 proto.foo = 12345
79 'foo: 12345\nbar: "asdf"\n', text_format.MessageToString(proto))
H A Dtest_proto3_optional.proto45 FOO = 1;
H A Dpacked_field_test.proto37 FOO = 0;
H A Dtest_bad_identifiers.proto46 optional string message = 100 [default = "foo"];
/third_party/protobuf/ruby/
H A DREADME.md42 mymessage.field3 = SubMessage.new(:foo => 100)

Completed in 85 milliseconds

1...<<1161116211631164116511661167116811691170>>...1208