/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/ |
CodeAnalyzer.java | 231 stack += Descriptor.dataSize(desc) - 1; 235 stack += Descriptor.dataSize(desc); 240 stack += Descriptor.dataSize(desc) - 1; 260 return Descriptor.dataSize(desc);
|
Bytecode.java | 842 * @param type the descriptor of the field type. 844 * @see Descriptor#of(CtClass) 850 growStack(Descriptor.dataSize(type) - 1); 858 * @param type the descriptor of the field type. 860 * @see Descriptor#of(CtClass) 866 growStack(Descriptor.dataSize(type) - 1); 874 * @param type the descriptor of the field type. 876 * @see Descriptor#of(CtClass) 882 growStack(Descriptor.dataSize(type)); 890 * @param type the descriptor of the field type [all...] |
/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...] |
descriptor.cc | 43 #include <google/protobuf/descriptor.h> 45 #include <google/protobuf/descriptor.pb.h> 218 typedef pair<const Descriptor*, int> DescriptorIntPair; 251 const Descriptor* descriptor; member in union:google::protobuf::__anon22447::Symbol::__anon22448 261 inline Symbol() : type(NULL_SYMBOL) { descriptor = NULL; } 277 CONSTRUCTOR(Descriptor , MESSAGE , descriptor ) 290 case MESSAGE : return descriptor ->file(); 324 // through all the extensions that extend a given Descriptor, and a 4778 const Descriptor* descriptor = options_descriptor; local 5210 const Descriptor* descriptor = message->GetDescriptor(); 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 namespace 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...] |
/external/jetty/src/java/org/eclipse/jetty/webapp/ |
MetaData.java | 72 protected Descriptor descriptor; field in class:MetaData.OriginInfo 74 public OriginInfo (String n, Descriptor d) 77 descriptor = d; 79 throw new IllegalArgumentException("No descriptor"); 112 public Descriptor getDescriptor() 114 return descriptor; 242 FragmentDescriptor descriptor = new FragmentDescriptor(xmlResource); 243 _webFragmentResourceMap.put(jarResource, descriptor); 244 _webFragmentRoots.add(descriptor); 256 _webFragmentNameMap.put(descriptor.getName(), descriptor); local [all...] |