Home
last modified time | relevance | path

Searched refs:pVal (Results 26 – 50 of 91) sorted by relevance

1234

/trunk/main/odk/examples/OLE/activex/
H A DSOComWindowPeer.h130 /* [retval][out] */ SAFEARRAY __RPC_FAR * __RPC_FAR *pVal) in get_Bridge_implementedInterfaces() argument
132 *pVal = SafeArrayCreateVector( VT_BSTR, 0, 2 ); in get_Bridge_implementedInterfaces()
134 if( !*pVal ) in get_Bridge_implementedInterfaces()
139 SafeArrayPutElement( *pVal, &ix, aInterface ); in get_Bridge_implementedInterfaces()
143 SafeArrayPutElement( *pVal, &ix, aInterface ); in get_Bridge_implementedInterfaces()
/trunk/main/extensions/source/activex/main/
H A DSOComWindowPeer.h133 /* [retval][out] */ SAFEARRAY __RPC_FAR * __RPC_FAR *pVal) in get_Bridge_implementedInterfaces() argument
135 *pVal = SafeArrayCreateVector( VT_BSTR, 0, 2 ); in get_Bridge_implementedInterfaces()
137 if( !*pVal ) in get_Bridge_implementedInterfaces()
142 SafeArrayPutElement( *pVal, &ix, aInterface ); in get_Bridge_implementedInterfaces()
146 SafeArrayPutElement( *pVal, &ix, aInterface ); in get_Bridge_implementedInterfaces()
H A DSOActionsApproval.h86 /* [retval][out] */ SAFEARRAY __RPC_FAR * __RPC_FAR *pVal) in get_Bridge_implementedInterfaces() argument
88 *pVal = SafeArrayCreateVector( VT_BSTR, 0, 1 ); in get_Bridge_implementedInterfaces()
90 if( !*pVal ) in get_Bridge_implementedInterfaces()
95 SafeArrayPutElement( *pVal, &ix, aInterface ); in get_Bridge_implementedInterfaces()
/trunk/main/vcl/unx/generic/printer/
H A Djobdata.cxx69 const PPDValue* pVal = NULL; in setCollate() local
71 pVal = pKey->getValue( String( RTL_CONSTASCII_USTRINGPARAM( "True" ) ) ); in setCollate()
74 pVal = pKey->getValue( String( RTL_CONSTASCII_USTRINGPARAM( "False" ) ) ); in setCollate()
75 if( ! pVal ) in setCollate()
76 pVal = pKey->getValue( String( RTL_CONSTASCII_USTRINGPARAM( "None" ) ) ); in setCollate()
78 m_aContext.setValue( pKey, pVal ); in setCollate()
/trunk/main/basic/source/sbx/
H A Dsbxbool.cxx113 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpGetBool() local
114 if( pVal ) in ImpGetBool()
115 nRes = pVal->GetBool() ? SbxTRUE : SbxFALSE; in ImpGetBool()
208 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpPutBool() local
209 if( pVal ) in ImpPutBool()
210 pVal->PutBool( sal_Bool( n != 0 ) ); in ImpPutBool()
H A Dsbxdbl.cxx97 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpGetDouble() local
98 if( pVal ) in ImpGetDouble()
99 nRes = pVal->GetDouble(); in ImpGetDouble()
193 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpPutDouble() local
194 if( pVal ) in ImpPutDouble()
195 pVal->PutDouble( n ); in ImpPutDouble()
H A Dsbxulng.cxx148 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpGetULong() local
149 if( pVal ) in ImpGetULong()
150 nRes = pVal->GetULong(); in ImpGetULong()
251 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpPutULong() local
252 if( pVal ) in ImpPutULong()
253 pVal->PutULong( n ); in ImpPutULong()
H A Dsbxbyte.cxx186 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpGetByte() local
187 if( pVal ) in ImpGetByte()
188 nRes = pVal->GetByte(); in ImpGetByte()
284 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpPutByte() local
285 if( pVal ) in ImpPutByte()
286 pVal->PutByte( n ); in ImpPutByte()
H A Dsbxchar.cxx175 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpGetChar() local
176 if( pVal ) in ImpGetChar()
177 nRes = pVal->GetChar(); in ImpGetChar()
278 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpPutChar() local
279 if( pVal ) in ImpPutChar()
280 pVal->PutChar( n ); in ImpPutChar()
H A Dsbxlng.cxx140 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpGetLong() local
141 if( pVal ) in ImpGetLong()
142 nRes = pVal->GetLong(); in ImpGetLong()
245 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpPutLong() local
246 if( pVal ) in ImpPutLong()
247 pVal->PutLong( n ); in ImpPutLong()
H A Dsbxsng.cxx135 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpGetSingle() local
136 if( pVal ) in ImpGetSingle()
137 nRes = pVal->GetSingle(); in ImpGetSingle()
243 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpPutSingle() local
244 if( pVal ) in ImpPutSingle()
245 pVal->PutSingle( n ); in ImpPutSingle()
H A Dsbxstr.cxx90 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpGetString() local
91 if( pVal ) in ImpGetString()
92 aRes = pVal->GetString(); in ImpGetString()
219 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpPutString() local
220 if( pVal ) in ImpPutString()
221 pVal->PutString( *n ); in ImpPutString()
H A Dsbxuint.cxx172 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpGetUShort() local
173 if( pVal ) in ImpGetUShort()
174 nRes = pVal->GetUShort(); in ImpGetUShort()
277 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpPutUShort() local
278 if( pVal ) in ImpPutUShort()
279 pVal->PutUShort( n ); in ImpPutUShort()
H A Dsbxcurr.cxx127 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpGetCurrency() local
128 if( pVal ) in ImpGetCurrency()
129 nRes = pVal->GetCurrency(); in ImpGetCurrency()
230 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpPutCurrency() local
231 if( pVal ) in ImpPutCurrency()
232 pVal->PutCurrency( r ); in ImpPutCurrency()
H A Dsbxdate.cxx143 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpGetDate() local
144 if( pVal ) in ImpGetDate()
145 nRes = pVal->GetDate(); in ImpGetDate()
301 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpPutDate() local
302 if( pVal ) in ImpPutDate()
303 pVal->PutDate( n ); in ImpPutDate()
H A Dsbxdec.cxx530 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpGetDecimal() local
531 if( pVal ) in ImpGetDecimal()
532 pnDecRes->setDecimal( pVal->GetDecimal() ); in ImpGetDecimal()
676 SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); in ImpPutDecimal() local
677 if( pVal ) in ImpPutDecimal()
678 pVal->PutDecimal( pDec ); in ImpPutDecimal()
/trunk/main/basic/source/runtime/
H A Dstep1.cxx90 SbxVariableRef pVal = PopVar(); in StepARGN() local
91 refArgv->Put( pVal, nArgc ); in StepARGN()
266 SbxVariable* pVal = pArray->Get32( p->pArrayCurIndices ); in StepTESTFOR() local
267 *(p->refVar) = *pVal; in StepTESTFOR()
459 SbxVariable* pVal = (SbxVariable*)refVal; in checkClass_Impl() local
460 if( pVal->IsA( TYPE(SbxObject) ) ) in checkClass_Impl()
461 pObj = (SbxObject*) pVal; in checkClass_Impl()
/trunk/main/sfx2/source/view/
H A Dviewprn.cxx197 …const beans::PropertyValue* pVal = getValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PrintSel… in getSelectionObject() local
198 if( pVal ) in getSelectionObject()
201 pVal->Value >>= bSel; in getSelectionObject()
206 pVal = getValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PrintContent" ) ) ); in getSelectionObject()
207 if( pVal ) in getSelectionObject()
208 pVal->Value >>= nChoice; in getSelectionObject()
627 const beans::PropertyValue* pVal = rProps.getConstArray(); in ExecPrint() local
630 if( pVal[i].Name.equalsAscii( "PrinterName" ) ) in ExecPrint()
633 pVal[i].Value >>= aPrinterName; in ExecPrint()
/trunk/main/sdext/source/minimizer/
H A Doptimizerdialog.cxx381 const Any* pVal( maStats.GetStatusValue( TK_Status ) ); in UpdateStatus() local
382 if ( pVal ) in UpdateStatus()
385 if ( *pVal >>= sStatus ) in UpdateStatus()
391 pVal = maStats.GetStatusValue( TK_Progress ); in UpdateStatus()
392 if ( pVal ) in UpdateStatus()
395 if ( *pVal >>= nProgress ) in UpdateStatus()
398 pVal = maStats.GetStatusValue( TK_OpenNewDocument ); in UpdateStatus()
399 if ( pVal ) in UpdateStatus()
400 SetConfigProperty( TK_OpenNewDocument, *pVal ); in UpdateStatus()
/trunk/main/writerfilter/source/doctok/
H A DDffImpl.cxx425 WW8Value::Pointer_t pVal = createValue(getDffOptName(nId)); in resolveNoAuto() local
426 rHandler.attribute(NS_rtf::LN_shpname, *pVal); in resolveNoAuto()
428 pVal = createValue((nOp & nMask) != 0); in resolveNoAuto()
429 rHandler.attribute(NS_rtf::LN_shpvalue, *pVal); in resolveNoAuto()
506 WW8Value::Pointer_t pVal = createValue(nValue); in resolveNoAuto() local
507 rHandler.attribute(nAttrid, *pVal); in resolveNoAuto()
/trunk/main/vcl/source/window/
H A Dwpropset.cxx259 beans::PropertyValue* pVal = aOutsideValues.getArray(); in setupProperties() local
262 pVal[i].Name = getIdentifiedPropertyName( it->first, pVal[i].Name ); in setupProperties()
263 xCont->addProperty( pVal[i].Name, in setupProperties()
265 pVal[i].Value in setupProperties()
/trunk/main/setup_native/source/win32/customactions/shellextensions/
H A Dshellextensions.cxx118 char* pVal = NULL; in IsVersionNT64() local
120 if ( GetMsiProp( hMSI, "VersionNT64", &pVal ) && pVal ) in IsVersionNT64()
122 free( pVal ); in IsVersionNT64()
/trunk/main/extensions/test/ole/unoTocomCalls/XCallback_Impl/
H A DSimple.cpp55 STDMETHODIMP CSimple::get__implementedInterfaces(LPSAFEARRAY *pVal) in get__implementedInterfaces() argument
70 *pVal= pArr; in get__implementedInterfaces()
73 *pVal= pArr; in get__implementedInterfaces()
/trunk/main/sw/source/core/text/
H A Dinftxt.cxx1363 PropertyValue *pVal = rVals.getArray(); in lcl_InitHyphValues() local
1365 pVal[0].Name = C2U( UPN_HYPH_MIN_LEADING ); in lcl_InitHyphValues()
1366 pVal[0].Handle = UPH_HYPH_MIN_LEADING; in lcl_InitHyphValues()
1367 pVal[0].Value <<= nMinLeading; in lcl_InitHyphValues()
1369 pVal[1].Name = C2U( UPN_HYPH_MIN_TRAILING ); in lcl_InitHyphValues()
1370 pVal[1].Handle = UPH_HYPH_MIN_TRAILING; in lcl_InitHyphValues()
1371 pVal[1].Value <<= nMinTrailing; in lcl_InitHyphValues()
1375 PropertyValue *pVal = rVals.getArray(); in lcl_InitHyphValues() local
1376 pVal[0].Value <<= nMinLeading; in lcl_InitHyphValues()
1377 pVal[1].Value <<= nMinTrailing; in lcl_InitHyphValues()
/trunk/main/extensions/source/activex/msidl/
H A Dso_activex.idl83 HRESULT Bridge_implementedInterfaces([out, retval] SAFEARRAY(BSTR) *pVal);
140 HRESULT getInterceptedURLs( [out,retval] SAFEARRAY(BSTR)* pVal );
144 HRESULT Bridge_implementedInterfaces([out, retval] SAFEARRAY(BSTR) *pVal);
168 HRESULT Bridge_implementedInterfaces([out, retval] SAFEARRAY(BSTR) *pVal);

Completed in 89 milliseconds

1234