Lines Matching refs:m_xLanguageSourceCodeGenerator

49     private XLanguageSourceCodeGenerator m_xLanguageSourceCodeGenerator;  field in SourceCodeGenerator
136 m_xLanguageSourceCodeGenerator = xLanguageSourceCodeGenerator; in setLanguage()
247 …sMainMethodSignature = m_xLanguageSourceCodeGenerator.getMainMethodSignatureSourceCode(oInitialUno… in combineCompleteSourceCode()
248 m_xLanguageSourceCodeGenerator.assignqueryInterfaceHeaderSourceCode(); in combineCompleteSourceCode()
254 sCompleteCode += m_xLanguageSourceCodeGenerator.getMethodTerminationSourceCode(); in combineCompleteSourceCode()
255 sCompleteCode += "\n" + m_xLanguageSourceCodeGenerator.getCommentSign() + "..."; in combineCompleteSourceCode()
266 …if (!m_xLanguageSourceCodeGenerator.needsqueryInterface() || (oUnoObjectDefinition.getTypeClass().… in getPropertyStatementSourceCode()
270 …sStatement += m_xLanguageSourceCodeGenerator.getStructSourceCode(sReturnObjectVariableDefinition, … in getPropertyStatementSourceCode()
278 …sStatement += m_xLanguageSourceCodeGenerator.getPropertyValueGetterSourceCode(sPropertyName, sRetu… in getPropertyStatementSourceCode()
297 String sSeparator = m_xLanguageSourceCodeGenerator.getMethodSeparator(); in getMethodStatementSourceCode()
299 sStatement += m_xLanguageSourceCodeGenerator.getStatementTerminationCharacter(); in getMethodStatementSourceCode()
307 if (m_xLanguageSourceCodeGenerator.needsqueryInterface()){ in addQueryInterfaceSourceCode()
310 …sLocStatement += m_xLanguageSourceCodeGenerator.getqueryInterfaceSourceCode(_sTypeName, sObjectVar… in addQueryInterfaceSourceCode()
348 …String sCurHeaderStatement = m_xLanguageSourceCodeGenerator.getHeaderSourceCode(oUnoObjectDefiniti… in getHeaderSourceCode()
358 sHeaderSourcecode += m_xLanguageSourceCodeGenerator.getFinalHeaderStatements(); in getHeaderSourceCode()
359 return sHeaderSourcecode +"\n" + m_xLanguageSourceCodeGenerator.getCommentSign() + "...\n"; in getHeaderSourceCode()
450 sTypeString = m_xLanguageSourceCodeGenerator.getbooleanTypeDescription(); in getTypeString()
453 sTypeString = m_xLanguageSourceCodeGenerator.getbyteTypeDescription(); in getTypeString()
456 … sTypeString = m_xLanguageSourceCodeGenerator.getcharTypeDescription(); in getTypeString()
459 … sTypeString = m_xLanguageSourceCodeGenerator.getdoubleTypeDescription(); in getTypeString()
462 … sTypeString = m_xLanguageSourceCodeGenerator.getfloatTypeDescription(); in getTypeString()
465 … sTypeString = m_xLanguageSourceCodeGenerator.gethyperTypeDescription(); in getTypeString()
468 … sTypeString = m_xLanguageSourceCodeGenerator.getlongTypeDescription(); in getTypeString()
471 … sTypeString = m_xLanguageSourceCodeGenerator.getshortTypeDescription(); in getTypeString()
474 …sTypeString = m_xLanguageSourceCodeGenerator.getstringTypeDescription(_bAsHeaderSourceCode); … in getTypeString()
477 … sTypeString = m_xLanguageSourceCodeGenerator.getunsignedhyperTypeDescription(); in getTypeString()
480 … sTypeString = m_xLanguageSourceCodeGenerator.getunsignedlongTypeDescription(); in getTypeString()
483 … sTypeString = m_xLanguageSourceCodeGenerator.getdoubleTypeDescription(); in getTypeString()
493 … sTypeString = m_xLanguageSourceCodeGenerator.getanyTypeDescription(_bAsHeaderSourceCode); in getTypeString()
496 …sTypeString = m_xLanguageSourceCodeGenerator.getObjectTypeDescription("com.sun.star.uno.Type", _bA… in getTypeString()
504 …sTypeString = m_xLanguageSourceCodeGenerator.getObjectTypeDescription(_sTypeName, _bAsHeaderSource… in getTypeString()
531 …String sVariableDeclaration = m_xLanguageSourceCodeGenerator.getVariableDeclaration(sTypeString, s… in getVariableDeclaration()
845 …sParamDescription = this.m_xLanguageSourceCodeGenerator.castLiteral(sParamDescription, aTypeClass); in getMethodParameterValueDescription()