Lines Matching refs:aProps

423 	Sequence< Property > aProps;  in createArrayHelper()  local
424 describeProperties( aProps ); in createArrayHelper()
427 const sal_Int32 nLength = aProps.getLength(); in createArrayHelper()
428 aProps.realloc( nLength + 1 ); in createArrayHelper()
429 aProps[ nLength ] = Property( in createArrayHelper()
437 aProps.getArray(), in createArrayHelper()
438 aProps.getArray() + aProps.getLength(), in createArrayHelper()
442 return new ::cppu::OPropertyArrayHelper(aProps); in createArrayHelper()
1307 Sequence< PropertyValue> aProps(9); in executeQuery() local
1308 aProps[0].Name = PROPERTY_DATASOURCENAME; in executeQuery()
1309 aProps[0].Value <<= sDataSourceName; in executeQuery()
1311 aProps[1].Name = PROPERTY_COMMAND_TYPE; in executeQuery()
1312 aProps[1].Value <<= CommandType::COMMAND; in executeQuery()
1314 aProps[2].Name = PROPERTY_COMMAND; in executeQuery()
1315 aProps[2].Value <<= sTranslatedStmt; in executeQuery()
1317 aProps[3].Name = PROPERTY_ENABLE_BROWSER; in executeQuery()
1318 aProps[3].Value = ::cppu::bool2any(sal_False); in executeQuery()
1320 aProps[4].Name = PROPERTY_ACTIVE_CONNECTION; in executeQuery()
1321 aProps[4].Value <<= getConnection(); in executeQuery()
1323 aProps[5].Name = PROPERTY_UPDATE_CATALOGNAME; in executeQuery()
1324 aProps[5].Value <<= m_sUpdateCatalogName; in executeQuery()
1326 aProps[6].Name = PROPERTY_UPDATE_SCHEMANAME; in executeQuery()
1327 aProps[6].Value <<= m_sUpdateSchemaName; in executeQuery()
1329 aProps[7].Name = PROPERTY_UPDATE_TABLENAME; in executeQuery()
1330 aProps[7].Value <<= m_sUpdateTableName; in executeQuery()
1332 aProps[8].Name = PROPERTY_ESCAPE_PROCESSING; in executeQuery()
1333 aProps[8].Value = ::cppu::bool2any(m_bEscapeProcessing); in executeQuery()
1335 xDisp->dispatch(aWantToDispatch, aProps); in executeQuery()