Home
last modified time | relevance | path

Searched refs:typeId (Results 1 – 13 of 13) 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/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/objectivec/Tests/
DGPBWireFormatTests.m163 XCTAssertEqual((uint32_t)[raw.itemArray[0] typeId],
165 XCTAssertEqual((uint32_t)[raw.itemArray[1] typeId],
167 XCTAssertEqual([raw.itemArray[2] typeId], kUnknownTypeId);
189 item.typeId = [TestMessageSetExtension1 messageSetExtension].fieldNumber;
198 item.typeId = [TestMessageSetExtension2 messageSetExtension].fieldNumber;
207 item.typeId = kUnknownTypeId;
/external/icu/icu4c/source/i18n/unicode/
Dmeasunit.h1359 MeasureUnit(int32_t typeId, int32_t subTypeId) : fTypeId(typeId), fSubTypeId(subTypeId) { in MeasureUnit() argument
1362 void setTo(int32_t typeId, int32_t subTypeId);
1364 static MeasureUnit *create(int typeId, int subTypeId, UErrorCode &status);
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DMessageReflection.java898 int typeId = 0; in mergeMessageSetExtensionFromCodedStream() local
911 typeId = input.readUInt32(); in mergeMessageSetExtensionFromCodedStream()
912 if (typeId != 0) { in mergeMessageSetExtensionFromCodedStream()
920 (ExtensionRegistry) extensionRegistry, type, typeId); in mergeMessageSetExtensionFromCodedStream()
925 if (typeId != 0) { in mergeMessageSetExtensionFromCodedStream()
948 if (rawBytes != null && typeId != 0) { // Zero is not a valid type ID. in mergeMessageSetExtensionFromCodedStream()
954 unknownFields.mergeField(typeId, UnknownFieldSet.Field.newBuilder() in mergeMessageSetExtensionFromCodedStream()
/external/spirv-llvm/lib/SPIRV/Mangler/
DParameterType.h118 ParamType(TypeEnum typeId) : m_typeId(typeId) {}; in ParamType()
/external/lzma/CPP/7zip/Compress/
DCodecExports.cpp42 static HRESULT MethodToClassID(UInt16 typeId, CMethodId id, PROPVARIANT *value) throw() in MethodToClassID() argument
47 clsId.Data3 = typeId; in MethodToClassID()
/external/icu/icu4c/source/i18n/
Dmeasunit.cpp1247 MeasureUnit *MeasureUnit::create(int typeId, int subTypeId, UErrorCode &status) { in create() argument
1251 MeasureUnit *result = new MeasureUnit(typeId, subTypeId); in create()
1281 void MeasureUnit::setTo(int32_t typeId, int32_t subTypeId) { in setTo() argument
1282 fTypeId = typeId; in setTo()
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
DDexMaker.java343 TypeId<?> typeId = it.next(); in generateFileName() local
344 TypeDeclaration decl = getTypeDeclaration(typeId); in generateFileName()
/external/skia/src/sksl/
DSkSLSPIRVCodeGenerator.cpp2455 SpvId typeId = this->getType(p.fType); in writePrefixExpression() local
2458 this->writeInstruction(SpvOpFNegate, typeId, result, expr, out); in writePrefixExpression()
2460 this->writeInstruction(SpvOpSNegate, typeId, result, expr, out); in writePrefixExpression()
2705 SpvId typeId = this->getType(*type, layout); in writeInterfaceBlock() local
2707 this->writeInstruction(SpvOpDecorate, typeId, SpvDecorationBufferBlock, fDecorationBuffer); in writeInterfaceBlock()
2709 this->writeInstruction(SpvOpDecorate, typeId, SpvDecorationBlock, fDecorationBuffer); in writeInterfaceBlock()
2713 this->writeInstruction(SpvOpTypePointer, ptrType, storageClass, typeId, fConstantBuffer); in writeInterfaceBlock()
/external/protobuf/objectivec/
DGPBMessage.m1956 uint32_t typeId = 0;
1967 typeId = GPBCodedInputStreamReadUInt32(state);
1968 if (typeId != 0) {
1970 fieldNumber:typeId];
1984 if (rawBytes != nil && typeId != 0) {
1996 [unknownFields mergeMessageSetMessage:typeId data:rawBytes];
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java1980 …private void addMethodToDexMakerGenerator(TypeId<?> typeId, String methodName, TypeId<?>... params… in addMethodToDexMakerGenerator() argument
1981 MethodId<?, ?> methodId = GENERATED.getMethod(typeId, methodName, params); in addMethodToDexMakerGenerator()
1986 if (params[0] == typeId) { in addMethodToDexMakerGenerator()