Home
last modified time | relevance | path

Searched refs:pVal (Results 1 – 25 of 91) sorted by path

1234

/trunk/main/avmedia/source/win/
H A Dinterface.hxx36 IUnknown **pVal) = 0;
40 long *pVal) = 0;
42 long *pVal) = 0;
46 GUID *pVal) = 0;
48 BSTR *pVal) = 0;
50 double *pVal) = 0;
52 BSTR *pVal) = 0;
67 AM_MEDIA_TYPE *pVal) = 0;
71 double *pVal) = 0;
/trunk/main/basic/source/classes/
H A Dsbunoobj.cxx994 Type getUnoTypeForSbxValue( SbxValue* pVal ) in getUnoTypeForSbxValue() argument
997 if( !pVal ) in getUnoTypeForSbxValue()
1001 SbxDataType eBaseType = pVal->SbxValue::GetType(); in getUnoTypeForSbxValue()
1004 SbxBaseRef xObj = (SbxBase*)pVal->GetObject(); in getUnoTypeForSbxValue()
4313 SbxVariable* pVal = rPar.Get(2); in RTL_Impl_CreateUnoValue() local
4317 SbxDataType eBaseType = pVal->SbxValue::GetType(); in RTL_Impl_CreateUnoValue()
4321 aValTypeName = pVal->GetString(); in RTL_Impl_CreateUnoValue()
4328 SbxBaseRef pObj = (SbxBase*)pVal->GetObject(); in RTL_Impl_CreateUnoValue()
4372 Any aVal = sbxToUnoValueImpl( pVal ); in RTL_Impl_CreateUnoValue()
4838 bool handleToStringForCOMObjects( SbxObject* pObj, SbxValue* pVal ) in handleToStringForCOMObjects() argument
[all …]
/trunk/main/basic/source/runtime/
H A Dstep0.cxx1086 SbxVariableRef pVal = PopVar(); in StepARGV() local
1090 if( pVal->ISA(SbxMethod) || pVal->ISA(SbUnoProperty) || pVal->ISA(SbProcedureProperty) ) in StepARGV()
1093 SbxVariable* pRes = new SbxVariable( *pVal ); in StepARGV()
1094 pVal = pRes; in StepARGV()
1096 refArgv->Put( pVal, nArgc++ ); in StepARGV()
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/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 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 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 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 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()
H A Dsbxint.cxx176 if( pVal ) in ImpGetInteger()
177 nRes = pVal->GetInteger(); in ImpGetInteger()
281 if( pVal ) in ImpPutInteger()
282 pVal->PutInteger( n ); in ImpPutInteger()
477 if( pVal ) in ImpGetInt64()
478 nRes = pVal->GetInt64(); in ImpGetInt64()
584 if( pVal ) in ImpPutInt64()
585 pVal->PutInt64( n ); in ImpPutInt64()
780 if( pVal ) in ImpGetUInt64()
889 if( pVal ) in ImpPutUInt64()
[all …]
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 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 Dsbxvalue.cxx435 bool handleToStringForCOMObjects( SbxObject* pObj, SbxValue* pVal ); // sbunoobj.cxx
498 SbxValue* pVal = PTR_CAST(SbxValue,p->aData.pObj); in TheRealValue() local
499 if( pVal ) in TheRealValue()
500 p = pVal; in TheRealValue()
/trunk/main/connectivity/source/drivers/file/
H A DFStatement.cxx715 OSQLParseNode * pVal = pAssignment->getChild(2); in GetAssignValues() local
716 OSL_ENSURE(pVal != NULL,"OResultSet: pVal == NULL"); in GetAssignValues()
718 ParseAssignValues(aList,pVal,0); in GetAssignValues()
/trunk/main/cppuhelper/source/
H A Dcomponent_context.cxx84 OSL_ASSERT( pVal ); in val2str()
97 buf.append( (sal_Int64)*(void **)pVal, 16 ); in val2str()
175 ((uno_Any *)pVal)->pType ) ); in val2str()
183 buf.append( *(rtl_uString **)pVal ); in val2str()
210 if (*(sal_Bool *)pVal) in val2str()
217 buf.append( *(sal_Unicode *)pVal ); in val2str()
221 buf.append( *(float *)pVal ); in val2str()
224 buf.append( *(double *)pVal ); in val2str()
240 buf.append( *(sal_Int32 *)pVal, 16 ); in val2str()
252 *(sal_Int32 *)&aVal = *(sal_Int32 *)pVal; in val2str()
[all …]
/trunk/main/extensions/source/activex/main/
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()
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 DSODispatchInterceptor.cpp221 STDMETHODIMP SODispatchInterceptor::getInterceptedURLs( SAFEARRAY FAR* FAR* pVal ) in getInterceptedURLs() argument
223 *pVal = SafeArrayCreateVector( VT_BSTR, 0, 3 ); in getInterceptedURLs()
225 if( !*pVal ) in getInterceptedURLs()
230 SafeArrayPutElement( *pVal, &ix, aPattern ); in getInterceptedURLs()
234 SafeArrayPutElement( *pVal, &ix, aPattern ); in getInterceptedURLs()
238 SafeArrayPutElement( *pVal, &ix, aPattern ); in getInterceptedURLs()
H A DSODispatchInterceptor.h146 /* [retval][out] */ SAFEARRAY __RPC_FAR * __RPC_FAR *pVal);
149 /* [retval][out] */ SAFEARRAY __RPC_FAR * __RPC_FAR *pVal) in get_Bridge_implementedInterfaces() argument
151 *pVal = SafeArrayCreateVector( VT_BSTR, 0, 4 ); in get_Bridge_implementedInterfaces()
153 if( !*pVal ) in get_Bridge_implementedInterfaces()
158 SafeArrayPutElement( *pVal, &ix, aInterface ); in get_Bridge_implementedInterfaces()
162 SafeArrayPutElement( *pVal, &ix, aInterface ); in get_Bridge_implementedInterfaces()
166 SafeArrayPutElement( *pVal, &ix, aInterface ); in get_Bridge_implementedInterfaces()
170 SafeArrayPutElement( *pVal, &ix, aInterface ); in get_Bridge_implementedInterfaces()
/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 92 milliseconds

1234