Lines Matching refs:Foo
69 message Foo {
502 message Foo {
512 Foo foo;
676 message Foo {
821 Foo foo = Foo.PARSER.ParseFrom(input);
1029 message Foo { optional int bar_baz = 123; }
1031 C++: Foo::kBarBazFieldNumber
1032 Java: Foo.BAR_BAZ_FIELD_NUMBER
1033 Python: Foo.BAR_BAZ_FIELD_NUMBER
1057 message Foo {}
1059 optional int32 Foo = 1;
1060 optional Foo baz = 2;
1062 Previously, the type of "baz" would resolve to "Bar.Foo", and you'd get
1063 an error because Bar.Foo is a field, not a type. Now the type of "baz"
1064 resolves to the message type Foo. This change is unlikely to make a
1089 * For each enum type Foo, protoc will generate functions:
1090 const string& Foo_Name(Foo value);
1091 bool Foo_Parse(const string& name, Foo* result);
1118 Foo, Foo.Interface is a pure interface containing all of the service's
1119 defined methods. Foo.newReflectiveService() can be called to wrap an