HomeSort by relevance Sort by last modified time
    Searched defs:Descriptor (Results 26 - 50 of 91) sorted by null

12 3 4

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleRefactoring.java 131 * This constructor is solely used by {@link Descriptor},
190 return new Descriptor(
513 public static class Descriptor extends VisualRefactoringDescriptor {
514 public Descriptor(String project, String description, String comment,
ChangeLayoutRefactoring.java 98 * This constructor is solely used by {@link Descriptor},
150 return new Descriptor(
517 ViewElementDescriptor descriptor = getElementDescriptor(mTypeFqcn); local
518 if (descriptor == null) {
524 AttributeDescriptor[] layoutAttributes = descriptor.getLayoutAttributes();
560 AttributeDescriptor[] attributes = descriptor.getAttributes();
619 public static class Descriptor extends VisualRefactoringDescriptor {
620 public Descriptor(String project, String description, String comment,
  /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/javassist/src/main/javassist/bytecode/
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/pdfium/third_party/lcms2-2.6/include/
lcms2_plugin.h 441 cmsTagDescriptor Descriptor;
  /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);
  /frameworks/base/media/java/android/media/audiofx/
AudioEffect.java 199 * The effect descriptor contains information on a particular effect implemented in the
216 public static class Descriptor {
218 public Descriptor() {
234 public Descriptor(String type, String uuid, String connectMode,
322 * Effect descriptor
324 private Descriptor mDescriptor;
395 Descriptor[] desc = new Descriptor[1];
441 * Get the effect descriptor.
443 * @see android.media.audiofx.AudioEffect.Descriptor
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
descriptor.h 36 // You can use a message's descriptor to learn at runtime what fields
70 class Descriptor;
80 // Defined in descriptor.proto
101 // Defined in descriptor.cc
123 // message. To obtain the Descriptor for a given message object, call
125 // static method called descriptor() which returns the type's descriptor.
127 class LIBPROTOBUF_EXPORT Descriptor {
139 // Index of this descriptor within the file or containing type's message
146 // If this Descriptor describes a nested type, this returns the typ
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
descriptor.h 36 // You can use a message's descriptor to learn at runtime what fields
70 class Descriptor;
80 // Defined in descriptor.proto
101 // Defined in descriptor.cc
123 // message. To obtain the Descriptor for a given message object, call
125 // static method called descriptor() which returns the type's descriptor.
127 class LIBPROTOBUF_EXPORT Descriptor {
139 // Index of this descriptor within the file or containing type's message
146 // If this Descriptor describes a nested type, this returns the typ
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
descriptor.h 36 // You can use a message's descriptor to learn at runtime what fields
70 class Descriptor;
80 // Defined in descriptor.proto
101 // Defined in descriptor.cc
123 // message. To obtain the Descriptor for a given message object, call
125 // static method called descriptor() which returns the type's descriptor.
127 class LIBPROTOBUF_EXPORT Descriptor {
139 // Index of this descriptor within the file or containing type's message
146 // If this Descriptor describes a nested type, this returns the typ
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
descriptor.h 36 // You can use a message's descriptor to learn at runtime what fields
70 class Descriptor;
80 // Defined in descriptor.proto
101 // Defined in descriptor.cc
123 // message. To obtain the Descriptor for a given message object, call
125 // static method called descriptor() which returns the type's descriptor.
127 class LIBPROTOBUF_EXPORT Descriptor {
139 // Index of this descriptor within the file or containing type's message
146 // If this Descriptor describes a nested type, this returns the typ
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
Descriptors.java 49 * Every message type has a {@link Descriptor}, which lists all
51 * type's descriptor by calling {@code MessageType.getDescriptor()}, or
55 * {@code Descriptor.getFile()}. A {@link FileDescriptor} contains descriptors
60 * {@code google/protobuf/descriptor.proto}.
74 /** Convert the descriptor to its protocol message representation. */
93 /** Get the {@code FileOptions}, defined in {@code descriptor.proto}. */
97 public List<Descriptor> getMessageTypes() {
130 * @return The message type's descriptor, or {@code null} if not found.
132 public Descriptor findMessageTypeByName(String name) {
142 if (result != null && result instanceof Descriptor &
2104 private final GenericDescriptor descriptor; field in class:Descriptors.DescriptorPool.DescriptorIntPair
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor.h 36 // You can use a message's descriptor to learn at runtime what fields
67 class Descriptor;
78 // Defined in descriptor.proto
100 // Defined in descriptor.cc
122 // message. To obtain the Descriptor for a given message object, call
124 // static method called descriptor() which returns the type's descriptor.
126 class LIBPROTOBUF_EXPORT Descriptor {
138 // Index of this descriptor within the file or containing type's message
145 // If this Descriptor describes a nested type, this returns the typ
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
descriptor.h 36 // You can use a message's descriptor to learn at runtime what fields
76 class Descriptor;
87 // Defined in descriptor.proto
109 // Defined in descriptor.cc
143 // See the comments in SourceCodeInfo.Location (descriptor.proto) for details.
149 // Options when generating machine-parsable output from a descriptor with
168 // message. To obtain the Descriptor for a given message object, call
170 // static method called descriptor() which returns the type's descriptor.
172 class LIBPROTOBUF_EXPORT Descriptor {
    [all...]
  /external/v8/tools/
grokdump.py 73 class Descriptor(object):
74 """Descriptor of a structure in a memory."""
84 self.ctype = Descriptor._GetCtype(fields)
93 partial_ctype = Descriptor._GetCtype(fields_copy[:last])
101 complete_ctype = Descriptor._GetCtype(fields_copy[:last])
183 MINIDUMP_HEADER = Descriptor([
193 MINIDUMP_LOCATION_DESCRIPTOR = Descriptor([
198 MINIDUMP_STRING = Descriptor([
203 MINIDUMP_DIRECTORY = Descriptor([
210 MINIDUMP_EXCEPTION = Descriptor([
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmstypes.c     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_descr.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_descr.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_descr.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_descr.py     [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
usbprotocoldefs.h 225 BYTE Descriptor:5;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ks.h     [all...]
  /prebuilts/tools/common/m2/repository/commons-beanutils/commons-beanutils/1.7.0/
commons-beanutils-1.7.0.jar 

Completed in 3015 milliseconds

12 3 4