Home
last modified time | relevance | path

Searched refs:aVar (Results 1 – 20 of 20) sorted by path

/trunk/main/automation/source/communi/
H A Dcommuni.cxx566 #define GETSET(aVar, KeyName, Dafault) \ argument
567 aVar = aConf.ReadKey(KeyName,"No Entry"); \
568 if ( aVar == "No Entry" ) \
570 aVar = Dafault; \
571 aConf.WriteKey(KeyName, aVar); \
/trunk/main/basctl/source/basicide/
H A Dbaside2b.cxx1401 String aVar, aIndex; in AddWatch() local
1402 lcl_SeparateNameAndIndex( rVName, aVar, aIndex ); in AddWatch()
1403 pWatchItem->maName = aVar; in AddWatch()
1405 String aWatchStr_( aVar ); in AddWatch()
/trunk/main/basic/source/comp/
H A Ddim.cxx448 SbiExpression aVar( this, *pDef ); in DefVar() local
457 aVar.Gen(); in DefVar()
741 SbiExpression aVar( this, *pElem ); in DefEnum() local
783 aVar.Gen(); in DefEnum()
1057 SbiExpression aVar( this, SbSYMBOL ); in Call() local
1058 aVar.Gen( FORCE_CALL ); in Call()
H A Dexprgen.cxx88 if( aVar.pDef->GetScope() == SbPARAM ) in Gen()
91 if( 0 == aVar.pDef->GetPos() ) in Gen()
100 if( aVar.pPar && aVar.pPar->IsBracket() ) in Gen()
104 eOp = aVar.pDef->IsGlobal() ? _FIND_G : _FIND; in Gen()
121 SbiProcDef* pProc = aVar.pDef->GetProcDef(); in Gen()
129 for( SbiExprNode* p = this; p; p = p->aVar.pNext ) in Gen()
169 SbiSymDef* pDef = aVar.pDef; in GenElement()
175 if( aVar.pPar && aVar.pPar->GetSize() ) in GenElement()
178 aVar.pPar->Gen(); in GenElement()
183 if( aVar.pvMorePar ) in GenElement()
[all …]
H A Dexprnode.cxx79 aVar.pDef = (SbiSymDef*) &r; in SbiExprNode()
80 aVar.pPar = l; in SbiExprNode()
81 aVar.pvMorePar = NULL; in SbiExprNode()
82 aVar.pNext= NULL; in SbiExprNode()
85 bComposite= sal_Bool( aVar.pDef->GetProcDef() != NULL ); in SbiExprNode()
127 delete aVar.pPar; in ~SbiExprNode()
128 delete aVar.pNext; in ~SbiExprNode()
129 SbiExprListVector* pvMorePar = aVar.pvMorePar; in ~SbiExprNode()
143 return aVar.pDef; in GetVar()
163 while( p->aVar.pNext ) in GetRealNode()
[all …]
H A Dexprtree.cxx361 pNd->aVar.pPar = pPar; in Term()
362 pNd->aVar.pvMorePar = pvMoreParLcl; in Term()
376 pNd->aVar.pNext = ObjTerm( *pDef ); in Term()
460 pNd->aVar.pPar = pPar; in ObjTerm()
461 pNd->aVar.pvMorePar = pvMoreParLcl; in ObjTerm()
480 pNd->aVar.pNext = ObjTerm( *pDef ); in ObjTerm()
H A Dloops.cxx257 SbiExpression aVar( this, SbOPERAND ); in For() local
258 if( aVar.GetRealVar() != aLvalue.GetRealVar() ) in For()
269 SbiExpression aVar( this, SbOPERAND ); in With() local
272 SbiExprNode *pNode = aVar.GetExprNode()->GetRealNode(); in With()
283 OpenBlock( NIL, aVar.GetExprNode() ); in With()
H A Dparser.cxx493 SbiExpression aVar( this, SbSYMBOL, eMode, pKeywordSymbolInfo ); in Symbol() local
496 if( !bEQ && bVBASupportOn && aVar.IsBracket() ) in Symbol()
501 SbiSymDef* pDef = aVar.GetRealVar(); in Symbol()
507 SbiExprNode* pExprNode = aVar.GetExprNode(); in Symbol()
526 aVar.Gen( eRecMode ); in Symbol()
536 if( !aVar.IsLvalue() ) in Symbol()
/trunk/main/basic/source/inc/
H A Dexpr.hxx99 SbVar aVar; // oder Variable member
152 SbiExprList* GetParameters() { return aVar.pPar; } in GetParameters()
153 SbiExprListVector* GetMoreParameters() { return aVar.pvMorePar; } in GetMoreParameters()
/trunk/main/connectivity/source/drivers/ado/
H A DAConnection.cxx146 …OLEVariant aVar(OTools::getValue(aProps,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Jet OLEDB:Eng… in construct() local
147 if(!aVar.isNull() && !aVar.isEmpty()) in construct()
148 m_nEngineType = aVar; in construct()
H A DADatabaseMetaData.cxx64 if(!aVar.isNull() && !aVar.isEmpty()) in getInt32Property()
65 nValue = aVar; in getInt32Property()
76 return (!aVar.isNull() && !aVar.isEmpty() ? aVar.getBool() : sal_False); in getBoolProperty()
87 if(!aVar.isNull() && !aVar.isEmpty() && aVar.getType() == VT_BSTR) in getStringProperty()
88 aValue = aVar; in getStringProperty()
H A DAResultSet.cxx835 OLEVariant aVar; in getBookmark() local
836 m_pRecordSet->get_Bookmark(&aVar); in getBookmark()
837 m_aBookmarks.push_back(aVar); in getBookmark()
905 OLEVariant aVar; in hasOrderedBookmarks() local
907 aVar = aProp.GetValue(); in hasOrderedBookmarks()
912 if(!aVar.isNull() && !aVar.isEmpty()) in hasOrderedBookmarks()
913 bValue = aVar; in hasOrderedBookmarks()
935 OLEVariant aVar; in deleteRows() local
H A DAView.cxx91 OLEVariant aVar; in getFastPropertyValue() local
92 m_aView.get_Command(aVar); in getFastPropertyValue()
93 if(!aVar.isNull() && !aVar.isEmpty()) in getFastPropertyValue()
95 ADOCommand* pCom = (ADOCommand*)aVar.getIDispatch(); in getFastPropertyValue()
H A DAolevariant.cxx678 CY aVar; in getCurrency() local
679 aVar.int64 = sal_Int64(0); in getCurrency()
680 return aVar; in getCurrency()
/trunk/main/connectivity/source/inc/ado/
H A DACollection.hxx170 OLEVariant aVar; in getElementNames() local
173 aVar.setInt32(i); in getElementNames()
175 m_pCollection->get_Item(aVar,&pIdx); in getElementNames()
H A Dadoimp.hxx99 OLEVariant aVar; \
101 aVar = aProp.GetValue(); \
/trunk/main/extensions/test/ole/AxTestComponents/
H A DBasic.cpp183 CComVariant aVar = *val; in inoutVariant() local
187 m_var1 = aVar; in inoutVariant()
441 /* [out][in] */ VARIANT *aVar) in mixed1() argument
447 inoutVariant(aVar); in mixed1()
H A DBasic.h85 /* [out][in] */ VARIANT *aVar);
/trunk/main/oox/source/drawingml/diagram/
H A Dlayoutnodecontext.cxx161 LayoutVariablePropertySetContext( ContextHandler& rParent, LayoutNode::VarMap & aVar ) in LayoutVariablePropertySetContext() argument
163 , mVariables( aVar ) in LayoutVariablePropertySetContext()
/trunk/main/sc/workben/
H A Dtest.cxx790 CellAddress aVar; // A2 in lcl_Goal() local
791 aVar.Sheet = 0; in lcl_Goal()
792 aVar.Column = 0; in lcl_Goal()
793 aVar.Row = 1; in lcl_Goal()
794 BOOL bFound = xGoal->doGoalSeek(fResult, aFormula, aVar, L"42"); in lcl_Goal()

Completed in 105 milliseconds