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

12 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutContribution.java 29 return new ChangeLayoutRefactoring.Descriptor(project, description, comment, arguments);
34 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
35 if (descriptor instanceof ChangeLayoutRefactoring.Descriptor) {
36 return ((ChangeLayoutRefactoring.Descriptor) descriptor).getArguments();
38 return super.retrieveArgumentMap(descriptor);
ChangeViewContribution.java 29 return new ChangeViewRefactoring.Descriptor(project, description, comment, arguments);
34 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
35 if (descriptor instanceof ChangeViewRefactoring.Descriptor) {
36 return ((ChangeViewRefactoring.Descriptor) descriptor).getArguments();
38 return super.retrieveArgumentMap(descriptor);
ExtractIncludeContribution.java 29 return new ExtractIncludeRefactoring.Descriptor(project, description, comment, arguments);
34 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
35 if (descriptor instanceof ExtractIncludeRefactoring.Descriptor) {
36 return ((ExtractIncludeRefactoring.Descriptor) descriptor).getArguments();
38 return super.retrieveArgumentMap(descriptor);
ExtractStyleContribution.java 29 return new ExtractStyleRefactoring.Descriptor(project, description, comment, arguments);
34 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
35 if (descriptor instanceof ExtractStyleRefactoring.Descriptor) {
36 return ((ExtractStyleRefactoring.Descriptor) descriptor).getArguments();
38 return super.retrieveArgumentMap(descriptor);
UnwrapContribution.java 29 return new UnwrapRefactoring.Descriptor(project, description, comment, arguments);
34 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
35 if (descriptor instanceof UnwrapRefactoring.Descriptor) {
36 return ((UnwrapRefactoring.Descriptor) descriptor).getArguments();
38 return super.retrieveArgumentMap(descriptor);
WrapInContribution.java 29 return new WrapInRefactoring.Descriptor(project, description, comment, arguments);
34 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
35 if (descriptor instanceof WrapInRefactoring.Descriptor) {
36 return ((WrapInRefactoring.Descriptor) descriptor).getArguments();
38 return super.retrieveArgumentMap(descriptor);
  /external/protobuf/java/src/test/java/com/google/protobuf/
TestBadIdentifiers.java 53 String descriptorField = TestBadIdentifiersProto.Descriptor
55 Descriptors.Descriptor protoDescriptor = TestBadIdentifiersProto.Descriptor
57 String nestedDescriptorField = TestBadIdentifiersProto.Descriptor
59 Descriptors.Descriptor nestedProtoDescriptor = TestBadIdentifiersProto
60 .Descriptor.NestedDescriptor.getDefaultInstance()
  /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...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/js/
js_generator.h 42 class Descriptor;
128 const Descriptor* desc,
155 const Descriptor* desc,
170 const Descriptor* desc,
207 const Descriptor* desc) const;
210 const Descriptor* desc) const;
213 const Descriptor* desc) const;
216 const Descriptor* desc) const;
222 const Descriptor* desc) const;
228 const Descriptor* desc) const
    [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...]
  /external/libchrome/base/posix/
