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

<<21222324252627282930>>

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/memory_manager/
hmm_shrink.c 18 void U(shrink_chunk)(U(descriptor) *desc, U(size_bau) n_baus_to_shrink) {
  /packages/apps/Messaging/src/com/android/messaging/widget/
BaseWidgetFactory.java 171 ImageRequestDescriptor descriptor;
173 descriptor = new AvatarGroupRequestDescriptor(avatarUri, mIconSize, mIconSize);
175 descriptor = new AvatarRequestDescriptor(avatarUri, mIconSize, mIconSize);
179 descriptor.buildSyncMediaRequest(mContext);
  /prebuilts/misc/common/swig/include/2.0.11/java/
enums.swg 23 %typemap(directorin, descriptor="L$packagepath/$*javaclassname;") const enum SWIGTYPE & "$input = (jint)$1;"
48 %typemap(directorin, descriptor="L$packagepath/$javaclassname;") enum SWIGTYPE "$input = (jint) $1;"
enumtypesafe.swg 22 %typemap(directorin, descriptor="L$packagepath/$*javaclassname;") const enum SWIGTYPE & "$input = (jint)$1;"
46 %typemap(directorin, descriptor="L$packagepath/$javaclassname;") enum SWIGTYPE "$input = (jint) $1;"
std_string.i 49 %typemap(directorin,descriptor="Ljava/lang/String;") string
98 %typemap(directorin,descriptor="Ljava/lang/String;") const string &
  /prebuilts/misc/common/swig/include/2.0.11/python/
argcargv.i 68 res = SWIG_AsArgcArgv($input, $descriptor(char**), &argc, &argv, &owner);
79 int res = SWIG_AsArgcArgv($input, $descriptor(char**), 0, 0, 0);
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
map_entry.h 68 metadata.descriptor = descriptor_;
77 const Descriptor* descriptor_;
239 // Create default MapEntry instance for given descriptor. Descriptor has to be
241 // may have the same type and MapEntry class. The given descriptor is needed
243 static MapEntry* CreateDefaultInstance(const Descriptor* descriptor) {
246 descriptor, entry, offsets_,
253 entry->descriptor_ = descriptor;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
ValueCompleter.java 64 AttributeDescriptor descriptor = getDescriptor(); local
65 IAttributeInfo info = descriptor.getAttributeInfo();
100 if (descriptor.getXmlLocalName().equals(ATTR_TEXT_SIZE)) {
116 descriptor, contents.substring(0, position));
  /system/core/gatekeeperd/
IGateKeeperService.h 45 static const android::String16 descriptor; member in class:android::IGateKeeperService
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/
crange3.s 5 ! the start of the function (continue) into the case-table range descriptor.
  /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/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
GattServerFacade.java 373 * Add a descriptor to a bluetooth gatt characteristic
375 * @param index the bluetooth gatt characteristic to add a descriptor to
379 @Rpc(description = "add descriptor to blutooth gatt characteristic")
421 @Rpc(description = "add descriptor to blutooth gatt characteristic")
445 * Create a new Descriptor object
447 * @param descriptorUuid the UUID for this descriptor
448 * @param permissions Permissions for this descriptor
449 * @return the index of the Descriptor object
451 @Rpc(description = "Create a new Descriptor object")
457 BluetoothGattDescriptor descriptor local
    [all...]
  /external/v8/src/compiler/
linkage.cc 122 // If we are compiling a JS function, use a JS call descriptor,
341 Isolate* isolate, Zone* zone, const CallInterfaceDescriptor& descriptor,
345 const int register_parameter_count = descriptor.GetRegisterParameterCount();
373 Register reg = descriptor.GetRegisterParameter(i);
375 RepresentationFromType(descriptor.GetParameterType(i));
404 descriptor.DebugName(isolate));
437 Isolate* isolate, Zone* zone, const CallInterfaceDescriptor& descriptor,
439 const int register_parameter_count = descriptor.GetRegisterParameterCount();
449 Register reg = descriptor.GetRegisterParameter(i);
451 RepresentationFromType(descriptor.GetParameterType(i))
    [all...]
  /external/v8/test/mjsunit/es6/
arguments-iterator.js 15 var descriptor = Object.getOwnPropertyDescriptor(arguments, Symbol.iterator);
16 assertTrue(descriptor.writable);
17 assertFalse(descriptor.enumerable);
18 assertTrue(descriptor.configurable);
19 assertEquals(descriptor.value, [][Symbol.iterator]);
  /prebuilts/misc/common/swig/include/2.0.11/ocaml/
typemaps.i 15 $1 = caml_ptr_val($input,$descriptor);
19 $1 = ($ltype)caml_ptr_val($input,$descriptor);
23 $result = caml_val_ptr($1,$descriptor);
27 $result = caml_val_ptr($1,$descriptor);
87 temp = (char*)caml_val_ptr($1,$descriptor);
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kdoc/0.12.613/
kdoc-0.12.613.jar 
  /art/runtime/
class_linker-inl.h 32 inline mirror::Class* ClassLinker::FindSystemClass(Thread* self, const char* descriptor) {
33 return FindClass(self, descriptor, ScopedNullHandle<mirror::ClassLoader>());
44 std::string descriptor = "["; local
46 descriptor += (*element_class)->GetDescriptor(&temp);
50 mirror::Class* array_class = FindClass(self, descriptor.c_str(), class_loader);
  /external/protobuf/src/google/protobuf/compiler/java/
java_service.cc 42 #include <google/protobuf/descriptor.pb.h>
50 ServiceGenerator::ServiceGenerator(const ServiceDescriptor* descriptor)
51 : descriptor_(descriptor) {}
57 const ServiceDescriptor* descriptor, Context* context)
58 : ServiceGenerator(descriptor), context_(context),
198 " \"Service.callMethod() given method descriptor for wrong \" +\n"
246 " \"Service.callBlockingMethod() given method descriptor for \" +\n"
293 " \"descriptor for wrong service type.\");\n"
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
std_vector.i 59 $descriptor(T *),0) != -1) {
90 $descriptor(T *),0) != -1) {
111 $descriptor(T *), $shadow|$owner);
139 $descriptor(T *),0) != -1)
171 $descriptor(T *),0) != -1)
235 int res = SWIG_ConvertPtr(*tv, &v, $descriptor(T *),0);
263 int res = SWIG_ConvertPtr(*tv, &v, $descriptor(T *),0);
284 sv_setsv(svs[i], SWIG_NewPointerObj(x, $descriptor(T *), 0));
311 int res = SWIG_ConvertPtr(*tv, &v, $descriptor(T *),0);
342 int res = SWIG_ConvertPtr(*tv, &v, $descriptor(T *),0)
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/
parser.h 43 #include <google/protobuf/descriptor.h>
44 #include <google/protobuf/descriptor.pb.h>
207 // descriptor.proto). We use RAII to ensure that the start and end locations
230 // descriptor.proto.
250 void RecordLegacyLocation(const Message* descriptor,
521 // the next element (See SourceCodeInfo.Location in descriptor.proto), when
528 // A table mapping (descriptor, ErrorLocation) pairs -- as reported by
546 bool Find(const Message* descriptor,
551 void Add(const Message* descriptor,
  /external/icu/icu4c/source/i18n/
nfrule.cpp 114 // (this also strips the rule descriptor, if any, off the
235 * This function parses the rule's rule descriptor (i.e., the base
238 * exponent according to the descriptor. (If the description doesn't
239 * include a rule descriptor, then this function sets everything to
242 * @return If "description" included a rule descriptor, this is
243 * "description" with the descriptor and any trailing whitespace
244 * stripped off. Otherwise; it's "descriptor" unchangd.
249 // the description consists of a rule descriptor and a rule body,
250 // separated by a colon. The rule descriptor is optional. If
254 // copy the descriptor out into its own string and strip it
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/guile/
std_map.i 59 k = (K*) SWIG_MustGetPtr(key,$descriptor(K *),$argnum, 0);
61 $descriptor(T *), 0) != 0) {
65 x = (T*) SWIG_MustGetPtr(val,$descriptor(T *),$argnum, 0);
95 k = (K*) SWIG_MustGetPtr(key,$descriptor(K *),$argnum, 0);
97 $descriptor(T *), 0) != 0) {
101 x = (T*) SWIG_MustGetPtr(val,$descriptor(T *),$argnum, 0);
116 SCM k = SWIG_NewPointerObj(key,$descriptor(K *), 1);
117 SCM x = SWIG_NewPointerObj(val,$descriptor(T *), 1);
137 $descriptor(K *), 0) != 0) {
141 $descriptor(T *), 0) == 0)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/mzscheme/
std_map.i 59 k = (K*) SWIG_MustGetPtr(key,$descriptor(K *),$argnum, 0);
61 $descriptor(T *), 0) == -1) {
65 x = (T*) SWIG_MustGetPtr(val,$descriptor(T *),$argnum, 0);
95 k = (K*) SWIG_MustGetPtr(key,$descriptor(K *),$argnum, 0);
97 $descriptor(T *), 0) == -1) {
101 x = (T*) SWIG_MustGetPtr(val,$descriptor(T *),$argnum, 0);
116 Scheme_Object* k = SWIG_NewPointerObj(key,$descriptor(K *), 1);
117 Scheme_Object* x = SWIG_NewPointerObj(val,$descriptor(T *), 1);
137 $descriptor(K *), 0) == -1) {
141 $descriptor(T *), 0) != -1)
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
WireFormatTest.java 275 Descriptors.Descriptor descriptor = TestFieldOrderings.getDescriptor(); local
278 .setField(descriptor.findFieldByName("my_int"), 1L)
279 .setField(descriptor.findFieldByName("my_string"), "foo")
280 .setField(descriptor.findFieldByName("my_float"), 1.0F)
313 Descriptors.Descriptor descriptor = TestFieldOrderings.getDescriptor(); local
316 .setField(descriptor.findFieldByName("my_int"), 1L)
317 .setField(descriptor.findFieldByName("my_string"), "foo")
318 .setField(descriptor.findFieldByName("my_float"), 1.0F
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattServer.java 154 * Remote client descriptor read request.
166 + "descriptor=" + descrUuid);
175 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(descrUuid);
176 if (descriptor == null) return;
179 mCallback.onDescriptorReadRequest(device, transId, offset, descriptor);
215 * Remote client descriptor write request.
228 + "descriptor=" + descrUuid);
238 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(descrUuid);
239 if (descriptor == null) return;
242 mCallback.onDescriptorWriteRequest(device, transId, descriptor,
    [all...]

Completed in 611 milliseconds

<<21222324252627282930>>