Lines Matching refs:tmp

166 	OString tmp(tmpBuf.makeStringAndClear().replace('/', '_').toAsciiUpperCase());  in dumpHeaderDefine()  local
168 o << "#ifndef " << tmp << "\n#define " << tmp << "\n"; in dumpHeaderDefine()
170 return tmp; in dumpHeaderDefine()
189 OString tmp(tmpBuf.makeStringAndClear().replace('/', '_').toAsciiUpperCase()); in dumpInclude() local
198 o << "#ifndef " << tmp << "\n#include <"; in dumpInclude()
199 tmp = tmpBuf.makeStringAndClear(); in dumpInclude()
211 o << tmp; in dumpInclude()
420 OString tmp(getBaseType(relType)); in dumpType() local
421 if ( !tmp.isEmpty() ) in dumpType()
423 tmp = tmp.replace( ' ', '_' ); in dumpType()
424 o << tmp; in dumpType()
660 char tmp[16]; in dumpConstantValue() local
661 snprintf(tmp, sizeof(tmp), "0x%x", (sal_Int8)constValue.m_value.aByte); in dumpConstantValue()
662 o << tmp; in dumpConstantValue()
679 ::rtl::OString tmp( OString::valueOf(constValue.m_value.aHyper) ); in dumpConstantValue()
680 o << tmp.getStr(); in dumpConstantValue()
685 ::rtl::OString tmp( OString::valueOf((sal_Int64)constValue.m_value.aUHyper) ); in dumpConstantValue()
686 o << tmp.getStr(); in dumpConstantValue()
691 ::rtl::OString tmp( OString::valueOf(constValue.m_value.aFloat) ); in dumpConstantValue()
692 o << tmp.getStr(); in dumpConstantValue()
697 ::rtl::OString tmp( OString::valueOf(constValue.m_value.aDouble) ); in dumpConstantValue()
698 o << tmp.getStr(); in dumpConstantValue()
726 OStringBuffer tmp(m_indentLength); in indent() local
730 tmp.append(' '); in indent()
732 return tmp.makeStringAndClear(); in indent()
737 OStringBuffer tmp(m_indentLength + num); in indent() local
741 tmp.append(' '); in indent()
743 return tmp.makeStringAndClear(); in indent()