HomeSort by relevance Sort by last modified time
    Searched refs:descriptor (Results 201 - 225 of 1722) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/clang/test/CodeGen/
blockstret.c 69 struct block_descriptor_big *descriptor; member in struct:block_layout_abi
76 return layout->descriptor->signature;
78 return ((struct block_descriptor_small *)layout->descriptor)->signature;
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
TypeIdItem.java 60 CstString descriptor = type.getDescriptor(); local
61 int idx = file.getStringIds().indexOf(descriptor);
64 out.annotate(0, indexString() + ' ' + descriptor.toHuman());
  /external/proguard/src/proguard/optimize/
MethodDescriptorShrinker.java 84 // Update the descriptor if it has any unused parameters.
85 String descriptor = programMethod.getDescriptor(programClass); local
86 String newDescriptor = shrinkDescriptor(programMethod, descriptor);
88 if (!newDescriptor.equals(descriptor))
96 newName += ClassConstants.SPECIAL_MEMBER_SEPARATOR + Long.toHexString(Math.abs((descriptor).hashCode()));
112 descriptor,
115 // Finally, update the descriptor itself.
187 String descriptor = method.getDescriptor(clazz); local
189 new InternalTypeEnumeration(descriptor);
220 * Returns a shrunk descriptor or signature of the given method
    [all...]
  /external/protobuf/python/google/protobuf/pyext/
