Home
last modified time | relevance | path

Searched refs:cnat (Results 1 – 5 of 5) sorted by relevance

/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DNameSignatureInstruction.java51 final ConstantNameAndType cnat = getNameAndType(cpg); in getSignature() local
52 return ((ConstantUtf8) cp.getConstant(cnat.getSignatureIndex())).getBytes(); in getSignature()
59 final ConstantNameAndType cnat = getNameAndType(cpg); in getName() local
60 return ((ConstantUtf8) cp.getConstant(cnat.getNameIndex())).getBytes(); in getName()
DFieldOrMethod.java55 … final ConstantNameAndType cnat = (ConstantNameAndType) cp.getConstant(cmr.getNameAndTypeIndex()); in getSignature() local
56 return ((ConstantUtf8) cp.getConstant(cnat.getSignatureIndex())).getBytes(); in getSignature()
65 … final ConstantNameAndType cnat = (ConstantNameAndType) cp.getConstant(cmr.getNameAndTypeIndex()); in getName() local
66 return ((ConstantUtf8) cp.getConstant(cnat.getNameIndex())).getBytes(); in getName()
/external/apache-commons-bcel/src/examples/
DTransitiveHull.java131 ConstantNameAndType cnat = (ConstantNameAndType) cp.getConstant(ccp.getNameAndTypeIndex(), in visitRef() local
134 String signature = cnat.getSignature(cp); in visitRef()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/
DPass2Verifier.java1320 … final ConstantNameAndType cnat = (ConstantNameAndType) (cp.getConstant(name_and_type_index)); in visitConstantFieldref() local
1321 …final String name = ((ConstantUtf8) (cp.getConstant(cnat.getNameIndex()))).getBytes(); // Field or… in visitConstantFieldref()
1333 …final String sig = ((ConstantUtf8) (cp.getConstant(cnat.getSignatureIndex()))).getBytes(); // Fie… in visitConstantFieldref()
1349 … final ConstantNameAndType cnat = (ConstantNameAndType) (cp.getConstant(name_and_type_index)); in visitConstantMethodref() local
1350 …final String name = ((ConstantUtf8) (cp.getConstant(cnat.getNameIndex()))).getBytes(); // Field or… in visitConstantMethodref()
1363 …final String sig = ((ConstantUtf8) (cp.getConstant(cnat.getSignatureIndex()))).getBytes(); // Fie… in visitConstantMethodref()
1382 … final ConstantNameAndType cnat = (ConstantNameAndType) (cp.getConstant(name_and_type_index)); in visitConstantInterfaceMethodref() local
1383 …final String name = ((ConstantUtf8) (cp.getConstant(cnat.getNameIndex()))).getBytes(); // Field or… in visitConstantInterfaceMethodref()
1395 …final String sig = ((ConstantUtf8) (cp.getConstant(cnat.getSignatureIndex()))).getBytes(); // Fie… in visitConstantInterfaceMethodref()
DPass3aVerifier.java673 …final ConstantNameAndType cnat = (ConstantNameAndType) (cpg.getConstant(((ConstantMethodref) c).ge… in visitInvokeInstruction() local
674 … final ConstantUtf8 cutf8 = (ConstantUtf8) (cpg.getConstant(cnat.getNameIndex())); in visitInvokeInstruction()
696 final ConstantNameAndType cnat = in visitInvokeInstruction() local
698 … final String name = ((ConstantUtf8) (cpg.getConstant(cnat.getNameIndex()))).getBytes(); in visitInvokeInstruction()