HomeSort by relevance Sort by last modified time
    Searched refs:Descriptor (Results 101 - 125 of 340) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/
command_line_interface.h 52 class Descriptor; // descriptor.h
53 class DescriptorPool; // descriptor.h
54 class FileDescriptor; // descriptor.h
55 class FileDescriptorProto; // descriptor.pb.h
148 // descriptor.proto). This is piped to the plugin's stdin. The set will
289 void PrintFreeFieldNumbers(const Descriptor* descriptor);
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/util/
field_mask_util.h 36 #include <google/protobuf/descriptor.h>
63 return InternalIsValidPath(T::descriptor(), path);
70 if (!InternalIsValidPath(T::descriptor(), mask.paths(i))) return false;
87 InternalGetFieldMaskForAllFields(T::descriptor(), out);
144 static bool InternalIsValidPath(const Descriptor* descriptor,
147 static void InternalGetFieldMaskForAllFields(const Descriptor* descriptor,
  /external/javassist/src/main/javassist/bytecode/
ClassFile.java 407 oldname = Descriptor.toJvmName(oldname);
408 newname = Descriptor.toJvmName(newname);
417 minfo.setDescriptor(Descriptor.rename(desc, oldname, newname));
426 finfo.setDescriptor(Descriptor.rename(desc, oldname, newname));
441 String jvmNewThisName = (String)classnames.get(Descriptor
444 thisclassname = Descriptor.toJavaName(jvmNewThisName);
454 minfo.setDescriptor(Descriptor.rename(desc, classnames));
463 finfo.setDescriptor(Descriptor.rename(desc, classnames));
481 Descriptor.rename(desc, classnames);
490 Descriptor.rename(desc, classnames)
660 String descriptor = newMinfo.getDescriptor(); local
    [all...]
CodeAnalyzer.java 231 stack += Descriptor.dataSize(desc) - 1;
235 stack += Descriptor.dataSize(desc);
240 stack += Descriptor.dataSize(desc) - 1;
260 return Descriptor.dataSize(desc);
  /external/protobuf/src/google/protobuf/compiler/java/
java_helpers.cc 42 #include <google/protobuf/descriptor.pb.h>
151 string UniqueFileScopeIdentifier(const Descriptor* descriptor) {
152 return "static_" + StringReplace(descriptor->full_name(), ".", "_", true);
214 string ClassName(const Descriptor* descriptor) {
216 return name_resolver.GetClassName(descriptor, true);
219 string ClassName(const EnumDescriptor* descriptor) {
221 return name_resolver.GetClassName(descriptor, true);
224 string ClassName(const ServiceDescriptor* descriptor) {
    [all...]
java_generator_factory.cc 59 const Descriptor* descriptor) const {
60 return new ImmutableMessageGenerator(descriptor, context_);
64 const FieldDescriptor* descriptor) const {
65 return new ImmutableExtensionGenerator(descriptor, context_);
69 const ServiceDescriptor* descriptor) const {
70 return new ImmutableServiceGenerator(descriptor, context_);
  /external/javassist/src/main/javassist/
SerialVersionUID.java 204 return Descriptor.toJavaName(Descriptor.toJvmName(clazz));
208 return Descriptor.toJavaName(Descriptor.toJvmName(name));
  /external/javassist/src/main/javassist/bytecode/annotation/
Annotation.java 19 import javassist.bytecode.Descriptor;
86 this(cp.addUtf8Info(Descriptor.of(typeName)), cp);
102 this(cp.addUtf8Info(Descriptor.of(clazz.getName())), cp);
238 return Descriptor.toClassName(pool.getUtf8Info(typeIndex));
  /external/libunwind_llvm/src/
Unwind-EHABI.cpp 49 struct Descriptor {
52 SU16 = 0, // Short descriptor, 16-bit entries
53 LU16 = 1, // Long descriptor, 16-bit entries
54 LU32 = 3, // Long descriptor, 32-bit entries
73 Descriptor::Format format,
85 const char* descriptor = descriptorStart; local
87 getNextWord(descriptor, &descriptorWord);
89 // Read descriptor based on # 9.2.
93 case Descriptor::LU32:
94 descriptor = getNextWord(descriptor, &length)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
BaseDescriptor.java 38 @Descriptor(tags = 0x00)
DecoderSpecificInfo.java 32 @Descriptor(tags = 0x05)
ExtensionDescriptor.java 32 @Descriptor(tags = {0x13, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253})
SLConfigDescriptor.java 59 @Descriptor(tags = {0x06})
  /external/protobuf/src/google/protobuf/
service.h 115 class Descriptor; // descriptor.h
116 class ServiceDescriptor; // descriptor.h
117 class MethodDescriptor; // descriptor.h
dynamic_message.cc 53 // each type it sees (each unique Descriptor pointer). The code
71 #include <google/protobuf/descriptor.h>
72 #include <google/protobuf/descriptor.pb.h>
209 const Descriptor* type; // Type of this DynamicMessage.
281 const Descriptor* descriptor = type_info_->type; local
284 for (int i = 0 ; i < descriptor->oneof_decl_count(); ++i) {
295 for (int i = 0; i < descriptor->field_count(); i++) {
296 const FieldDescriptor* field = descriptor->field(i);
362 const Descriptor* descriptor = type_info_->type local
466 const Descriptor* descriptor = type_info_->type; local
    [all...]
  /external/skia/src/effects/gradients/
SkGradientShaderPriv.h 85 struct Descriptor {
86 Descriptor() {
101 class DescriptorScope : public Descriptor {
123 SkGradientShaderBase(const Descriptor& desc, const SkMatrix& ptsToUnit);
SkLinearGradient.h 34 SkLinearGradient(const SkPoint pts[2], const Descriptor&);
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
Unwind-EHABI.cpp 50 struct Descriptor {
53 SU16 = 0, // Short descriptor, 16-bit entries
54 LU16 = 1, // Long descriptor, 16-bit entries
55 LU32 = 3, // Long descriptor, 32-bit entries
74 Descriptor::Format format,
86 const char* descriptor = descriptorStart; local
88 getNextWord(descriptor, &descriptorWord);
90 // Read descriptor based on # 9.2.
94 case Descriptor::LU32:
95 descriptor = getNextWord(descriptor, &length)
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
service.h 115 class Descriptor; // descriptor.h
116 class ServiceDescriptor; // descriptor.h
117 class MethodDescriptor; // descriptor.h
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
service.h 115 class Descriptor; // descriptor.h
116 class ServiceDescriptor; // descriptor.h
117 class MethodDescriptor; // descriptor.h
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
service.h 115 class Descriptor; // descriptor.h
116 class ServiceDescriptor; // descriptor.h
117 class MethodDescriptor; // descriptor.h
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
service.h 116 class Descriptor; // descriptor.h
117 class ServiceDescriptor; // descriptor.h
118 class MethodDescriptor; // descriptor.h
generated_message_reflection.h 104 // descriptor: The descriptor for the message type being implemented.
117 // descriptor->field_count()/32, rounded up. This is a
133 GeneratedMessageReflection(const Descriptor* descriptor,
159 // union is offsets[descriptor->field_count() + i].
166 // size descriptor->oneof_decl_count(). Each uint32
169 GeneratedMessageReflection(const Descriptor* descriptor,
189 const Descriptor* descriptor
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
service.h 115 class Descriptor; // descriptor.h
116 class ServiceDescriptor; // descriptor.h
117 class MethodDescriptor; // descriptor.h
  /system/connectivity/shill/test-scripts/
crypto_util_pb2.py 19 from google.protobuf import descriptor
26 DESCRIPTOR = descriptor.FileDescriptor(
31 _RETURNCODE = descriptor.EnumDescriptor(
35 file=DESCRIPTOR,
37 descriptor.EnumValueDescriptor(
41 descriptor.EnumValueDescriptor(
45 descriptor.EnumValueDescriptor(
49 descriptor.EnumValueDescriptor(
53 descriptor.EnumValueDescriptor
    [all...]

Completed in 986 milliseconds

1 2 3 45 6 7 8 91011>>