Lines Matching refs:i

259     {for (int i = 0; i < pad; ++i) {  in instrLookupswitch()  local
266 {for (std::list< std::pair< sal_Int32, Code * > >::const_iterator i( in instrLookupswitch() local
268 i != blocks.end(); ++i) in instrLookupswitch()
270 appendU4(m_code, static_cast< sal_uInt32 >(i->first)); in instrLookupswitch()
273 pos2 += i->second->m_code.size(); //FIXME: overflow in instrLookupswitch()
276 {for (std::list< std::pair< sal_Int32, Code * > >::const_iterator i( in instrLookupswitch() local
278 i != blocks.end(); ++i) in instrLookupswitch()
280 appendStream(m_code, i->second->m_code); in instrLookupswitch()
344 {for (int i = 0; i < pad; ++i) { in instrTableswitch() local
355 {for (std::list< Code * >::const_iterator i(blocks.begin()); in instrTableswitch() local
356 i != blocks.end(); ++i) in instrTableswitch()
358 if (*i == 0) { in instrTableswitch()
363 pos2 += (*i)->m_code.size(); //FIXME: overflow in instrTableswitch()
367 {for (std::list< Code * >::const_iterator i(blocks.begin()); in instrTableswitch() local
368 i != blocks.end(); ++i) in instrTableswitch()
370 if (*i != 0) { in instrTableswitch()
371 appendStream(m_code, (*i)->m_code); in instrTableswitch()
512 std::map< sal_Int32, sal_uInt16 >::iterator i(m_integerInfos.find(value)); in addIntegerInfo() local
513 if (i != m_integerInfos.end()) { in addIntegerInfo()
514 return i->second; in addIntegerInfo()
528 std::map< float, sal_uInt16 >::iterator i(m_floatInfos.find(value)); in addFloatInfo() local
529 if (i != m_floatInfos.end()) { in addFloatInfo()
530 return i->second; in addFloatInfo()
546 std::map< sal_Int64, sal_uInt16 >::iterator i(m_longInfos.find(value)); in addLongInfo() local
547 if (i != m_longInfos.end()) { in addLongInfo()
548 return i->second; in addLongInfo()
562 std::map< double, sal_uInt16 >::iterator i(m_doubleInfos.find(value)); in addDoubleInfo() local
563 if (i != m_doubleInfos.end()) { in addDoubleInfo()
564 return i->second; in addDoubleInfo()
686 for (std::vector< rtl::OString >::const_iterator i(exceptions.begin()); in addMethod() local
687 i != exceptions.end(); ++i) in addMethod()
689 appendU2(m_methods, addClassInfo(*i)); in addMethod()
731 std::map< rtl::OString, sal_uInt16 >::iterator i(m_utf8Infos.find(value)); in addUtf8Info() local
732 if (i != m_utf8Infos.end()) { in addUtf8Info()
733 return i->second; in addUtf8Info()
758 std::map< sal_uInt16, sal_uInt16 >::iterator i( in addClassInfo() local
760 if (i != m_classInfos.end()) { in addClassInfo()
761 return i->second; in addClassInfo()
777 std::map< sal_uInt16, sal_uInt16 >::iterator i( in addStringInfo() local
779 if (i != m_stringInfos.end()) { in addStringInfo()
780 return i->second; in addStringInfo()
802 std::map< sal_uInt32, sal_uInt16 >::iterator i(m_fieldrefInfos.find(key)); in addFieldrefInfo() local
803 if (i != m_fieldrefInfos.end()) { in addFieldrefInfo()
804 return i->second; in addFieldrefInfo()
826 std::map< sal_uInt32, sal_uInt16 >::iterator i(m_methodrefInfos.find(key)); in addMethodrefInfo() local
827 if (i != m_methodrefInfos.end()) { in addMethodrefInfo()
828 return i->second; in addMethodrefInfo()
850 std::map< sal_uInt32, sal_uInt16 >::iterator i( in addInterfaceMethodrefInfo() local
852 if (i != m_interfaceMethodrefInfos.end()) { in addInterfaceMethodrefInfo()
853 return i->second; in addInterfaceMethodrefInfo()
874 std::map< sal_uInt32, sal_uInt16 >::iterator i( in addNameAndTypeInfo() local
876 if (i != m_nameAndTypeInfos.end()) { in addNameAndTypeInfo()
877 return i->second; in addNameAndTypeInfo()