Home
last modified time | relevance | path

Searched refs:typeId (Results 1 – 14 of 14) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DDexBackedTypedExceptionHandler.java38 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/
DJDWPProxyTestCase.java102 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/
Dencoder.py317 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]
Ddecoder.py561 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/
DEventLocationEventTestCase.java94 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/
Dmeasunit.h1283 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/
Dencoder.py77 univ.Set.typeId: SetOfEncoder(),
78 univ.SetOf.typeId: SetOfEncoder()
/external/protobuf/java/src/main/java/com/google/protobuf/
DMessageReflection.java836 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/
DCodecExports.cpp41 static HRESULT SetClassID(CMethodId id, UInt16 typeId, PROPVARIANT *value) in SetClassID() argument
46 clsId.Data3 = typeId; in SetClassID()
/external/icu/icu4c/source/i18n/
Dmeasunit.cpp1195 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/
DDexMaker.java341 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/
Duniv.py638 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
Dbase.py16 typeId = None variable in Asn1ItemBase
/external/dexmaker/src/test/java/com/google/dexmaker/
DDexMakerTest.java1921 …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()