global_descriptors.cc 14 GlobalDescriptors::Descriptor::Descriptor(Key key, int fd)
18 GlobalDescriptors::Descriptor::Descriptor(Key key,
36 DLOG(FATAL) << "Unknown global descriptor: " << key;
65 descriptors_.push_back(Descriptor(key, fd, region));
73 DLOG(FATAL) << "Unknown global descriptor: " << key;
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
reactor_op_queue.hpp 27 template <typename Descriptor>
32 typedef Descriptor key_type;
55 // operation for the given descriptor, in which case the reactor's event
57 bool enqueue_operation(Descriptor descriptor, reactor_op* op)
60 operations_.insert(value_type(descriptor, mapped_type()));
65 // Cancel all operations associated with the descriptor identified by the
66 // supplied iterator. Any operations pending for the descriptor will be
89 // Cancel all operations associated with the descriptor. Any operations
90 // pending for the descriptor will be cancelled. Returns true if an
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/webapp/
Descriptor.java 26 public abstract class Descriptor
33 public Descriptor (Resource xml)
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugArangeSet.h 35 // The size in bytes of a segment descriptor on the target architecture.
40 struct Descriptor {
47 typedef std::vector<Descriptor> DescriptorColl;
  /external/protobuf/src/google/protobuf/compiler/java/
java_context.h 45 class Descriptor;
80 void InitializeFieldGeneratorInfoForMessage(const Descriptor* message);
java_message.h 61 explicit MessageGenerator(const Descriptor* descriptor);
84 const Descriptor* descriptor_;
92 explicit ImmutableMessageGenerator(const Descriptor* descriptor,
116 io::Printer* printer, const Descriptor::ExtensionRange* range);
java_name_resolver.h 41 class Descriptor;
50 // Used to get the Java class related names for a given descriptor. It caches
71 // Gets the name of the outer class that holds descriptor information.
77 // Gets the fully-qualified class name corresponding to the given descriptor.
78 string GetClassName(const Descriptor* descriptor, bool immutable);
79 string GetClassName(const EnumDescriptor* descriptor, bool immutable);
80 string GetClassName(const ServiceDescriptor* descriptor, bool immutable);
81 string GetClassName(const FileDescriptor* descriptor, bool immutable);
84 string GetImmutableClassName(const DescriptorType* descriptor) {
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_message.h 56 explicit MessageGenerator(const Descriptor* descriptor, const Params& params);
82 const Descriptor* descriptor_;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
Descriptor.java 35 public @interface Descriptor {
  /external/javassist/src/main/javassist/bytecode/annotation/
ClassMemberValue.java 20 import javassist.bytecode.Descriptor;
99 return Descriptor.toClassName(v);
108 String setTo = Descriptor.of(newClassName);
EnumMemberValue.java 23 import javassist.bytecode.Descriptor;
82 return Descriptor.toClassName(cp.getUtf8Info(typeIndex));
91 typeIndex = cp.addUtf8Info(Descriptor.of(typename));
  /external/protobuf/java/src/main/java/com/google/protobuf/
DynamicMessage.java 33 import com.google.protobuf.Descriptors.Descriptor;
46 * given a {@link Descriptors.Descriptor}.
51 private final Descriptor type;
66 DynamicMessage(Descriptor type, FieldSet<FieldDescriptor> fields,
79 public static DynamicMessage getDefaultInstance(Descriptor type) {
89 public static DynamicMessage parseFrom(Descriptor type,
97 Descriptor type,
105 public static DynamicMessage parseFrom(Descriptor type, ByteString data)
111 public static DynamicMessage parseFrom(Descriptor type, ByteString data,
118 public static DynamicMessage parseFrom(Descriptor type, byte[] data
    [all...]
  /external/llvm/lib/MC/
MCSectionMachO.cpp 214 [&](decltype(*SectionTypeDescriptors) &Descriptor) {
215 return Descriptor.AssemblerName &&
216 SectionType == Descriptor.AssemblerName;
243 [&](decltype(*SectionAttrDescriptors) &Descriptor) {
244 return Descriptor.AssemblerName &&
245 SectionAttr.trim() == Descriptor.AssemblerName;
  /external/javassist/src/main/javassist/
ClassMap.java 18 import javassist.bytecode.Descriptor;
160 return Descriptor.toJvmName(classname);
168 return Descriptor.toJavaName(classname);
  /external/autotest/client/cros/cellular/mbim_compliance/
usb_descriptors.py 66 Metaclass for creating a USB descriptor class.
68 A derived descriptor class takes raw descriptor data as an array of unsigned
70 as instance attributes. A derived class of |Descriptor| should specify the
73 DESCRIPTOR_TYPE: An unsigned 8-bit number specifying the descriptor
77 DESCRIPTOR_SUBTYPE: An unsigned 8-bit number specifying the descriptor
83 in the USB descriptor. Each inner tuple is a field definition and
86 field from the raw descriptor data. The second element specifies the
88 derived descriptor class for storing the field. Each derived descriptor
    [all...]

Completed in 598 milliseconds

12 3 4 5 6 7 8 91011>>