descriptor.cc 36 #include <google/protobuf/descriptor.pb.h>
37 #include <google/protobuf/pyext/descriptor.h>
77 self->descriptor->full_name().c_str(),
78 self->descriptor->full_name().size());
83 self->descriptor->name().c_str(),
84 self->descriptor->name().size());
88 return PyInt_FromLong(self->descriptor->cpp_type());
92 return PyInt_FromLong(self->descriptor->label());
133 C("A Field Descriptor"), // tp_doc
167 cfield_descriptor->descriptor = field_descriptor
330 const google::protobuf::FileDescriptor* descriptor = local
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_service.h 39 #include <google/protobuf/descriptor.h>
60 explicit ServiceGenerator(const ServiceDescriptor* descriptor);
77 explicit ImmutableServiceGenerator(const ServiceDescriptor* descriptor,
java_field.h 43 #include <google/protobuf/descriptor.h>
94 // Convenience class which constructs FieldGenerators for a Descriptor.
98 explicit FieldGeneratorMap(const Descriptor* descriptor,
105 const Descriptor* descriptor_;
123 FieldGeneratorMap(const Descriptor* descriptor,
144 void SetCommonFieldVariables(const FieldDescriptor* descriptor,
149 void SetCommonOneofVariables(const FieldDescriptor* descriptor,
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-plugin-descriptor/2.0.9/
maven-plugin-descriptor-2.0.9.jar 
  /hardware/qcom/display/msm8996/libgralloc1/
gr_device_impl.cpp 184 gralloc1_buffer_descriptor_t descriptor) {
185 if (!device || !BUF_DESCRIPTOR(descriptor)->IsValid()) {
186 ALOGE("Gralloc Error : device=%p, descriptor=%p", (void *)device, (void *)descriptor);
210 BufferDescriptor *descriptor = new BufferDescriptor(); local
211 if (descriptor == NULL) {
215 *out_descriptor = reinterpret_cast<gralloc1_buffer_descriptor_t>(descriptor);
221 gralloc1_buffer_descriptor_t descriptor) {
222 gralloc1_error_t status = CheckDeviceAndDescriptor(device, descriptor);
224 delete reinterpret_cast<BufferDescriptor *>(descriptor);
    [all...]
  /hardware/qcom/display/msmcobalt/libgralloc1/
gr_device_impl.cpp 184 gralloc1_buffer_descriptor_t descriptor) {
185 if (!device || !BUF_DESCRIPTOR(descriptor)->IsValid()) {
186 ALOGE("Gralloc Error : device=%p, descriptor=%p", (void *)device, (void *)descriptor);
210 BufferDescriptor *descriptor = new BufferDescriptor(); local
211 if (descriptor == NULL) {
215 *out_descriptor = reinterpret_cast<gralloc1_buffer_descriptor_t>(descriptor);
221 gralloc1_buffer_descriptor_t descriptor) {
222 gralloc1_error_t status = CheckDeviceAndDescriptor(device, descriptor);
224 delete reinterpret_cast<BufferDescriptor *>(descriptor);
    [all...]
gr_buf_mgr.cpp 85 // Allocate one and duplicate/copy the handles for each descriptor
91 // Create new handle for a given descriptor.
106 // Allocate seperate buffer for each descriptor
122 void BufferManager::CreateSharedHandle(buffer_handle_t inbuffer, const BufferDescriptor &descriptor,
128 allocator_->GetAlignedWidthAndHeight(descriptor, &alignedw, &alignedh);
130 // create new handle from input reference handle and given descriptor
131 int flags = GetHandleFlags(descriptor.GetFormat(), descriptor.GetProducerUsage(),
132 descriptor.GetConsumerUsage());
133 int buffer_type = GetBufferType(descriptor.GetFormat())
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/lua/
luatypemaps.swg 138 if (!SWIG_IsOK(SWIG_ConvertPtr(L,$input,(void**)&$1,$descriptor,$disown))){
139 SWIG_fail_ptr("$symname",$argnum,$descriptor);
145 if (!SWIG_IsOK(SWIG_ConvertPtr(L,$input,(void**)&$1,$descriptor,$disown))){
146 SWIG_fail_ptr("$symname",$argnum,$descriptor);
152 %{SWIG_NewPointerObj(L,$1,$descriptor,$owner); SWIG_arg++; %}
170 if (!SWIG_IsOK(SWIG_ConvertPtr(L,$input,(void**)&argp,$&descriptor,0))){
171 SWIG_fail_ptr("$symname",$argnum,$&descriptor);
180 %{temp=($*ltype)SWIG_MustGetPtr(L,$input,$*descriptor,0,$argnum,"$symname");
184 %{SWIG_NewPointerObj(L,*$1,$*descriptor,$owner); SWIG_arg++; %}
193 %{ if (!SWIG_IsOK(SWIG_ConvertPtr(L,$input,(void**)&$1,$descriptor,SWIG_POINTER_DISOWN)))
    [all...]
  /external/protobuf/src/google/protobuf/
message.cc 45 #include <google/protobuf/descriptor.pb.h>
46 #include <google/protobuf/descriptor.h>
63 const Descriptor* descriptor = GetDescriptor(); local
64 GOOGLE_CHECK_EQ(from.GetDescriptor(), descriptor)
66 "to: " << descriptor->full_name() << ", "
76 const Descriptor* descriptor = GetDescriptor(); local
77 GOOGLE_CHECK_EQ(from.GetDescriptor(), descriptor)
79 "to: " << descriptor->full_name() << ",
    [all...]
  /external/proguard/src/proguard/
FullyQualifiedClassNameChecker.java 102 checkType(memberSpecification.descriptor);
106 checkDescriptor(memberSpecification.descriptor);
114 * Checks the classes mentioned in the given class member descriptor,
117 private void checkDescriptor(String descriptor)
119 if (descriptor != null)
122 new InternalTypeEnumeration(descriptor);
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.h 40 #include <google/protobuf/descriptor.h>
41 #include <google/protobuf/descriptor.pb.h>
66 string ClassName(const Descriptor* descriptor, bool qualified);
69 string SuperClassName(const Descriptor* descriptor);
83 inline const Descriptor* FieldScope(const FieldDescriptor* field) {
134 string SafeFunctionName(const Descriptor* descriptor,
154 // Do message classes in this file have descriptor and reflection methods
    [all...]
  /frameworks/base/services/core/java/com/android/server/location/
ActivityRecognitionProxy.java 111 String descriptor; local
113 descriptor = binder.getInterfaceDescriptor();
115 Log.e(TAG, "Unable to get interface descriptor.", e);
119 if (IActivityRecognitionHardwareWatcher.class.getCanonicalName().equals(descriptor)) {
137 } else if (IActivityRecognitionHardwareClient.class.getCanonicalName().equals(descriptor)) {
150 Log.e(TAG, "Invalid descriptor found on connection: " + descriptor);
  /frameworks/native/include/binder/
IInterface.h 75 static const android::String16 descriptor; \
84 const android::String16 I##INTERFACE::descriptor(NAME); \
87 return I##INTERFACE::descriptor; \
96 I##INTERFACE::descriptor).get()); \
118 if (_descriptor == INTERFACE::descriptor) return this;
  /system/bt/bta/hh/
bta_hh_api.c 302 ** Description Get HID device report descriptor
332 size_t len = sizeof(tBTA_HH_MAINT_DEV) + dscp_info.descriptor.dl_len;
345 if ( dscp_info.descriptor.dl_len != 0 && dscp_info.descriptor.dsc_list) {
346 p_buf->dscp_info.descriptor.dl_len = dscp_info.descriptor.dl_len;
347 p_buf->dscp_info.descriptor.dsc_list = (UINT8 *)(p_buf + 1);
348 memcpy(p_buf->dscp_info.descriptor.dsc_list,
349 dscp_info.descriptor.dsc_list,
350 dscp_info.descriptor.dl_len)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
AnimatorDescriptors.java 37 /** The root element descriptor */
43 /** @return the root descriptor. */
61 for (ElementDescriptor descriptor : getRootElementDescriptors()) {
62 nameToDescriptor.put(descriptor.getXmlName(), descriptor); local
66 ElementDescriptor descriptor = nameToDescriptor.get(rootTag); local
67 if (descriptor == null) {
68 descriptor = getDescriptor();
70 return descriptor;
  /external/v8/test/mjsunit/regress/
regress-convert-enum.js 30 // Create a transition tree A (no descriptors) -> B (descriptor for a) -> C
31 // (descriptor for a and c), that all share the descriptor array [a,c]. C is the
32 // owner of the descriptor array.
37 // Add a transition B -> D where D has its own descriptor array [a,b] where b is
42 // Install an enumeration cache in the descriptor array [a,c] at map B.
46 // Return ownership of the descriptor array [a,c] to B and trim it to [a].
  /external/nanopb-c/generator/google/protobuf/
descriptor_pool.py 49 The message descriptor can be used in conjunction with the message_factory
57 from google.protobuf import descriptor namespace
62 """A collection of protobufs dynamically constructed by descriptor protos."""
68 specialized file descriptor proto lookup code to be triggered on demand. An
96 file_name: The path to the file to get a descriptor for.
141 """Loads the named descriptor from the pool.
144 full_name: The full name of the descriptor to load.
147 The descriptor for the named type.
156 """Loads the named enum descriptor from the pool.
159 full_name: The full name of the enum descriptor to load
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/java/
java.swg 233 %typemap(directorin, descriptor="Z") bool "$input = (jboolean) $1;"
234 %typemap(directorin, descriptor="C") char "$input = (jint) $1;"
235 %typemap(directorin, descriptor="B") signed char "$input = (jbyte) $1;"
236 %typemap(directorin, descriptor="S") unsigned char "$input = (jshort) $1;"
237 %typemap(directorin, descriptor="S") short "$input = (jshort) $1;"
238 %typemap(directorin, descriptor="I") unsigned short "$input = (jint) $1;"
239 %typemap(directorin, descriptor="I") int "$input = (jint) $1;"
240 %typemap(directorin, descriptor="J") unsigned int "$input = (jlong) $1;"
241 %typemap(directorin, descriptor="I") long "$input = (jint) $1;"
242 %typemap(directorin, descriptor="J") unsigned long "$input = (jlong) $1;
    [all...]
  /art/runtime/verifier/
reg_type_cache.cc 45 // We weren't looking for a precise reference, as we're looking up based on a descriptor, but
46 // we found a matching entry based on the descriptor. Return the precise entry in that case.
75 const char* descriptor,
78 if (descriptor[1] == '\0') {
79 switch (descriptor[0]) {
100 } else if (descriptor[0] == 'L' || descriptor[0] == '[') {
101 return From(loader, descriptor, precise);
132 bool RegTypeCache::MatchDescriptor(size_t idx, const StringPiece& descriptor, bool precise) {
134 if (descriptor != entry->descriptor_)
620 const char* descriptor = klass->GetDescriptor(&temp); local
    [all...]
  /external/v8/test/cctest/compiler/
test-code-assembler.cc 40 VoidDescriptor descriptor(isolate);
41 CodeAssemblerTester m(isolate, descriptor);
44 FunctionTester ft(descriptor, code);
51 VoidDescriptor descriptor(isolate);
52 CodeAssemblerTester m(isolate, descriptor);
56 FunctionTester ft(descriptor, code);
64 VoidDescriptor descriptor(isolate);
65 CodeAssemblerTester m(isolate, descriptor);
68 FunctionTester ft(descriptor, code);
75 VoidDescriptor descriptor(isolate)
    [all...]
  /dalvik/libdex/
DexDebugInfo.cpp 98 * a string pointer for its descriptor or NULL as appropriate.
114 const char *descriptor; member in struct:LocalInfo
126 localInReg[reg].descriptor,
168 localInReg[argReg].descriptor = classDescriptor;
180 const char* descriptor = dexParameterIteratorNextDescriptor(&iterator); local
184 if ((argReg >= pCode->registersSize) || (descriptor == NULL)) {
192 switch (descriptor[0]) {
204 localInReg[reg].descriptor = descriptor;
240 localInReg[reg].descriptor = readTypeIdx(pDexFile, &stream)
    [all...]
  /external/proguard/src/proguard/classfile/
LibraryClass.java 270 public Field findField(String name, String descriptor)
277 (descriptor == null || field.getDescriptor(this).equals(descriptor)))
287 public Method findMethod(String name, String descriptor)
294 (descriptor == null || method.getDescriptor(this).equals(descriptor)))
477 public void fieldAccept(String name, String descriptor, MemberVisitor memberVisitor)
479 Field field = findField(name, descriptor);
500 public void methodAccept(String name, String descriptor, MemberVisitor memberVisitor)
502 Method method = findMethod(name, descriptor);
    [all...]

Completed in 1271 milliseconds

1 2 3 4 5 6 7 891011>>