Home
last modified time | relevance | path

Searched refs:_cp (Results 1 – 11 of 11) sorted by relevance

/external/apache-commons-bcel/src/main/java/org/apache/bcel/util/
DBCELFactory.java71 private final ConstantPoolGen _cp; field in BCELFactory
76 _cp = mg.getConstantPool(); in BCELFactory()
125 final Type type = i.getType(_cp); in visitLocalVariableInstruction()
140 final Type type = i.getType(_cp); in visitArrayInstruction()
150 final String class_name = i.getClassName(_cp); in visitFieldInstruction()
151 final String field_name = i.getFieldName(_cp); in visitFieldInstruction()
152 final Type type = i.getFieldType(_cp); in visitFieldInstruction()
162 final String class_name = i.getClassName(_cp); in visitInvokeInstruction()
163 final String method_name = i.getMethodName(_cp); in visitInvokeInstruction()
164 final Type type = i.getReturnType(_cp); in visitInvokeInstruction()
[all …]
DBCELifier.java65 private final ConstantPoolGen _cp; field in BCELifier
73 _cp = new ConstantPoolGen(_clazz.getConstantPool()); in BCELifier()
181 final MethodGen mg = new MethodGen(method, _clazz.getClassName(), _cp); in visitMethod()
/external/apache-commons-bcel/src/test/java/org/apache/bcel/verifier/tests/
DTestArrayAccess04Creator.java38 private final ConstantPoolGen _cp; field in TestArrayAccess04Creator
45 _cp = _cg.getConstantPool(); in TestArrayAccess04Creator()
46 _factory = new InstructionFactory(_cg, _cp); in TestArrayAccess04Creator()
59 TEST_PACKAGE+".TestArrayAccess04", il, _cp); in createMethod_0()
75 new String[] { "arg0" }, "test", TEST_PACKAGE+".TestArrayAccess04", il, _cp); in createMethod_1()
77 final InstructionHandle ih_0 = il.append(new PUSH(_cp, 1)); in createMethod_1()
81 final InstructionHandle ih_5 = il.append(new PUSH(_cp, 1)); in createMethod_1()
86 il.append(new PUSH(_cp, 0)); in createMethod_1()
DTestArrayAccess02Creator.java38 private final ConstantPoolGen _cp; field in TestArrayAccess02Creator
45 _cp = _cg.getConstantPool(); in TestArrayAccess02Creator()
46 _factory = new InstructionFactory(_cg, _cp); in TestArrayAccess02Creator()
59 TEST_PACKAGE+".TestArrayAccess02", il, _cp); in createMethod_0()
75 "test", TEST_PACKAGE+".TestArrayAccess02", il, _cp); in createMethod_1()
77 final InstructionHandle ih_0 = il.append(new PUSH(_cp, 1)); in createMethod_1()
81 final InstructionHandle ih_5 = il.append(new PUSH(_cp, 1)); in createMethod_1()
87 il.append(new PUSH(_cp, 0)); in createMethod_1()
DTestArrayAccess03Creator.java38 private final ConstantPoolGen _cp; field in TestArrayAccess03Creator
45 _cp = _cg.getConstantPool(); in TestArrayAccess03Creator()
46 _factory = new InstructionFactory(_cg, _cp); in TestArrayAccess03Creator()
59 TEST_PACKAGE+".TestArrayAccess03", il, _cp); in createMethod_0()
75 new String[] { "arg0" }, "test", TEST_PACKAGE+".TestArrayAccess03", il, _cp); in createMethod_1()
77 final InstructionHandle ih_0 = il.append(new PUSH(_cp, 1)); in createMethod_1()
83 il.append(new PUSH(_cp, 0)); in createMethod_1()
DTestReturn03Creator.java36 private final ConstantPoolGen _cp; field in TestReturn03Creator
43 _cp = _cg.getConstantPool(); in TestReturn03Creator()
44 _factory = new InstructionFactory(_cg, _cp); in TestReturn03Creator()
57 "<init>", TEST_PACKAGE+".TestReturn03", il, _cp); in createMethod_0()
73 new String[] { }, "test3", TEST_PACKAGE+".TestReturn03", il, _cp); in createMethod_1()
DTestReturn01Creator.java36 private final ConstantPoolGen _cp; field in TestReturn01Creator
43 _cp = _cg.getConstantPool(); in TestReturn01Creator()
44 _factory = new InstructionFactory(_cg, _cp); in TestReturn01Creator()
57 "<init>", TEST_PACKAGE+".TestReturn01", il, _cp); in createMethod_0()
73 new String[] { }, "foo", TEST_PACKAGE+".TestReturn01", il, _cp); in createMethod_1()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DMethodGen.java639 final ConstantPoolGen _cp = super.getConstantPool(); in getMethod() local
640 final int name_index = _cp.addUtf8(super.getName()); in getMethod()
641 final int signature_index = _cp.addUtf8(signature); in getMethod()
653 updateLocalVariableTable(getLocalVariableTable(_cp)); in getMethod()
654 addCodeAttribute(lvt = getLocalVariableTable(_cp)); in getMethod()
664 addCodeAttribute(lnt = getLineNumberTable(_cp)); in getMethod()
684 code = new Code(_cp.addUtf8("Code"), 8 + byte_code.length + // prologue byte code in getMethod()
687 max_stack, max_locals, byte_code, c_exc, code_attrs, _cp.getConstantPool()); in getMethod()
690 addAnnotationsAsAttribute(_cp); in getMethod()
691 addParameterAnnotationsAsAttribute(_cp); in getMethod()
[all …]
DClassGen.java215 final ConstantPool _cp = this.cp.getFinalConstantPool(); in getJavaClass() local
217 super.getAccessFlags(), _cp, interfaces, fields, methods, attributes); in getJavaClass()
/external/freetype/src/tools/ftrandom/
Dftrandom.c127 FT_ConicTo( const FT_Vector *_cp, in FT_ConicTo() argument
131 FT_UNUSED( _cp ); in FT_ConicTo()
/external/pdfium/third_party/libtiff/
Dtif_fax3.c973 #define finddiff(_cp, _bs, _be, _color) \ argument
974 (_bs + (_color ? find1span(_cp,_bs,_be) : find0span(_cp,_bs,_be)))
979 #define finddiff2(_cp, _bs, _be, _color) \ argument
980 (_bs < _be ? finddiff(_cp,_bs,_be,_color) : _be)