/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
descriptor_database.h | 83 // otherwise returns false and leaves *output undefined. containing_type 85 virtual bool FindFileContainingExtension(const string& containing_type, 148 bool FindFileContainingExtension(const string& containing_type, 175 Value FindExtension(const string& containing_type, int field_number); 176 bool FindAllExtensionNumbers(const string& containing_type, 293 bool FindFileContainingExtension(const string& containing_type, 322 bool FindFileContainingExtension(const string& containing_type, 351 bool FindFileContainingExtension(const string& containing_type,
|
descriptor_database.cc | 190 const string& containing_type, 193 make_pair(containing_type, field_number), 199 const string& containing_type, 202 by_extension_.lower_bound(make_pair(containing_type, 0)); 205 for (; it != by_extension_.end() && it->first.first == containing_type; 280 const string& containing_type, 283 return MaybeCopy(index_.FindExtension(containing_type, field_number), output); 370 const string& containing_type, 373 return MaybeParse(index_.FindExtension(containing_type, field_number), 417 const string& containing_type, [all...] |
/external/protobuf/src/google/protobuf/ |
descriptor_database.h | 82 // otherwise returns false and leaves *output undefined. containing_type 84 virtual bool FindFileContainingExtension(const string& containing_type, 147 bool FindFileContainingExtension(const string& containing_type, 174 Value FindExtension(const string& containing_type, int field_number); 175 bool FindAllExtensionNumbers(const string& containing_type, 292 bool FindFileContainingExtension(const string& containing_type, 321 bool FindFileContainingExtension(const string& containing_type, 350 bool FindFileContainingExtension(const string& containing_type,
|
descriptor_database.cc | 190 const string& containing_type, 193 make_pair(containing_type, field_number), 199 const string& containing_type, 202 by_extension_.lower_bound(make_pair(containing_type, 0)); 205 for (; it != by_extension_.end() && it->first.first == containing_type; 280 const string& containing_type, 283 return MaybeCopy(index_.FindExtension(containing_type, field_number), output); 370 const string& containing_type, 373 return MaybeParse(index_.FindExtension(containing_type, field_number), 417 const string& containing_type, [all...] |
extension_set_heavy.cc | 56 const Descriptor* containing_type) 57 : pool_(pool), factory_(factory), containing_type_(containing_type) {} 68 void ExtensionSet::AppendToList(const Descriptor* containing_type, 88 containing_type, iter->first)); 206 const Message* containing_type, 210 GeneratedExtensionFinder finder(containing_type); 215 containing_type->GetDescriptor()); 221 const Message* containing_type, 225 GeneratedExtensionFinder finder(containing_type); 230 containing_type->GetDescriptor()) [all...] |
/external/protobuf/python/google/protobuf/ |
descriptor.py | 34 # containing_type on it. Alternatively, we could just get 35 # rid of containing_type (iit's not needed for reflection.py, at least). 100 file, containing_type, serialized_start=None, 114 containing_type: if provided, this is a nested descriptor, with this 129 self.containing_type = containing_type 137 while desc.containing_type is not None: 138 desc = desc.containing_type 170 containing_type: (Descriptor) Reference to the descriptor of the 210 def __init__(self, name, full_name, filename, containing_type, fields [all...] |
/external/protobuf/python/google/protobuf/internal/ |
generator_test.py | 120 self.assertEqual(unittest_pb2.optional_int32_extension.containing_type, 122 self.assertEqual(unittest_pb2.TestRequired.single.containing_type, 157 unittest_pb2.TestEmptyMessage.DESCRIPTOR.containing_type is None) 159 unittest_pb2.TestAllTypes.DESCRIPTOR.containing_type is None) 161 unittest_pb2.TestAllTypes.NestedMessage.DESCRIPTOR.containing_type, 164 unittest_pb2.TestAllTypes.NestedMessage.DESCRIPTOR.containing_type, 167 unittest_pb2.TestAllTypes.RepeatedGroup.DESCRIPTOR.containing_type, 171 self.assertTrue(unittest_pb2._FOREIGNENUM.containing_type is None) 172 self.assertEqual(unittest_pb2._TESTALLTYPES_NESTEDENUM.containing_type,
|
descriptor_test.py | 72 containing_type=None, 80 message_type=None, enum_type=None, containing_type=None, 108 self.assertEqual(self.my_message, self.my_message.fields[0].containing_type) 109 self.assertEqual(self.my_message, self.my_enum.containing_type)
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/ |
descriptor.py | 116 file, containing_type, serialized_start=None, 130 containing_type: if provided, this is a nested descriptor, with this 145 self.containing_type = containing_type 153 while desc.containing_type is not None: 154 desc = desc.containing_type 186 containing_type: (Descriptor) Reference to the descriptor of the 226 def __init__(self, name, full_name, filename, containing_type, fields, 238 containing_type, serialized_start=serialized_start, 248 field.containing_type = sel [all...] |
descriptor_pool.py | 276 containing_type=None, 288 nested.containing_type = desc 290 enum.containing_type = desc 297 containing_type=None, scope=None): 304 containing_type: The type containing this enum. 328 containing_type=containing_type, 369 containing_type=None,
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_enum.cc | 71 vars["prefix"] = (descriptor_->containing_type() == NULL) ? 181 if (descriptor_->containing_type() == NULL) { 185 vars["parent"] = ClassName(descriptor_->containing_type(), false); 232 if (descriptor_->containing_type() != NULL) { 239 vars["parent"] = ClassName(descriptor_->containing_type(), false);
|
cpp_helpers.cc | 136 while (outer->containing_type() != NULL) outer = outer->containing_type(); 149 if (enum_descriptor->containing_type() == NULL) { 156 string result = ClassName(enum_descriptor->containing_type(), qualified); 183 field->containing_type()->FindFieldByCamelcaseName(
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_enum.cc | 71 vars["prefix"] = (descriptor_->containing_type() == NULL) ? 181 if (descriptor_->containing_type() == NULL) { 185 vars["parent"] = ClassName(descriptor_->containing_type(), false); 232 if (descriptor_->containing_type() != NULL) { 239 vars["parent"] = ClassName(descriptor_->containing_type(), false);
|
cpp_helpers.cc | 120 while (outer->containing_type() != NULL) outer = outer->containing_type(); 133 if (enum_descriptor->containing_type() == NULL) { 140 string result = ClassName(enum_descriptor->containing_type(), qualified); 167 field->containing_type()->FindFieldByCamelcaseName(
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/ |
generator_test.py | 124 self.assertEqual(unittest_pb2.optional_int32_extension.containing_type, 126 self.assertEqual(unittest_pb2.TestRequired.single.containing_type, 168 unittest_pb2.TestEmptyMessage.DESCRIPTOR.containing_type is None) 170 unittest_pb2.TestAllTypes.DESCRIPTOR.containing_type is None) 172 unittest_pb2.TestAllTypes.NestedMessage.DESCRIPTOR.containing_type, 175 unittest_pb2.TestAllTypes.NestedMessage.DESCRIPTOR.containing_type, 178 unittest_pb2.TestAllTypes.RepeatedGroup.DESCRIPTOR.containing_type, 182 self.assertTrue(unittest_pb2._FOREIGNENUM.containing_type is None) 183 self.assertEqual(unittest_pb2._TESTALLTYPES_NESTEDENUM.containing_type,
|
descriptor_pool_test.py | 110 self.assertEquals(None, msg1.containing_type) 114 self.assertEquals(msg1, nested_msg1.containing_type) 118 self.assertEquals(msg1, nested_enum1.containing_type) 131 self.assertIsNone(msg2.containing_type) 135 self.assertEquals(msg2, nested_msg2.containing_type) 139 self.assertEquals(msg2, nested_enum2.containing_type)
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/ |
java_message_field.cc | 73 HasDescriptorMethods(descriptor->containing_type()) ? "onChanged();" : ""; 139 if (HasNestedBuilders(descriptor_->containing_type())) { 161 if (HasNestedBuilders(descriptor_->containing_type())) { 174 if (HasNestedBuilders(descriptor_->containing_type())) { 216 if (HasNestedBuilders(descriptor_->containing_type())) { 308 if (HasNestedBuilders(descriptor_->containing_type())) { 490 if (HasNestedBuilders(descriptor_->containing_type())) { 540 if (HasNestedBuilders(descriptor_->containing_type())) { 600 if (HasNestedBuilders(descriptor_->containing_type())) { 773 if (HasNestedBuilders(descriptor_->containing_type())) { [all...] |
java_enum.cc | 180 if (descriptor_->containing_type() == NULL) { 188 "parent", ClassName(descriptor_->containing_type()),
|
java_enum_field.cc | 75 HasDescriptorMethods(descriptor->containing_type()) ? "onChanged();" : ""; 227 if (HasUnknownFields(descriptor_->containing_type())) { 337 HasGeneratedMethods(descriptor_->containing_type())) { 481 if (HasUnknownFields(descriptor_->containing_type())) {
|
/external/protobuf/src/google/protobuf/compiler/java/ |
java_enum_field.cc | 136 if (HasUnknownFields(descriptor_->containing_type())) { 195 HasGeneratedMethods(descriptor_->containing_type())) { 279 if (HasUnknownFields(descriptor_->containing_type())) {
|
java_enum.cc | 166 if (descriptor_->containing_type() == NULL) { 174 "parent", ClassName(descriptor_->containing_type()),
|
java_extension.cc | 92 vars["containing_type"] = ClassName(descriptor_->containing_type()); 117 " $containing_type$,\n" 125 " $containing_type$,\n" 137 vars["extendee"] = ClassName(descriptor_->containing_type());
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/python/ |
python_generator.h | 104 void FixForeignFieldsInField(const Descriptor* containing_type, 108 string FieldReferencingExpression(const Descriptor* containing_type,
|
/external/protobuf/src/google/protobuf/compiler/python/ |
python_generator.h | 104 void FixForeignFieldsInField(const Descriptor* containing_type, 107 string FieldReferencingExpression(const Descriptor* containing_type,
|
/external/protobuf/src/google/protobuf/compiler/javanano/ |
javanano_extension.cc | 51 (*variables)["extends"] = ClassName(params, descriptor->containing_type());
|