Lines Matching refs:Code
125 ClassFile::Code::~Code() {} in ~Code()
127 void ClassFile::Code::instrAastore() { in instrAastore()
132 void ClassFile::Code::instrAconstNull() { in instrAconstNull()
137 void ClassFile::Code::instrAnewarray(rtl::OString const & type) { in instrAnewarray()
143 void ClassFile::Code::instrAreturn() { in instrAreturn()
148 void ClassFile::Code::instrAthrow() { in instrAthrow()
153 void ClassFile::Code::instrCheckcast(rtl::OString const & type) { in instrCheckcast()
159 void ClassFile::Code::instrDup() { in instrDup()
164 void ClassFile::Code::instrGetstatic( in instrGetstatic()
173 ClassFile::Code::Branch ClassFile::Code::instrIfAcmpne() { in instrIfAcmpne()
181 ClassFile::Code::Branch ClassFile::Code::instrIfeq() { in instrIfeq()
189 ClassFile::Code::Branch ClassFile::Code::instrIfnull() { in instrIfnull()
197 void ClassFile::Code::instrInstanceof(rtl::OString const & type) { in instrInstanceof()
203 void ClassFile::Code::instrInvokeinterface( in instrInvokeinterface()
215 void ClassFile::Code::instrInvokespecial( in instrInvokespecial()
224 void ClassFile::Code::instrInvokestatic( in instrInvokestatic()
233 void ClassFile::Code::instrInvokevirtual( in instrInvokevirtual()
242 void ClassFile::Code::instrLookupswitch( in instrLookupswitch()
243 Code const * defaultBlock, in instrLookupswitch()
244 std::list< std::pair< sal_Int32, Code * > > const & blocks) in instrLookupswitch()
249 std::list< std::pair< sal_Int32, Code * > >::size_type size = blocks.size(); in instrLookupswitch()
266 {for (std::list< std::pair< sal_Int32, Code * > >::const_iterator i( in instrLookupswitch()
276 {for (std::list< std::pair< sal_Int32, Code * > >::const_iterator i( in instrLookupswitch()
284 void ClassFile::Code::instrNew(rtl::OString const & type) { in instrNew()
290 void ClassFile::Code::instrNewarray(codemaker::UnoType::Sort sort) { in instrNewarray()
301 void ClassFile::Code::instrPop() { in instrPop()
306 void ClassFile::Code::instrPutfield( in instrPutfield()
315 void ClassFile::Code::instrPutstatic( in instrPutstatic()
324 void ClassFile::Code::instrReturn() { in instrReturn()
329 void ClassFile::Code::instrSwap() { in instrSwap()
334 void ClassFile::Code::instrTableswitch( in instrTableswitch()
335 Code const * defaultBlock, sal_Int32 low, in instrTableswitch()
336 std::list< Code * > const & blocks) in instrTableswitch()
347 std::list< Code * >::size_type size = blocks.size(); in instrTableswitch()
355 {for (std::list< Code * >::const_iterator i(blocks.begin()); in instrTableswitch()
367 {for (std::list< Code * >::const_iterator i(blocks.begin()); in instrTableswitch()
376 void ClassFile::Code::loadIntegerConstant(sal_Int32 value) { in loadIntegerConstant()
393 void ClassFile::Code::loadStringConstant(rtl::OString const & value) { in loadStringConstant()
397 void ClassFile::Code::loadLocalInteger(sal_uInt16 index) { in loadLocalInteger()
401 void ClassFile::Code::loadLocalLong(sal_uInt16 index) { in loadLocalLong()
405 void ClassFile::Code::loadLocalFloat(sal_uInt16 index) { in loadLocalFloat()
409 void ClassFile::Code::loadLocalDouble(sal_uInt16 index) { in loadLocalDouble()
413 void ClassFile::Code::loadLocalReference(sal_uInt16 index) { in loadLocalReference()
417 void ClassFile::Code::storeLocalReference(sal_uInt16 index) { in storeLocalReference()
421 void ClassFile::Code::branchHere(Branch branch) { in branchHere()
429 void ClassFile::Code::addException( in addException()
449 ClassFile::Code::Position ClassFile::Code::getPosition() const { in getPosition()
453 ClassFile::Code::Code(ClassFile & classFile): in Code() function in ClassFile::Code
457 void ClassFile::Code::ldc(sal_uInt16 index) { in ldc()
469 void ClassFile::Code::accessLocal( in accessLocal()
507 ClassFile::Code * ClassFile::newCode() { in newCode()
508 return new Code(*this); in newCode()
622 rtl::OString const & descriptor, Code const * code, in addMethod()