Home
last modified time | relevance | path

Searched refs:aVector (Results 1 – 25 of 62) sorted by relevance

123

/trunk/main/connectivity/source/drivers/ado/
H A DACatalog.cxx57 TStringVector aVector; in refreshTables() local
64 aVector.reserve(nCount); in refreshTables()
78 m_pTables->reFill(aVector); in refreshTables()
85 TStringVector aVector; in refreshViews() local
88 aViews.fillElementNames(aVector); in refreshViews()
91 m_pViews->reFill(aVector); in refreshViews()
98 TStringVector aVector; in refreshGroups() local
104 m_pGroups->reFill(aVector); in refreshGroups()
111 TStringVector aVector; in refreshUsers() local
114 aUsers.fillElementNames(aVector); in refreshUsers()
[all …]
H A DATable.cxx85 TStringVector aVector; in refreshColumns() local
91 aColumns.fillElementNames(aVector); in refreshColumns()
95 m_pColumns->reFill(aVector); in refreshColumns()
97 …m_pColumns = new OColumns(*this,m_aMutex,aVector,aColumns,isCaseSensitive(),m_pCatalog->getConnect… in refreshColumns()
102 TStringVector aVector; in refreshKeys() local
108 aKeys.fillElementNames(aVector); in refreshKeys()
112 m_pKeys->reFill(aVector); in refreshKeys()
114 m_pKeys = new OKeys(*this,m_aMutex,aVector,aKeys,isCaseSensitive(),m_pCatalog->getConnection()); in refreshKeys()
119 TStringVector aVector; in refreshIndexes() local
125 aIndexes.fillElementNames(aVector); in refreshIndexes()
[all …]
H A DAIndex.cxx66 TStringVector aVector; in refreshColumns() local
72 aColumns.fillElementNames(aVector); in refreshColumns()
76 m_pColumns->reFill(aVector); in refreshColumns()
78 m_pColumns = new OColumns(*this,m_aMutex,aVector,aColumns,isCaseSensitive(),m_pConnection); in refreshColumns()
/trunk/main/connectivity/source/drivers/adabas/
H A DBCatalog.cxx78 TStringVector aVector; in refreshTables() local
86 fillNames(xResult,aVector); in refreshTables()
90 m_pTables->reFill(aVector); in refreshTables()
97 TStringVector aVector; in refreshViews() local
99 fillVector(s_sView,aVector); in refreshViews()
102 m_pViews->reFill(aVector); in refreshViews()
109 TStringVector aVector; in refreshGroups() local
111 fillVector(s_sGroup,aVector); in refreshGroups()
113 m_pGroups->reFill(aVector); in refreshGroups()
120 TStringVector aVector; in refreshUsers() local
[all …]
H A DBGroup.cxx49 TStringVector aVector; in OAdabasGroup() local
50 m_pUsers = new OUsers(*this,m_aMutex,aVector,m_pConnection,this); in OAdabasGroup()
67 TStringVector aVector; in refreshUsers() local
79 aVector.push_back(xRow->getString(1)); in refreshUsers()
85 m_pUsers->reFill(aVector); in refreshUsers()
87 m_pUsers = new OUsers(*this,m_aMutex,aVector,m_pConnection,this); in refreshUsers()
H A DBIndex.cxx73 TStringVector aVector; in refreshColumns() local
89 aVector.push_back(aColName); in refreshColumns()
96 m_pColumns->reFill(aVector); in refreshColumns()
98 m_pColumns = new OIndexColumns(this,m_aMutex,aVector); in refreshColumns()
/trunk/main/connectivity/source/drivers/mysql/
H A DYCatalog.cxx62 TStringVector aVector; in refreshTables() local
72 refreshObjects(sTableTypes,aVector); in refreshTables()
75 m_pTables->reFill(aVector); in refreshTables()
77 m_pTables = new OTables(m_xMetaData,*this,m_aMutex,aVector); in refreshTables()
107 TStringVector aVector; in refreshViews() local
109 refreshObjects(aTypes,aVector); in refreshViews()
112 m_pViews->reFill(aVector); in refreshViews()
114 m_pViews = new OViews(m_xMetaData,*this,m_aMutex,aVector); in refreshViews()
123 TStringVector aVector; in refreshUsers() local
131 aVector.push_back(xRow->getString(1)); in refreshUsers()
[all …]
/trunk/main/connectivity/source/drivers/hsqldb/
H A DHCatalog.cxx62 TStringVector aVector; in refreshTables() local
70 refreshObjects(sTableTypes,aVector); in refreshTables()
73 m_pTables->reFill(aVector); in refreshTables()
75 m_pTables = new OTables(m_xMetaData,*this,m_aMutex,aVector); in refreshTables()
100 TStringVector aVector; in refreshViews() local
102 refreshObjects(aTypes,aVector); in refreshViews()
105 m_pViews->reFill(aVector); in refreshViews()
107 m_pViews = new HViews( m_xConnection, *this, m_aMutex, aVector ); in refreshViews()
116 TStringVector aVector; in refreshUsers() local
124 aVector.push_back(xRow->getString(1)); in refreshUsers()
[all …]
/trunk/main/basegfx/source/curve/
H A Db2dcubicbezier.cxx697 B2DVector aVector(rTestPoint - aInitialPolygon.getB2DPoint(0L)); in getSmallestDistancePointToBezierSegment() local
698 double fQuadDist(aVector.getX() * aVector.getX() + aVector.getY() * aVector.getY()); in getSmallestDistancePointToBezierSegment()
704 aVector = B2DVector(rTestPoint - aInitialPolygon.getB2DPoint(a)); in getSmallestDistancePointToBezierSegment()
705 fNewQuadDist = aVector.getX() * aVector.getX() + aVector.getY() * aVector.getY(); in getSmallestDistancePointToBezierSegment()
729 aVector = B2DVector(rTestPoint - maStartPoint); in getSmallestDistancePointToBezierSegment()
733 aVector = B2DVector(rTestPoint - interpolatePoint(fPosLeft)); in getSmallestDistancePointToBezierSegment()
736 fNewQuadDist = aVector.getX() * aVector.getX() + aVector.getY() * aVector.getY(); in getSmallestDistancePointToBezierSegment()
751 aVector = B2DVector(rTestPoint - maEndPoint); in getSmallestDistancePointToBezierSegment()
755 aVector = B2DVector(rTestPoint - interpolatePoint(fPosRight)); in getSmallestDistancePointToBezierSegment()
758 fNewQuadDist = aVector.getX() * aVector.getX() + aVector.getY() * aVector.getY(); in getSmallestDistancePointToBezierSegment()
/trunk/main/svgio/source/svgreader/
H A Dsvgcharacternode.cxx60 SvgNumberVector aVector; in parseTextPositionAttributes() local
62 if(readSvgNumberVector(aContent, aVector)) in parseTextPositionAttributes()
64 setX(aVector); in parseTextPositionAttributes()
73 SvgNumberVector aVector; in parseTextPositionAttributes() local
77 setY(aVector); in parseTextPositionAttributes()
86 SvgNumberVector aVector; in parseTextPositionAttributes() local
90 setDx(aVector); in parseTextPositionAttributes()
99 SvgNumberVector aVector; in parseTextPositionAttributes() local
103 setDy(aVector); in parseTextPositionAttributes()
112 SvgNumberVector aVector; in parseTextPositionAttributes() local
[all …]
/trunk/main/connectivity/source/commontools/
H A DTKey.cxx64 ::std::vector< ::rtl::OUString> aVector; in refreshColumns()
67 aVector = m_aProps->m_aKeyColumnNames; in refreshColumns()
68 if ( aVector.empty() ) in refreshColumns()
88 aVector.push_back(aForeignKeyColumn); in refreshColumns()
93 if ( aVector.empty() ) in refreshColumns()
102 aVector.push_back(xRow->getString(4)); in refreshColumns()
110 m_pColumns ->reFill(aVector); in refreshColumns()
112 m_pColumns = new OKeyColumnsHelper(this,m_aMutex,aVector); in refreshColumns()
H A DTIndex.cxx46 ::std::vector< ::rtl::OUString> aVector; in OIndexHelper()
47 m_pColumns = new OIndexColumns(this,m_aMutex,aVector); in OIndexHelper()
73 ::std::vector< ::rtl::OUString> aVector; in refreshColumns()
95 aVector.push_back(aColName); in refreshColumns()
101 m_pColumns->reFill(aVector); in refreshColumns()
103 m_pColumns = new OIndexColumns(this,m_aMutex,aVector); in refreshColumns()
H A DTTableHelper.cxx266 TStringVector aVector; in refreshColumns() local
299 ::std::insert_iterator< TStringVector >( aVector, aVector.begin() ), in refreshColumns()
305 m_pColumns->reFill(aVector); in refreshColumns()
307 m_pColumns = createColumns(aVector); in refreshColumns()
439 TStringVector aVector; in refreshIndexes() local
464 aVector.push_back(aName); in refreshIndexes()
473 m_pIndexes->reFill(aVector); in refreshIndexes()
475 m_pIndexes = createIndexes(aVector); in refreshIndexes()
/trunk/main/drawinglayer/source/primitive2d/
H A Dborderlineprimitive2d.cxx50 basegfx::B2DVector aVector(getEnd() - getStart()); in create2DDecomposition() local
51 aVector.normalize(); in create2DDecomposition()
52 const basegfx::B2DVector aPerpendicular(basegfx::getPerpendicular(aVector)); in create2DDecomposition()
64 const basegfx::B2DPoint aTmpStart(getStart() + aLeftOff - (getExtendInnerStart() * aVector)); in create2DDecomposition()
65 const basegfx::B2DPoint aTmpEnd(getEnd() + aLeftOff + (getExtendInnerEnd() * aVector)); in create2DDecomposition()
101 … const basegfx::B2DPoint aTmpStart(getStart() + aRightOff - (getExtendOuterStart() * aVector)); in create2DDecomposition()
102 const basegfx::B2DPoint aTmpEnd(getEnd() + aRightOff + (getExtendOuterEnd() * aVector)); in create2DDecomposition()
137 const basegfx::B2DPoint aTmpStart(getStart() - (fMaxExtStart * aVector)); in create2DDecomposition()
138 const basegfx::B2DPoint aTmpEnd(getEnd() + (fMaxExtEnd * aVector)); in create2DDecomposition()
H A Dsvggradientprimitive2d.cxx340 const basegfx::B2DVector aVector(getEnd() - getStart()); in checkPreconditions() local
342 … if(basegfx::fTools::equalZero(aVector.getX()) && basegfx::fTools::equalZero(aVector.getY())) in checkPreconditions()
418 const basegfx::B2DVector aVector(getEnd() - getStart()); in create2DDecomposition() local
419 const double fVectorLength(aVector.getLength()); in create2DDecomposition()
422 aUnitGradientToObject.rotate(atan2(aVector.getY(), aVector.getX())); in create2DDecomposition()
439 const basegfx::B2DVector aVector(aEnd - aStart); in create2DDecomposition() local
441 aUnitGradientToObject.scale(aVector.getLength(), 1.0); in create2DDecomposition()
442 aUnitGradientToObject.rotate(atan2(aVector.getY(), aVector.getX())); in create2DDecomposition()
/trunk/main/framework/source/uielement/
H A Dfontmenucontroller.cxx114 vector<rtl::OUString> aVector; in fillPopupMenu() local
115 aVector.reserve(rFontNameSeq.getLength()); in fillPopupMenu()
118 aVector.push_back(MnemonicGenerator::EraseAllMnemonicChars(pFontNameArray[i])); in fillPopupMenu()
120 sort(aVector.begin(), aVector.end(), lcl_I18nCompareString ); in fillPopupMenu()
123 const sal_Int16 nCount = (sal_Int16)aVector.size(); in fillPopupMenu()
126 const rtl::OUString& rName = aVector[i]; in fillPopupMenu()
/trunk/main/basegfx/source/polygon/
H A Db3dpolygontools.cxx237 const B3DVector aVector(aNextPoint - aCurrentPoint); in getEdgeLength() local
238 fRetval = aVector.getLength(); in getEdgeLength()
259 const B3DVector aVector(aNextPoint - aCurrentPoint); in getLength() local
260 fRetval += aVector.getLength(); in getLength()
557 B3DVector aVector(aRetval.getB3DPoint(a) - rCenter); in applyDefaultNormalsSphere() local
558 aVector.normalize(); in applyDefaultNormalsSphere()
559 aRetval.setNormal(a, aVector); in applyDefaultNormalsSphere()
651 const B3DVector aVector(aRetval.getB3DPoint(a) - rCenter); in applyDefaultTextureCoordinatesSphere() local
652 const double fY(fOne - ((atan2(aVector.getY(), aVector.getXZLength()) + F_PI2) / F_PI)); in applyDefaultTextureCoordinatesSphere()
684 double fX(fOne - ((atan2(aVector.getZ(), aVector.getX()) + F_PI) / F_2PI)); in applyDefaultTextureCoordinatesSphere()
/trunk/main/connectivity/source/drivers/dbase/
H A DDCatalog.cxx49 TStringVector aVector; in refreshTables() local
58 aVector.push_back(xRow->getString(3)); in refreshTables()
61 m_pTables->reFill(aVector); in refreshTables()
63 m_pTables = new ODbaseTables(m_xMetaData,*this,m_aMutex,aVector); in refreshTables()
/trunk/main/connectivity/source/drivers/flat/
H A DECatalog.cxx52 TStringVector aVector; in refreshTables() local
61 aVector.push_back(xRow->getString(3)); in refreshTables()
64 m_pTables->reFill(aVector); in refreshTables()
66 m_pTables = new OFlatTables(m_xMetaData,*this,m_aMutex,aVector); in refreshTables()
/trunk/main/connectivity/source/drivers/calc/
H A DCCatalog.cxx52 TStringVector aVector; in refreshTables() local
62 aVector.push_back(xRow->getString(3)); in refreshTables()
65 m_pTables->reFill(aVector); in refreshTables()
67 m_pTables = new OCalcTables(m_xMetaData,*this,m_aMutex,aVector); in refreshTables()
/trunk/main/connectivity/source/drivers/file/
H A DFTable.cxx60 TStringVector aVector; in DBG_NAME() local
99 TStringVector aVector; in refreshColumns() local
107 aVector.push_back(xRow->getString(4)); in refreshColumns()
111 m_pColumns->reFill(aVector); in refreshColumns()
113 m_pColumns = new OColumns(this,m_aMutex,aVector); in refreshColumns()
/trunk/main/connectivity/source/drivers/evoab2/
H A DNTable.cxx64 TStringVector aVector; in refreshColumns() local
78 aVector.push_back(xRow->getString(4)); in refreshColumns()
82 m_pColumns->reFill(aVector); in refreshColumns()
84 m_pColumns = new OEvoabColumns(this,m_aMutex,aVector); in refreshColumns()
H A DNCatalog.cxx51 TStringVector aVector; in refreshTables() local
65 aVector.push_back(aName); in refreshTables()
69 m_pTables->reFill(aVector); in refreshTables()
71 m_pTables = new OEvoabTables(m_xMetaData,*this,m_aMutex,aVector); in refreshTables()
/trunk/main/connectivity/source/drivers/macab/
H A DMacabTable.cxx70 TStringVector aVector; in refreshColumns() local
84 aVector.push_back(xRow->getString(4)); in refreshColumns()
89 m_pColumns->reFill(aVector); in refreshColumns()
91 m_pColumns = new MacabColumns(this,m_aMutex,aVector); in refreshColumns()
H A DMacabCatalog.cxx50 TStringVector aVector; in refreshTables() local
70 aVector.push_back(aName); in refreshTables()
74 m_pTables->reFill(aVector); in refreshTables()
76 m_pTables = new MacabTables(m_xMetaData,*this,m_aMutex,aVector); in refreshTables()

Completed in 97 milliseconds

123