/external/protobuf/python/google/protobuf/pyext/ |
map_container.h | 41 #include <google/protobuf/descriptor.h> 84 // Pointer to the parent's descriptor that describes this 128 // field descriptor. 133 // field descriptor.
|
message.h | 51 class Descriptor; 89 // Pointer to the parent's descriptor that describes this submessage. 129 // C++ descriptor of this message. 130 const Descriptor* message_descriptor; 138 // This can be different from DESCRIPTOR.file.pool, in the case of a custom 165 // Retrieves the C++ descriptor of a Python Extension descriptor. 211 // Clears the data described by the given descriptor. Used to clear extensions 219 CMessage* self, const FieldDescriptor* descriptor); 227 // Checks if the message has the field described by the descriptor. Used fo [all...] |
/external/protobuf/src/google/protobuf/compiler/java/ |
java_context.h | 48 class Descriptor; 94 bool HasGeneratedMethods(const Descriptor* descriptor) const; 98 void InitializeFieldGeneratorInfoForMessage(const Descriptor* message);
|
java_file.h | 48 class FileDescriptor; // descriptor.h 96 bool ShouldIncludeDependency(const FileDescriptor* descriptor,
|
java_map_field.h | 44 const FieldDescriptor* descriptor, int messageBitIndex,
|
java_map_field_lite.h | 44 const FieldDescriptor* descriptor, int messageBitIndex,
|
java_message_lite.h | 50 explicit ImmutableMessageLiteGenerator(const Descriptor* descriptor, 68 io::Printer* printer, const Descriptor::ExtensionRange* range);
|
java_message_lite.cc | 57 #include <google/protobuf/descriptor.pb.h> 71 bool GenerateHasBits(const Descriptor* descriptor) { 72 return SupportFieldPresence(descriptor->file()) || 73 HasRepeatedFields(descriptor); 76 string MapValueImmutableClassdName(const Descriptor* descriptor, 78 const FieldDescriptor* value_field = descriptor->FindFieldByName("value"); 86 const Descriptor* descriptor, Context* context [all...] |
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_file.cc | 44 #include <google/protobuf/descriptor.pb.h> 198 const DescriptorClass* descriptor, 202 string filename = package_dir + descriptor->name() + ".java"; 219 GeneratorClass(descriptor, params).Generate(&printer);
|
/external/protobuf/src/google/protobuf/compiler/javanano/ |
javanano_file.cc | 45 #include <google/protobuf/descriptor.pb.h> 217 const DescriptorClass* descriptor, 221 string filename = package_dir + descriptor->name() + ".java"; 237 GeneratorClass(descriptor, params).Generate(&printer);
|
javanano_message.h | 57 explicit MessageGenerator(const Descriptor* descriptor, const Params& params); 86 const Descriptor* descriptor_;
|
/external/protobuf/src/google/protobuf/compiler/objectivec/ |
objectivec_message.h | 58 const Descriptor* descriptor, 75 io::Printer* printer, const Descriptor::ExtensionRange* range); 82 const Descriptor* descriptor_;
|
/external/protobuf/src/google/protobuf/ |
map_entry.h | 68 metadata.descriptor = descriptor_; 77 const Descriptor* descriptor_; 239 // Create default MapEntry instance for given descriptor. Descriptor has to be 241 // may have the same type and MapEntry class. The given descriptor is needed 243 static MapEntry* CreateDefaultInstance(const Descriptor* descriptor) { 246 descriptor, entry, offsets_, 253 entry->descriptor_ = descriptor;
|
/external/skia/src/gpu/vk/ |
GrVkUniformBuffer.h | 50 const GrVkBuffer::Desc& descriptor) override;
|
/external/skqp/src/gpu/vk/ |
GrVkUniformBuffer.h | 50 const GrVkBuffer::Desc& descriptor) override;
|
/external/sl4a/ScriptingLayerForAndroid/jni/ |
com_googlecode_android_scripting_Exec.cpp | 117 jfieldID descriptor = env->GetFieldID(Class_java_io_FileDescriptor, "descriptor", "I"); local 118 return env->GetIntField(fileDescriptor, descriptor); 173 jfieldID descriptor = env->GetFieldID(Class_java_io_FileDescriptor, "descriptor", "I"); local 174 env->SetIntField(result, descriptor, ptm);
|
/external/v8/src/compiler/ |
compilation-dependencies.h | 56 void DependOnFieldType(const MapRef& map, int descriptor);
|
compilation-dependencies.cc | 151 FieldTypeDependency(const MapRef& owner, int descriptor, 153 : owner_(owner), descriptor_(descriptor), type_(type) { 330 int descriptor) { 331 MapRef owner = map.FindFieldOwner(descriptor); 332 ObjectRef type = owner.GetFieldType(descriptor); 333 DCHECK(type.equals(map.GetFieldType(descriptor))); 335 FieldTypeDependency(owner, descriptor, type));
|
/frameworks/av/media/libaaudio/src/binding/ |
RingBufferParcelable.h | 67 aaudio_result_t resolve(SharedMemoryParcelable *memoryParcels, RingBufferDescriptor *descriptor);
|
/external/libtextclassifier/lang_id/common/fel/ |
feature-extractor.h | 28 // descriptor represented by a protocol buffer. The feature extractor can also 118 // extractor. This holds the descriptor for the feature extractor and the 131 // Returns the feature extractor descriptor. 132 const FeatureExtractorDescriptor &descriptor() const { return descriptor_; } function in class:libtextclassifier3::mobile::GenericFeatureExtractor 156 // Descriptor for the feature extractor. This is a protocol buffer that 158 // functions are initialized from the information in the descriptor. 168 // function. Each feature function is associated with the descriptor that it is 208 // Returns value of parameter |name| from the feature function descriptor. 212 // Returns value of int parameter |name| from feature function descriptor. 217 // Returns value of bool parameter |name| from feature function descriptor 244 const FeatureFunctionDescriptor *descriptor() const { return descriptor_; } function in class:libtextclassifier3::mobile::GenericFeatureFunction [all...] |
/external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/decoder/ |
SkiaPooledImageRegionDecoder.java | 182 AssetFileDescriptor descriptor = context.getResources().openRawResourceFd(id); local 183 fileLength = descriptor.getLength(); 191 AssetFileDescriptor descriptor = context.getAssets().openFd(assetName); local 192 fileLength = descriptor.getLength(); 214 AssetFileDescriptor descriptor = contentResolver.openAssetFileDescriptor(uri, "r"); local 215 if (descriptor != null) { 216 fileLength = descriptor.getLength();
|
/external/protobuf/src/google/protobuf/compiler/ |
parser.h | 43 #include <google/protobuf/descriptor.h> 44 #include <google/protobuf/descriptor.pb.h> 207 // descriptor.proto). We use RAII to ensure that the start and end locations 230 // descriptor.proto. 250 void RecordLegacyLocation(const Message* descriptor, 521 // the next element (See SourceCodeInfo.Location in descriptor.proto), when 528 // A table mapping (descriptor, ErrorLocation) pairs -- as reported by 546 bool Find(const Message* descriptor, 551 void Add(const Message* descriptor,
|
/external/icu/icu4c/source/i18n/ |
nfrule.cpp | 117 // (this also strips the rule descriptor, if any, off the 238 * This function parses the rule's rule descriptor (i.e., the base 241 * exponent according to the descriptor. (If the description doesn't 242 * include a rule descriptor, then this function sets everything to 245 * @return If "description" included a rule descriptor, this is 246 * "description" with the descriptor and any trailing whitespace 247 * stripped off. Otherwise; it's "descriptor" unchangd. 252 // the description consists of a rule descriptor and a rule body, 253 // separated by a colon. The rule descriptor is optional. If 257 // copy the descriptor out into its own string and strip it [all...] |
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
TextFormatTest.java | 33 import com.google.protobuf.Descriptors.Descriptor; 1042 Descriptor descriptor = TestAllTypes.getDescriptor(); local [all...] |
WireFormatTest.java | 275 Descriptors.Descriptor descriptor = TestFieldOrderings.getDescriptor(); local 278 .setField(descriptor.findFieldByName("my_int"), 1L) 279 .setField(descriptor.findFieldByName("my_string"), "foo") 280 .setField(descriptor.findFieldByName("my_float"), 1.0F) 313 Descriptors.Descriptor descriptor = TestFieldOrderings.getDescriptor(); local 316 .setField(descriptor.findFieldByName("my_int"), 1L) 317 .setField(descriptor.findFieldByName("my_string"), "foo") 318 .setField(descriptor.findFieldByName("my_float"), 1.0F [all...] |