Lines Matching refs:tmpBuf

268 	OStringBuffer tmpBuf(length);  in dumpHeaderDefine()  local
270 tmpBuf.append('_'); in dumpHeaderDefine()
271 tmpBuf.append(m_typeName); in dumpHeaderDefine()
272 tmpBuf.append('_'); in dumpHeaderDefine()
275 tmpBuf.append(m_name); in dumpHeaderDefine()
276 tmpBuf.append('_'); in dumpHeaderDefine()
278 tmpBuf.append(prefix); in dumpHeaderDefine()
279 tmpBuf.append('_'); in dumpHeaderDefine()
281 OString tmp(tmpBuf.makeStringAndClear().replace('/', '_').toAsciiUpperCase()); in dumpHeaderDefine()
318 OStringBuffer tmpBuf(length); in dumpInclude() local
320 tmpBuf.append('_'); in dumpInclude()
321 tmpBuf.append(typeName); in dumpInclude()
322 tmpBuf.append('_'); in dumpInclude()
325 tmpBuf.append(m_name); in dumpInclude()
326 tmpBuf.append('_'); in dumpInclude()
328 tmpBuf.append(prefix); in dumpInclude()
329 tmpBuf.append('_'); in dumpInclude()
331 OString tmp(tmpBuf.makeStringAndClear().replace('/', '_').toAsciiUpperCase()); in dumpInclude()
337 tmpBuf.ensureCapacity(length); in dumpInclude()
338 tmpBuf.append(typeName); in dumpInclude()
341 tmpBuf.append('/'); in dumpInclude()
342 tmpBuf.append(m_name); in dumpInclude()
344 tmpBuf.append('.'); in dumpInclude()
345 tmpBuf.append(prefix); in dumpInclude()
350 o << tmpBuf.makeStringAndClear(); in dumpInclude()
353 o << tmpBuf.makeStringAndClear(); in dumpInclude()
3482 OStringBuffer tmpBuf(type.getLength()*2); in scopedName() local
3486 tmpBuf.append("::"); in scopedName()
3487 tmpBuf.append(type.getToken(0, '/', nPos)); in scopedName()
3490 return tmpBuf.makeStringAndClear(); in scopedName()
3517 OStringBuffer tmpBuf(aScope.getLength()*2); in shortScopedName() local
3522 tmpBuf.append("::"); in shortScopedName()
3523 tmpBuf.append(aScope.getToken(0, '/', nPos)); in shortScopedName()
3526 return tmpBuf.makeStringAndClear(); in shortScopedName()