HomeSort by relevance Sort by last modified time
    Searched defs:Descriptor (Results 1 - 24 of 24) sorted by null

  /external/llvm/lib/DebugInfo/
DWARFDebugArangeSet.h 34 // The size in bytes of a segment descriptor on the target architecture.
39 struct Descriptor {
46 typedef std::vector<Descriptor> DescriptorColl;
66 const Descriptor *getDescriptor(uint32_t i) const {
  /external/javassist/src/main/javassist/compiler/
AccessorMaker.java 47 consDesc = Descriptor.appendParameter(lastParamType, desc);
60 CtClass[] params = Descriptor.getParameterTypes(desc, pool);
88 * @param desc the descriptor of the private method.
89 * @param accDesc the descriptor of the accessor method. The first
119 CtClass[] params = Descriptor.getParameterTypes(accDesc, pool);
131 code.addReturn(Descriptor.getReturnType(desc, pool));
168 accDesc = "(" + Descriptor.of(clazz) + ")" + fieldType;
183 code.addReturn(Descriptor.toCtClass(fieldType, pool));
219 accDesc = "(" + Descriptor.of(clazz) + fieldType + ")V";
227 reg = code.addLoad(0, Descriptor.toCtClass(fieldType, pool))
    [all...]
JvstCodeGen.java 89 bytecode.addLdc(Descriptor.ofMethod(returnType, paramTypeList));
100 bytecode.addLdc(Descriptor.of(dollarType));
396 String methodname, String descriptor,
404 bytecode.addInvokespecial(classname, methodname, descriptor);
405 setReturnType(descriptor, false, false);
569 * @param typeDesc the type descriptor of the variable
628 Descriptor.ofMethod(CtClass.voidType, args));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UnwrapRefactoring.java 59 * This constructor is solely used by {@link Descriptor},
153 return new Descriptor(
227 public static class Descriptor extends VisualRefactoringDescriptor {
228 public Descriptor(String project, String description, String comment,
ChangeViewRefactoring.java 68 * This constructor is solely used by {@link Descriptor},
125 return new Descriptor(
215 ViewElementDescriptor descriptor = getElementDescriptor(mTypeFqcn); local
216 if (descriptor == null) {
221 AttributeDescriptor[] layoutAttributes = descriptor.getAttributes();
238 ATTR_TEXT, descriptor.getUiName());
276 public static class Descriptor extends VisualRefactoringDescriptor {
277 public Descriptor(String project, String description, String comment,
WrapInRefactoring.java 75 * This constructor is solely used by {@link Descriptor},
141 return new Descriptor(
420 public static class Descriptor extends VisualRefactoringDescriptor {
421 public Descriptor(String project, String description, String comment,
ExtractStyleRefactoring.java 127 * This constructor is solely used by {@link Descriptor},
180 return new Descriptor(
501 public static class Descriptor extends VisualRefactoringDescriptor {
502 public Descriptor(String project, String description, String comment,
ChangeLayoutRefactoring.java 97 * This constructor is solely used by {@link Descriptor},
146 return new Descriptor(
510 ViewElementDescriptor descriptor = getElementDescriptor(mTypeFqcn); local
511 if (descriptor == null) {
517 AttributeDescriptor[] layoutAttributes = descriptor.getLayoutAttributes();
553 AttributeDescriptor[] attributes = descriptor.getAttributes();
612 public static class Descriptor extends VisualRefactoringDescriptor {
613 public Descriptor(String project, String description, String comment,
  /external/protobuf/python/google/protobuf/
descriptor.py 32 # descriptor types. When a FieldDescriptor is passed into
33 # Descriptor.__init__(), we should make a deep copy and then set
56 This class is the base of all descriptor classes. It provides common options
60 has_options: True if the descriptor has non-default options. Usually it
68 """Initialize the descriptor given its options message and the name of the
75 # Does this descriptor have non-default options?
79 """Retrieves descriptor options.
82 descriptor.
114 containing_type: if provided, this is a nested descriptor, with this
115 descriptor as parent, otherwise None
    [all...]
  /external/v8/src/
property.h 35 // Abstraction for elements in instance-descriptor arrays.
37 // Each descriptor has a key, property attributes, property type,
38 // property index (in the actual instance-descriptor array) and
42 class Descriptor BASE_EMBEDDED {
78 Descriptor() : details_(Smi::FromInt(0)) {}
86 Descriptor(String* key, Object* value, PropertyDetails details)
91 Descriptor(String* key,
107 class MapTransitionDescriptor: public Descriptor {
110 : Descriptor(key, map, attributes, MAP_TRANSITION) { }
113 class ExternalArrayTransitionDescriptor: public Descriptor {
    [all...]
  /external/javassist/src/main/javassist/bytecode/
Descriptor.java 29 public class Descriptor {
66 * Converts to a Java class name from a descriptor.
68 * @param descriptor type descriptor.
70 public static String toClassName(String descriptor) {
73 char c = descriptor.charAt(0);
76 c = descriptor.charAt(++i);
81 int i2 = descriptor.indexOf(';', i++);
82 name = descriptor.substring(i, i2).replace('/', '.');
104 throw new RuntimeException("bad descriptor: " + descriptor)
    [all...]
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...]
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...]
  /external/v8/tools/
ll_prof.py 456 class Descriptor(object):
457 """Descriptor of a structure in the binary trace log."""
467 _fields_ = Descriptor.CtypesFields(fields)
480 return [(field, Descriptor.CTYPE_MAP[format]) for (field, format) in fields]
487 TRACE_HEADER_DESC = Descriptor([
500 PERF_EVENT_ATTR_DESC = Descriptor([
515 PERF_EVENT_HEADER_DESC = Descriptor([
522 PERF_MMAP_EVENT_BODY_DESC = Descriptor([
596 self.ip_struct = Descriptor.CTYPE_MAP[PERF_SAMPLE_EVENT_IP_FORMAT]
639 return Descriptor(fields
    [all...]
grokdump.py 63 class Descriptor(object):
64 """Descriptor of a structure in a memory."""
74 self.ctype = Descriptor._GetCtype(fields)
83 partial_ctype = Descriptor._GetCtype(fields_copy[:last])
91 complete_ctype = Descriptor._GetCtype(fields_copy[:last])
111 MINIDUMP_HEADER = Descriptor([
121 MINIDUMP_LOCATION_DESCRIPTOR = Descriptor([
126 MINIDUMP_DIRECTORY = Descriptor([
133 MINIDUMP_EXCEPTION = Descriptor([
143 MINIDUMP_EXCEPTION_STREAM = Descriptor([
    [all...]
  /external/javassist/src/main/javassist/
CtField.java 60 this(Descriptor.of(type), name, declaring);
323 * called a field descriptor, which is defined in the JVM specification.
329 * a descriptor. To obtain a type signature, call the following
335 * @see javassist.bytecode.Descriptor
346 return Descriptor.toCtClass(fieldInfo.getDescriptor(),
355 fieldInfo.setDescriptor(Descriptor.of(clazz));
836 code.addPutfield(Bytecode.THIS, name, Descriptor.of(type));
849 code.addPutstatic(Bytecode.THIS, name, Descriptor.of(type));
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor.h 36 // You can use a message's descriptor to learn at runtime what fields
66 class Descriptor;
76 // Defined in descriptor.proto
96 // Defined in descriptor.cc
104 // message. To obtain the Descriptor for a given message object, call
106 // static method called descriptor() which returns the type's descriptor.
108 class LIBPROTOBUF_EXPORT Descriptor {
120 // Index of this descriptor within the file or containing type's message
127 // If this Descriptor describes a nested type, this returns the typ
    [all...]
  /frameworks/base/media/java/android/media/audiofx/
AudioEffect.java 199 * The effect descriptor contains information on a particular effect implemented in the
212 public static class Descriptor {
214 public Descriptor() {
217 public Descriptor(String type, String uuid, String connectMode,
298 * Effect descriptor
300 private Descriptor mDescriptor;
371 Descriptor[] desc = new Descriptor[1];
417 * Get the effect descriptor.
419 * @see android.media.audiofx.AudioEffect.Descriptor
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
Descriptors.java 45 * Every message type has a {@link Descriptor}, which lists all
47 * type's descriptor by calling {@code MessageType.getDescriptor()}, or
51 * {@code google/protobuf/descriptor.proto}.
60 /** Convert the descriptor to its protocol message representation. */
73 /** Get the {@code FileOptions}, defined in {@code descriptor.proto}. */
77 public List<Descriptor> getMessageTypes() {
105 * @return The message type's descriptor, or {@code null} if not found.
107 public Descriptor findMessageTypeByName(String name) {
117 if (result != null && result instanceof Descriptor &&
119 return (Descriptor)result
1788 private final GenericDescriptor descriptor; field in class:Descriptors.DescriptorPool.DescriptorIntPair
    [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 712 milliseconds