/external/javassist/src/main/javassist/ |
CtBehavior.java | 285 return Descriptor.getParameterTypes(methodInfo.getDescriptor(), 293 return Descriptor.getReturnType(methodInfo.getDescriptor(), 301 * called method descriptor, which is defined in the JVM specification. 309 * a descriptor. To obtain a type signature, call the following 315 * @see javassist.bytecode.Descriptor 559 String desc = Descriptor.of(type); 562 ca.setMaxLocals(maxLocals + Descriptor.dataSize(desc)); 573 String desc2 = Descriptor.insertParameter(type, desc); 592 String desc2 = Descriptor.appendParameter(type, desc); 595 addParameter2(offset + Descriptor.paramSize(desc), type, desc) [all...] |
ClassPool.java | 33 import javassist.bytecode.Descriptor; 483 * that classname can be an array-type "descriptor" (an encoded 491 * type, it returns a descriptor. 493 * @param classname a fully-qualified class name or a descriptor 497 * @see javassist.bytecode.Descriptor#toCtClass(String, ClassPool) 502 return Descriptor.toCtClass(classname, this); 553 classname = Descriptor.toClassName(classname); [all...] |
/external/protobuf/src/google/protobuf/ |
repeated_field_reflection_unittest.cc | 66 const Descriptor* desc = message.GetDescriptor(); 165 const Descriptor* desc = extended_message.GetDescriptor(); 208 const Descriptor* desc = message.GetDescriptor(); 430 const Descriptor* desc = message.GetDescriptor(); 522 const Descriptor* desc = extended_message.GetDescriptor(); 572 const Descriptor* desc = m0.GetDescriptor(); 687 const Descriptor* desc = TestAllTypes::descriptor();
|
duration.pb.h | 56 static const ::google::protobuf::Descriptor* descriptor();
|
empty.pb.h | 60 static const ::google::protobuf::Descriptor* descriptor();
|
no_field_presence_test.cc | 35 #include <google/protobuf/descriptor.pb.h> 36 #include <google/protobuf/descriptor.h> 284 const google::protobuf::Descriptor* desc = message.GetDescriptor(); 348 const google::protobuf::Descriptor* desc = message.GetDescriptor(); 389 const google::protobuf::Descriptor* desc = message.GetDescriptor(); 502 const google::protobuf::Descriptor* desc = message.GetDescriptor();
|
timestamp.pb.h | 60 static const ::google::protobuf::Descriptor* descriptor();
|
/external/v8/src/x87/ |
macro-assembler-x87.h | [all...] |
/device/linaro/bootloader/edk2/ArmPkg/Library/UncachedMemoryAllocationLib/ |
UncachedMemoryAllocationLib.c | 92 EFI_GCD_MEMORY_SPACE_DESCRIPTOR Descriptor;
155 Status = gDS->GetMemorySpaceDescriptor (Memory, &Descriptor);
158 gAttributes = Descriptor.Attributes;
|
/external/protobuf/src/google/protobuf/compiler/java/ |
java_message_builder.cc | 55 #include <google/protobuf/descriptor.pb.h> 66 bool GenerateHasBits(const Descriptor* descriptor) { 67 return SupportFieldPresence(descriptor->file()) || 68 HasRepeatedFields(descriptor); 71 string MapValueImmutableClassdName(const Descriptor* descriptor, 73 const FieldDescriptor* value_field = descriptor->FindFieldByName("value"); 80 const Descriptor* descriptor, Context* context [all...] |
java_doc_comment.cc | 142 io::Printer* printer, const DescriptorType* descriptor) { 144 if (descriptor->GetSourceLocation(&location)) { 165 void WriteMessageDocComment(io::Printer* printer, const Descriptor* message) {
|
/external/protobuf/src/google/protobuf/compiler/javanano/ |
javanano_helpers.cc | 40 #include <google/protobuf/descriptor.pb.h> 234 const Descriptor* parent, const FileDescriptor* file) { 248 string ClassName(const Params& params, const FileDescriptor* descriptor) { 249 string result = FileJavaPackage(params, descriptor); 251 result += FileClassName(params, descriptor); 255 string ClassName(const Params& params, const EnumDescriptor* descriptor) { 256 const Descriptor* parent = descriptor->containing_type(); 260 return ToJavaName(params, descriptor->name(), true, parent, 261 descriptor->file()) [all...] |
javanano_field.cc | 76 const Descriptor* descriptor, const Params ¶ms) 77 : descriptor_(descriptor), 79 new scoped_ptr<FieldGenerator>[descriptor->field_count()]) { 84 for (int i = 0; i < descriptor->field_count(); i++) { 86 descriptor->field(i), params, &next_has_bit_index); 153 void SetCommonOneofVariables(const FieldDescriptor* descriptor, 156 UnderscoresToCamelCase(descriptor->containing_oneof()); 158 UnderscoresToCapitalizedCamelCase(descriptor->containing_oneof()); 160 SimpleItoa(descriptor->containing_oneof()->index()) [all...] |
/external/protobuf/src/google/protobuf/util/ |
field_mask_util.cc | 131 bool FieldMaskUtil::InternalIsValidPath(const Descriptor* descriptor, 136 if (descriptor == NULL) { 139 const FieldDescriptor* field = descriptor->FindFieldByName(field_name); 145 descriptor = field->message_type(); 147 descriptor = NULL; 154 const Descriptor* descriptor, FieldMask* out) { 155 for (int i = 0; i < descriptor->field_count(); ++i) { 156 out->add_paths(descriptor->field(i)->name()) 343 const Descriptor* descriptor = source.GetDescriptor(); local [all...] |
/hardware/interfaces/audio/2.0/default/ |
StreamIn.cpp | 330 _hidl_cb(result, CommandMQ::Descriptor(), DataMQ::Descriptor(), 331 StatusMQ::Descriptor(), threadInfo);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
WrapInRefactoring.java | 76 * This constructor is solely used by {@link Descriptor}, 145 return new Descriptor( 427 public static class Descriptor extends VisualRefactoringDescriptor { 428 public Descriptor(String project, String description, String comment,
|
/art/runtime/ |
primitive.h | 113 static const char* Descriptor(Type type) { 141 // Returns the descriptor corresponding to the boxed type of |type|.
|
/device/linaro/bootloader/edk2/IntelFspPkg/Library/SecFspSecPlatformLibNull/Ia32/ |
Flat32.asm | 136 ; ROM-based Global-Descriptor Table for the PEI Phase
149 ; Linear code segment descriptor
159 ; System data segment descriptor
172 ; GDT Descriptor
174 GdtDesc: ; GDT descriptor
|
/external/javassist/src/main/javassist/expr/ |
NewExpr.java | 97 * called method descriptor, which is defined in the JVM specification. 100 * @see javassist.bytecode.Descriptor 136 return Descriptor.getParameterTypes(desc, thisClass.getClassPool()); 186 CtClass[] params = Descriptor.getParameterTypes(signature, cp);
|
/external/protobuf/csharp/src/Google.Protobuf/ |
IMessage.cs | 65 /// Descriptor for this message. All instances are expected to return the same descriptor,
69 MessageDescriptor Descriptor { get; }
|
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
SentinelOuterClass.java | 125 public static final com.google.protobuf.Descriptors.Descriptor 342 public static final com.google.protobuf.Descriptors.Descriptor 391 public com.google.protobuf.Descriptors.Descriptor 733 private static final com.google.protobuf.Descriptors.Descriptor 741 return descriptor; 744 descriptor; field in class:SentinelOuterClass 759 descriptor = root;
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_extension.cc | 40 #include <google/protobuf/descriptor.pb.h> 52 string ExtendeeClassName(const FieldDescriptor* descriptor) { 53 const Descriptor* extendee = descriptor->containing_type(); 59 ExtensionGenerator::ExtensionGenerator(const FieldDescriptor* descriptor, 61 : descriptor_(descriptor),
|
cpp_field.cc | 47 #include <google/protobuf/descriptor.pb.h> 61 void SetCommonFieldVariables(const FieldDescriptor* descriptor, 64 (*variables)["name"] = FieldName(descriptor); 65 (*variables)["index"] = SimpleItoa(descriptor->index()); 66 (*variables)["number"] = SimpleItoa(descriptor->number()); 67 (*variables)["classname"] = ClassName(FieldScope(descriptor), false); 68 (*variables)["declared_type"] = DeclaredTypeMethodName(descriptor->type()); 74 StrCat("&this->", FieldName(descriptor), "()"); 77 WireFormat::TagSize(descriptor->number(), descriptor->type())) [all...] |
/external/webrtc/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/ |
WebRtcAudioUtils.java | 17 import android.media.audiofx.AudioEffect.Descriptor;
|
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/ |
duration.pb.h | 56 static const ::google::protobuf::Descriptor* descriptor();
|