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

1 2 3 4

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
Descriptor.java 35 public @interface Descriptor {
  /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;
global_descriptors.h 34 // It maps from an abstract key to a descriptor. If independent modules each
40 struct Descriptor {
41 Descriptor(Key key, int fd);
42 Descriptor(Key key, int fd, base::MemoryMappedFile::Region region);
51 typedef std::vector<Descriptor> Mapping;
53 // Often we want a canonical descriptor for a given Key. In this case, we add
64 // Get a descriptor given a key. It is a fatal error if the key is not known.
67 // Get a descriptor given a key. Returns -1 on error.
73 // Set the descriptor for the given |key|. This sets the region associated
77 // Set the descriptor and |region| for the given |key|
    [all...]
  /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/v8/src/
property.h 16 // Abstraction for elements in instance-descriptor arrays.
18 // Each descriptor has a key, property attributes, property type,
19 // property index (in the actual instance-descriptor array) and
21 class Descriptor BASE_EMBEDDED {
35 Descriptor() : details_(Smi::FromInt(0)) {}
44 Descriptor(Handle<Name> key, Handle<Object> value, PropertyDetails details)
49 Descriptor(Handle<Name> key, Handle<Object> value,
63 std::ostream& operator<<(std::ostream& os, const Descriptor& d);
66 class DataDescriptor final : public Descriptor {
74 : Descriptor(key, wrapped_field_type, attributes, DATA, representation
    [all...]
  /art/runtime/
primitive.h 113 static const char* Descriptor(Type type) {
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCMissingSuperCallChecker.cpp 108 SelectorDescriptor Descriptor = *I;
109 assert(Descriptor.ArgumentCount <= 1); // No multi-argument selectors yet.
112 IdentifierInfo *II = &Ctx.Idents.get(Descriptor.SelectorName);
114 Selector Sel = Ctx.Selectors.getSelector(Descriptor.ArgumentCount, &II);
  /external/jetty/src/java/org/eclipse/jetty/webapp/
Descriptor.java 26 public abstract class Descriptor
33 public Descriptor (Resource xml)
  /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 60 * This constructor is solely used by {@link Descriptor},
157 return new Descriptor(
234 public static class Descriptor extends VisualRefactoringDescriptor {
235 public Descriptor(String project, String description, String comment,
ChangeViewRefactoring.java 71 * This constructor is solely used by {@link Descriptor},
131 return new Descriptor(
224 ViewElementDescriptor descriptor = getElementDescriptor(mTypeFqcn); local
225 if (descriptor == null) {
230 AttributeDescriptor[] layoutAttributes = descriptor.getAttributes();
247 ATTR_TEXT, descriptor.getUiName());
286 public static class Descriptor extends VisualRefactoringDescriptor {
287 public Descriptor(String project, String description, String comment,
UseCompoundDrawableRefactoring.java 101 * This constructor is solely used by {@link Descriptor}, to replay a
185 return new Descriptor(
440 public static class Descriptor extends VisualRefactoringDescriptor {
441 public Descriptor(String project, String description, String comment,
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,
  /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...]
  /external/nanopb-c/generator/google/protobuf/
descriptor.py 60 This class is the base of all descriptor classes. It provides common options
64 has_options: True if the descriptor has non-default options. Usually it
72 """Initialize the descriptor given its options message and the name of the
79 # Does this descriptor have non-default options?
83 """Sets the descriptor's options
85 This function is used in generated proto2 files to update descriptor
91 # Does this descriptor have non-default options?
95 """Retrieves descriptor options.
98 descriptor.
130 containing_type: if provided, this is a nested descriptor, with thi
    [all...]
  /frameworks/native/include/ui/
Gralloc1.h 44 class Descriptor {
46 Descriptor(Device& device, gralloc1_buffer_descriptor_t deviceId)
55 ~Descriptor();
74 }; // Descriptor
77 friend class Gralloc1::Descriptor;
86 std::shared_ptr<Descriptor> createDescriptor();
91 const std::vector<std::shared_ptr<const Descriptor>>& descriptors,
94 const std::shared_ptr<const Descriptor>& descriptor,
145 template <typename PFN, gralloc1_function_descriptor_t descriptor>
    [all...]
Gralloc1On0Adapter.h 50 gralloc1_device_t* device, gralloc1_buffer_descriptor_t descriptor,
89 int32_t /*gralloc1_function_descriptor_t*/ descriptor);
92 int32_t /*gralloc1_function_descriptor_t*/ descriptor) {
93 return getAdapter(device)->doGetFunction(descriptor);
105 // Buffer descriptor lifecycle functions
107 class Descriptor;
117 gralloc1_error_t destroyDescriptor(gralloc1_buffer_descriptor_t descriptor);
119 gralloc1_buffer_descriptor_t descriptor) {
120 auto error = getAdapter(device)->destroyDescriptor(descriptor);
124 // Buffer descriptor modification function
172 auto descriptor = getAdapter(device)->getDescriptor(descriptorId); local
    [all...]
  /frameworks/native/libs/ui/
Gralloc1.cpp 30 Descriptor::~Descriptor()
40 gralloc1_error_t Descriptor::setDimensions(uint32_t width, uint32_t height)
74 gralloc1_error_t Descriptor::setFormat(android_pixel_format_t format)
80 gralloc1_error_t Descriptor::setProducerUsage(gralloc1_producer_usage_t usage)
86 gralloc1_error_t Descriptor::setConsumerUsage(gralloc1_consumer_usage_t usage)
120 std::shared_ptr<Descriptor> Device::createDescriptor()
128 auto descriptor = std::make_shared<Descriptor>(*this, descriptorId); local
129 return 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...]
  /external/protobuf/python/google/protobuf/
descriptor.py 67 This class is the base of all descriptor classes. It provides common options
71 has_options: True if the descriptor has non-default options. Usually it
79 """Initialize the descriptor given its options message and the name of the
86 # Does this descriptor have non-default options?
90 """Sets the descriptor's options
92 This function is used in generated proto2 files to update descriptor
98 # Does this descriptor have non-default options?
102 """Retrieves descriptor options.
105 descriptor.
137 containing_type: if provided, this is a nested descriptor, with thi
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
vms-misc.c 471 } Descriptor;
472 Descriptor.Size = 17;
473 Descriptor.Ptr = tbuf;
474 SYS$ASCTIM (0, &Descriptor, 0, 0);
  /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/v8/tools/
ll_prof.py 449 class Descriptor(object):
450 """Descriptor of a structure in the binary trace log."""
460 _fields_ = Descriptor.CtypesFields(fields)
473 return [(field, Descriptor.CTYPE_MAP[format]) for (field, format) in fields]
481 TRACE_HEADER_DESC = Descriptor([
495 PERF_EVENT_ATTR_DESC = Descriptor([
511 PERF_EVENT_HEADER_DESC = Descriptor([
519 PERF_MMAP_EVENT_BODY_DESC = Descriptor([
528 PERF_MMAP2_EVENT_BODY_DESC = Descriptor([
609 self.ip_struct = Descriptor.CTYPE_MAP[PERF_SAMPLE_EVENT_IP_FORMAT
    [all...]
  /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...]

Completed in 472 milliseconds

1 2 3 4