Home
last modified time | relevance | path

Searched refs:typeId (Results 1 – 9 of 9) 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/jmonkeyengine/engine/src/core/com/jme3/light/
DLight.java80 private int typeId; field in Light.Type
83 this.typeId = type; in Type()
91 return typeId; in getId()
/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/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/icu/icu4c/source/i18n/unicode/
Dmeasunit.h1345 MeasureUnit(int32_t typeId, int32_t subTypeId) : fTypeId(typeId), fSubTypeId(subTypeId) { in MeasureUnit() argument
1348 void setTo(int32_t typeId, int32_t subTypeId);
1350 static MeasureUnit *create(int typeId, int subTypeId, UErrorCode &status);
/external/icu/icu4c/source/i18n/
Dmeasunit.cpp1143 MeasureUnit *MeasureUnit::create(int typeId, int subTypeId, UErrorCode &status) { in create() argument
1147 MeasureUnit *result = new MeasureUnit(typeId, subTypeId); in create()
1176 void MeasureUnit::setTo(int32_t typeId, int32_t subTypeId) { in setTo() argument
1177 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/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()