Home
last modified time | relevance | path

Searched refs:descriptorIndex (Results 1 – 7 of 7) sorted by relevance

/external/javassist/src/main/javassist/bytecode/
DLocalVariableAttribute.java82 int descriptorIndex, int index) { in addEntry() argument
92 ByteArray.write16bit(descriptorIndex, newInfo, size + 6); in addEntry()
232 public int descriptorIndex(int i) { in descriptorIndex() method in LocalVariableAttribute
247 return descriptorIndex(i); in signatureIndex()
261 return getConstPool().getUtf8Info(descriptorIndex(i)); in descriptor()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DGattClientFacade.java1116 @RpcParameter(name = "descriptorIndex") Integer descriptorIndex) in gattClientReadDescriptorByIndex()
1137 if (descList.get(descriptorIndex) == null) { in gattClientReadDescriptorByIndex()
1138 throw new Exception("Invalid descriptorIndex " + descriptorIndex); in gattClientReadDescriptorByIndex()
1140 return bluetoothGatt.readDescriptor(descList.get(descriptorIndex)); in gattClientReadDescriptorByIndex()
1206 @RpcParameter(name = "descriptorIndex") Integer descriptorIndex) in gattClientWriteDescriptorByIndex()
1227 if (descList.get(descriptorIndex) == null) { in gattClientWriteDescriptorByIndex()
1228 throw new Exception("Invalid descriptorIndex " + descriptorIndex); in gattClientWriteDescriptorByIndex()
1230 return bluetoothGatt.writeDescriptor(descList.get(descriptorIndex)); in gattClientWriteDescriptorByIndex()
1300 @RpcParameter(name = "descriptorIndex") Integer descriptorIndex, in gattClientDescriptorSetValueByIndex()
1322 if (descList.get(descriptorIndex) == null) { in gattClientDescriptorSetValueByIndex()
[all …]
DGattServerFacade.java545 @RpcParameter(name = "descriptorIndex") Integer descriptorIndex) throws Exception { in gattServerCharacteristicAddDescriptor()
547 if (mDescriptorList.get(descriptorIndex) != null) { in gattServerCharacteristicAddDescriptor()
548 mCharacteristicList.get(index).addDescriptor(mDescriptorList.get(descriptorIndex)); in gattServerCharacteristicAddDescriptor()
550 throw new Exception("Invalid descriptorIndex input:" + descriptorIndex); in gattServerCharacteristicAddDescriptor()
/external/proguard/src/proguard/optimize/
DDuplicateInitializerFixer.java174 int descriptorIndex = descriptor.indexOf(ClassConstants.METHOD_ARGUMENTS_CLOSE); in visitSignatureAttribute() local
179 descriptor.charAt(descriptorIndex - 1) + in visitSignatureAttribute()
/external/turbine/java/com/google/turbine/bytecode/
DClassReader.java392 int descriptorIndex = reader.u2(); in readMethods() local
393 String desc = constantPool.utf8(descriptorIndex); in readMethods()
475 int descriptorIndex = reader.u2(); in readFields() local
476 String desc = constantPool.utf8(descriptorIndex); in readFields()
/external/vulkan-validation-layers/layers/
Dparameter_validation_utils.cpp2284 …for (uint32_t descriptorIndex = 0; descriptorIndex < pDescriptorWrites[i].descriptorCount; ++descr… in manual_PreCallValidateUpdateDescriptorSets() local
2287 … ParameterName::IndexVector{i, descriptorIndex}), in manual_PreCallValidateUpdateDescriptorSets()
2288 … pDescriptorWrites[i].pBufferInfo[descriptorIndex].buffer); in manual_PreCallValidateUpdateDescriptorSets()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DGeneratedMessage.java1617 final int descriptorIndex,
1627 return scope.getDescriptorForType().getExtensions().get(descriptorIndex);