/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
D | DexBackedTypedExceptionHandler.java | 38 private final int typeId; field in DexBackedTypedExceptionHandler 43 this.typeId = reader.readSmallUleb128(); in DexBackedTypedExceptionHandler() 47 @Nonnull @Override public String getExceptionType() { return dexFile.getType(typeId); } in getExceptionType()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/ |
D | JDWPProxyTestCase.java | 102 private boolean IsProxy(long typeId, long proxyClassId) { in IsProxy() argument 103 if (typeId == proxyClassId) { in IsProxy() 105 } else if (typeId == 0) { in IsProxy() 108 return IsProxy(debuggeeWrapper.vmMirror.getSuperclassId(typeId), in IsProxy()
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/ber/ |
D | encoder.py | 317 univ.Set.typeId: SequenceEncoder(), 318 univ.SetOf.typeId: SequenceOfEncoder(), 319 univ.Sequence.typeId: SequenceEncoder(), 320 univ.SequenceOf.typeId: SequenceOfEncoder(), 321 univ.Choice.typeId: ChoiceEncoder(), 322 univ.Any.typeId: AnyEncoder() 336 if value.typeId is not None and value.typeId in self.__typeMap: 337 concreteEncoder = self.__typeMap[value.typeId]
|
D | decoder.py | 561 univ.Set.typeId: SetDecoder(), 562 univ.SetOf.typeId: SetOfDecoder(), 563 univ.Sequence.typeId: SequenceDecoder(), 564 univ.SequenceOf.typeId: SequenceOfDecoder(), 565 univ.Choice.typeId: ChoiceDecoder(), 566 univ.Any.typeId: AnyDecoder() 740 if __chosenSpec.typeId is not None and \ 741 __chosenSpec.typeId in self.__typeMap: 743 concreteDecoder = self.__typeMap[__chosenSpec.typeId] 744 …d debug.logger('value decoder chosen for an ambiguous type by type ID %s' % (__chosenSpec.typeId,))
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ |
D | EventLocationEventTestCase.java | 94 long typeId = getClassIDBySignature(getDebuggeeSignature()); in requestEventForAllLocations() local 95 long methodId = getMethodID(typeId, getExpectedLocationMethodName()); in requestEventForAllLocations() 98 ReplyPacket replyPacket = getLineTable(typeId, methodId); in requestEventForAllLocations() 111 typeId, methodId, idx); in requestEventForAllLocations()
|
/external/icu/icu4c/source/i18n/unicode/ |
D | measunit.h | 1283 MeasureUnit(int32_t typeId, int32_t subTypeId) : fTypeId(typeId), fSubTypeId(subTypeId) { in MeasureUnit() argument 1286 void setTo(int32_t typeId, int32_t subTypeId); 1288 static MeasureUnit *create(int typeId, int subTypeId, UErrorCode &status);
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/cer/ |
D | encoder.py | 77 univ.Set.typeId: SetOfEncoder(), 78 univ.SetOf.typeId: SetOfEncoder()
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
D | MessageReflection.java | 836 int typeId = 0; in mergeMessageSetExtensionFromCodedStream() local 849 typeId = input.readUInt32(); in mergeMessageSetExtensionFromCodedStream() 850 if (typeId != 0) { in mergeMessageSetExtensionFromCodedStream() 858 (ExtensionRegistry) extensionRegistry, type, typeId); in mergeMessageSetExtensionFromCodedStream() 863 if (typeId != 0) { in mergeMessageSetExtensionFromCodedStream() 886 if (rawBytes != null && typeId != 0) { // Zero is not a valid type ID. in mergeMessageSetExtensionFromCodedStream() 892 unknownFields.mergeField(typeId, UnknownFieldSet.Field.newBuilder() in mergeMessageSetExtensionFromCodedStream()
|
/external/lzma/CPP/7zip/Compress/ |
D | CodecExports.cpp | 41 static HRESULT SetClassID(CMethodId id, UInt16 typeId, PROPVARIANT *value) in SetClassID() argument 46 clsId.Data3 = typeId; in SetClassID()
|
/external/icu/icu4c/source/i18n/ |
D | measunit.cpp | 1195 MeasureUnit *MeasureUnit::create(int typeId, int subTypeId, UErrorCode &status) { in create() argument 1199 MeasureUnit *result = new MeasureUnit(typeId, subTypeId); in create() 1228 void MeasureUnit::setTo(int32_t typeId, int32_t subTypeId) { in setTo() argument 1229 fTypeId = typeId; in setTo()
|
/external/dexmaker/src/main/java/com/google/dexmaker/ |
D | DexMaker.java | 341 TypeId<?> typeId = it.next(); in generateFileName() local 342 TypeDeclaration decl = getTypeDeclaration(typeId); in generateFileName()
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/ |
D | univ.py | 638 typeId = 1 variable in SetOf 705 typeId = 2 variable in SequenceOf 841 typeId = 3 variable in Sequence 857 typeId = 4 variable in Set 904 typeId = 5 variable in Choice 1032 typeId = 6 variable in Any
|
D | base.py | 16 typeId = None variable in Asn1ItemBase
|
/external/dexmaker/src/test/java/com/google/dexmaker/ |
D | DexMakerTest.java | 1921 …private void addMethodToDexMakerGenerator(TypeId<?> typeId, String methodName, TypeId<?>... params… in addMethodToDexMakerGenerator() argument 1922 MethodId<?, ?> methodId = GENERATED.getMethod(typeId, methodName, params); in addMethodToDexMakerGenerator() 1927 if (params[0] == typeId) { in addMethodToDexMakerGenerator()
|