| /AOO41X/main/extensions/test/ole/AxTestComponents/ |
| H A D | Basic.cpp | 55 STDMETHODIMP CBasic::inBool(VARIANT_BOOL val) in inBool() argument 57 m_bool = val; in inBool() 60 STDMETHODIMP CBasic::inByte(unsigned char val) in inByte() argument 62 m_byte = val; in inByte() 66 STDMETHODIMP CBasic::inShort(short val) in inShort() argument 68 m_short = val; in inShort() 72 STDMETHODIMP CBasic::inLong(long val) in inLong() argument 74 m_long = val; in inLong() 78 STDMETHODIMP CBasic::inString(BSTR val) in inString() argument 80 m_bstr = val; in inString() [all …]
|
| H A D | Basic.h | 55 STDMETHOD(inMulDimArrayByte2)(LPSAFEARRAY val); 56 STDMETHOD(inMulDimArrayByte)(LPSAFEARRAY val); 57 STDMETHOD(inMulDimArrayVariant2)(LPSAFEARRAY val); 58 STDMETHOD(inMulDimArrayLong2)(LPSAFEARRAY val); 59 STDMETHOD(inMulDimArrayVariant)(LPSAFEARRAY val); 60 STDMETHOD(inMulDimArrayLong)( LPSAFEARRAY val); 61 STDMETHOD(inoutSequenceObject)(LPSAFEARRAY* val); 62 STDMETHOD(inoutSequenceDouble)(LPSAFEARRAY * val); 63 STDMETHOD(inoutSequenceFloat)(LPSAFEARRAY * val); 64 STDMETHOD(inoutSequenceString)(LPSAFEARRAY* val); [all …]
|
| H A D | AxTestComponents.idl | 40 [id(82), helpstring("method inBool")] HRESULT inBool([in]VARIANT_BOOL val); 41 [id(1), helpstring("method inByte")] HRESULT inByte([in] unsigned char val); 42 [id(2), helpstring("method inShort")] HRESULT inShort([in] short val); 43 [id(3), helpstring("method inLong")] HRESULT inLong([in] long val); 44 [id(4), helpstring("method inString")] HRESULT inString([in] BSTR val); 45 [id(5), helpstring("method inFloat")] HRESULT inFloat([in] float val); 46 [id(6), helpstring("method inDouble")] HRESULT inDouble([in] double val); 47 [id(7), helpstring("method inVariant")] HRESULT inVariant([in] VARIANT val); 48 [id(8), helpstring("method inArray")] HRESULT inArray([in] SAFEARRAY(VARIANT) val); 49 [id(9), helpstring("method inObject")] HRESULT inObject([in] IDispatch* val); [all …]
|
| /AOO41X/main/testtools/source/bridgetest/cli/ |
| H A D | cli_vb_testobj.vb | 446 Public Overridable Function setDim2(val()() As Integer) As Integer()() _ 448 m_arLong2 = val 449 Return val 452 Public Overridable Function setDim3(val()()() As Integer) As Integer()()() _ 454 m_arLong3 = val 455 Return val 458 Public Overridable Function setSequenceAny(val() As Any) As Any() _ 460 m_arAny = val 461 Return val 464 Public Overridable Function setSequenceBool(val() As Boolean) As Boolean() _ [all …]
|
| H A D | cli_cs_testobj.cs | 425 public int[][] setDim2(int[][] val) in setDim2() argument 427 _arLong2 = val; in setDim2() 428 return val; in setDim2() 431 public int[][][] setDim3(int[][][] val) in setDim3() argument 433 _arLong3 = val; in setDim3() 434 return val; in setDim3() 437 public Any[] setSequenceAny(Any[] val) in setSequenceAny() argument 439 _arAny = val; in setSequenceAny() 440 return val; in setSequenceAny() 443 public bool[] setSequenceBool(bool[] val) in setSequenceBool() argument [all …]
|
| /AOO41X/main/qadevOOo/tests/java/ifc/accessibility/ |
| H A D | _XAccessibleValue.java | 58 private Object val = null; field in _XAccessibleValue 85 val = oObj.getCurrentValue() ; in _getCurrentValue() 86 if (util.utils.isVoid(val)) { in _getCurrentValue() 87 val = new Integer(0); in _getCurrentValue() 90 curVal = getDoubleValue(val); in _getCurrentValue() 147 Object setVal = getObjectValue(newVal, val.getClass()); in _setCurrentValue() 162 result &= oObj.setCurrentValue(getObjectValue(minVal, val.getClass())); in _setCurrentValue() 163 log.println("Setting to "+ getObjectValue(minVal, val.getClass())); in _setCurrentValue() 169 result &= oObj.setCurrentValue(getObjectValue(maxVal, val.getClass())); in _setCurrentValue() 170 log.println("Setting to "+ getObjectValue(maxVal, val.getClass())); in _setCurrentValue() [all …]
|
| /AOO41X/main/sw/inc/ |
| H A D | io.hxx | 74 SwIOin& operator>>(char& val); 75 SwIOin& operator>>(unsigned char& val); 76 SwIOin& operator>>(char* val); 77 SwIOin& operator>>(unsigned char* val); 78 SwIOin& operator>>(short& val); 79 SwIOin& operator>>(unsigned short& val); 80 SwIOin& operator>>(long& val); 81 SwIOin& operator>>(unsigned long& val); 102 SwIOout& operator<<(char val); 103 SwIOout& operator<<(unsigned char val); [all …]
|
| /AOO41X/main/extensions/test/ole/MfcControl/ |
| H A D | MfcControlCtl.cpp | 219 short CMfcControlCtrl::inShort(short val) in inShort() argument 222 sprintf( buf, "inByte: value= %d", val); in inShort() 224 return val+1; in inShort() 227 long CMfcControlCtrl::inLong(long val) in inLong() argument 230 sprintf( buf, "inLong: value= %d", val); in inLong() 232 return val+1; in inLong() 235 BSTR CMfcControlCtrl::inString(BSTR* val) in inString() argument 238 strResult= *val; in inString() 240 sprintf( buf, "inString: value= %S", *val); in inString() 246 float CMfcControlCtrl::inFloat(float val) in inFloat() argument [all …]
|
| H A D | MfcControlCtl.h | 69 afx_msg short inShort(short val); 70 afx_msg long inLong(long val); 71 afx_msg BSTR inString(BSTR* val); 72 afx_msg float inFloat(float val); 73 afx_msg double inDouble(double val); 74 afx_msg VARIANT inVariant(const VARIANT FAR& val); 75 afx_msg LPDISPATCH inObject(LPDISPATCH val); 76 afx_msg void outShort(short* val); 77 afx_msg void outLong(long* val); 78 afx_msg void outString(BSTR FAR* val); [all …]
|
| H A D | MfcControl.odl | 35 [id(1)] short inShort(short val); 36 [id(2)] long inLong(long val); 37 [id(3)] BSTR inString(BSTR* val); 38 [id(4)] float inFloat(float val); 39 [id(5)] double inDouble(double val); 40 [id(6)] VARIANT inVariant(VARIANT val); 41 [id(7)] IDispatch* inObject(IDispatch* val); 42 [id(8)] void outShort([out] short* val); 43 [id(9)] void outLong([out] long* val); 44 [id(10)] void outString([out] BSTR* val); [all …]
|
| /AOO41X/main/writerfilter/source/ooxml/ |
| H A D | Handler.cxx | 44 void OOXMLFootnoteHandler::attribute(Id name, Value & val) in attribute() argument 49 mpFastContext->resolveFootnote(val.getInt()); in attribute() 72 void OOXMLEndnoteHandler::attribute(Id name, Value & val) in attribute() argument 77 mpFastContext->resolveEndnote(val.getInt()); in attribute() 100 void OOXMLCommentHandler::attribute(Id name, Value & val) in attribute() argument 105 mpFastContext->resolveComment(val.getInt()); in attribute() 128 void OOXMLOLEHandler::attribute(Id name, Value & val) in attribute() argument 133 mpFastContext->resolveOLE(val.getString()); in attribute() 157 void OOXMLFooterHandler::attribute(Id name, Value & val) in attribute() argument 162 msStreamId = val.getString(); in attribute() [all …]
|
| /AOO41X/main/jurt/test/com/sun/star/uno/ |
| H A D | AnyConverter_Test.java | 204 byte val= AnyConverter.toByte(aByte); in test_toByte() 205 assure("", val == aByte.byteValue()); in test_toByte() 206 val= AnyConverter.toByte(anyByte); in test_toByte() 207 assure("", val == ((Byte)anyByte.getObject()).byteValue()); in test_toByte() 322 int val= AnyConverter.toInt(aByte); in test_toInt() local 323 assure("", val == aByte.byteValue()); in test_toInt() 324 val= AnyConverter.toInt(aShort); in test_toInt() 325 assure("", val == aShort.shortValue()); in test_toInt() 326 val= AnyConverter.toInt(aInt); in test_toInt() 327 assure("", val == aInt.intValue()); in test_toInt() [all …]
|
| /AOO41X/main/basic/source/sbx/ |
| H A D | sbxdec.cxx | 155 void SbxDecimal::setChar( sal_Unicode val ) in setChar() argument 157 VarDecFromUI2( (sal_uInt16)val, &maDec ); in setChar() 160 void SbxDecimal::setByte( sal_uInt8 val ) in setByte() argument 162 VarDecFromUI1( (sal_uInt8)val, &maDec ); in setByte() 165 void SbxDecimal::setShort( sal_Int16 val ) in setShort() argument 167 VarDecFromI2( (short)val, &maDec ); in setShort() 170 void SbxDecimal::setLong( sal_Int32 val ) in setLong() argument 172 VarDecFromI4( (long)val, &maDec ); in setLong() 175 void SbxDecimal::setUShort( sal_uInt16 val ) in setUShort() argument 177 VarDecFromUI2( (sal_uInt16)val, &maDec ); in setUShort() [all …]
|
| H A D | sbxdec.hxx | 74 void setChar( sal_Unicode val ); 75 void setByte( sal_uInt8 val ); 76 void setShort( sal_Int16 val ); 77 void setLong( sal_Int32 val ); 78 void setUShort( sal_uInt16 val ); 79 void setULong( sal_uInt32 val ); 80 bool setSingle( float val ); 81 bool setDouble( double val ); 82 void setInt( int val ); 83 void setUInt( unsigned int val );
|
| /AOO41X/main/icu/ |
| H A D | createmak.pl | 1009 my $val = shift; 1013 print "$special_file - $att - $val\n"; 1014 my @param = ($att,$val); 1020 if ( $ConfigSection && $att eq "Name" && $val eq "Release|Win32" ) { 1025 print "Ignoring Configuration $val\n" if ($is_debug); 1030 if ( $ConfigSection && $att eq "Name" && $val eq "Debug|Win32" ) { 1035 print "Ignoring Configuration $val\n" if ($is_debug); 1040 if ( $ConfigSection && $att eq "Name" && $val eq "Release|x64" ) { 1045 print "Ignoring Configuration $val\n" if ($is_debug); 1050 if ( $ConfigSection && $att eq "Name" && $val eq "Debug|x64" ) { [all …]
|
| /AOO41X/main/comphelper/source/misc/ |
| H A D | anytostring.cxx | 64 void const * val, typelib_TypeDescriptionReference * typeRef, in appendValue() argument 71 OSL_ASSERT( val != 0 ); in appendValue() 87 *static_cast< void * const * >(val) ), 16 ); in appendValue() 89 *static_cast< uno::XInterface * const * >(val), in appendValue() 115 buf, val, reinterpret_cast< in appendValue() 139 val ) + memberOffsets[ nPos ], in appendValue() 172 *static_cast< uno_Sequence * const * >(val); in appendValue() 201 uno_Any const * pAny = static_cast< uno_Any const * >(val); in appendValue() 208 typelib_TypeDescriptionReference * const * >(val) in appendValue() 214 static_cast< rtl_uString * const * >(val) ); in appendValue() [all …]
|
| /AOO41X/main/xmlreader/source/ |
| H A D | xmlreader.cxx | 440 sal_Int32 val = 0; in handleReference() local 448 val = 16 * val + (c - '0'); in handleReference() 450 val = 16 * val + (c - 'A') + 10; in handleReference() 452 val = 16 * val + (c - 'a') + 10; in handleReference() 456 if (val > 0x10FFFF) { // avoid overflow in handleReference() 470 val = 10 * val + (c - '0'); in handleReference() 474 if (val > 0x10FFFF) { // avoid overflow in handleReference() 491 OSL_ASSERT(val >= 0 && val <= 0x10FFFF); in handleReference() 492 if ((val < 0x20 && val != 0x9 && val != 0xA && val != 0xD) || in handleReference() 493 (val >= 0xD800 && val <= 0xDFFF) || val == 0xFFFE || val == 0xFFFF) in handleReference() [all …]
|
| /AOO41X/main/qadevOOo/runner/lib/ |
| H A D | TestParameters.java | 178 Object val = super.get(key); in get() local 179 if (val == null && DebugIsActive) { in get() 183 return val; in get() 193 Object val = super.get(key); in getBool() local 194 if (val != null) { in getBool() 195 if (val instanceof String) { in getBool() 196 String sVal = (String)val; in getBool() 206 if (val instanceof Boolean) in getBool() 207 return ((Boolean)val).booleanValue(); in getBool() 219 Object val = super.get(key); in getInt() local [all …]
|
| /AOO41X/main/winaccessibility/source/UAccCOM/ |
| H A D | MAccessible.cpp | 2645 sal_Int8 val; in get_OLECHARFromAny() local 2646 pAny >>= val; in get_OLECHARFromAny() 2647 swprintf( pChar, L"%d", val); in get_OLECHARFromAny() 2652 sal_Bool val; in get_OLECHARFromAny() local 2653 pAny >>= val; in get_OLECHARFromAny() 2654 swprintf( pChar, L"%d", val); in get_OLECHARFromAny() 2659 sal_Int8 val; in get_OLECHARFromAny() local 2660 pAny >>= val; in get_OLECHARFromAny() 2661 swprintf( pChar, L"%d", val); in get_OLECHARFromAny() 2666 SHORT val; in get_OLECHARFromAny() local [all …]
|
| /AOO41X/main/soltools/cpp/ |
| H A D | _eval.c | 36 long val; member 272 kwdefined->val = KDEFINED; /* activate special meaning of in eval() 275 kwdefined->val = NAME; in eval() 375 if (np && (np->val == KMACHINE)) in eval() 402 return vals[0].val; in eval() 424 rv2 = v2.val; in evalop() 427 rv1 = v1.val; in evalop() 597 if ((--vp)->val == 0) in evalop() 600 rv1 = v1.val; in evalop() 613 v1.val = rv1; in evalop() [all …]
|
| /AOO41X/main/soltools/mkdepend/ |
| H A D | parse.c | 401 char *val; local 404 val = def; 405 while (isalnum(*val) || *val == '_') 406 val++; 407 if (*val) 408 *val++ = '\0'; 409 while (*val == ' ' || *val == '\t') 410 val++; 412 if (!*val) 413 val = "1"; [all …]
|
| /AOO41X/main/winaccessibility/source/service/ |
| H A D | AccObject.cxx | 297 ::rtl::OUString val; in SetValue() 310 val = pRText->getText(); in SetValue() 312 m_pIMAcc->Put_XAccValue( val.getStr() ); in SetValue() 344 sal_uInt16 val; in GetMAccessibleValueFromAny() local 345 if (pAny >>= val) in GetMAccessibleValueFromAny() 347 strValue=::rtl::OUString::valueOf((sal_Int32)val); in GetMAccessibleValueFromAny() 359 Sequence< ::rtl::OUString > val; in GetMAccessibleValueFromAny() local 360 if (pAny >>= val) in GetMAccessibleValueFromAny() 363 int count = val.getLength(); in GetMAccessibleValueFromAny() 367 strValue += val[iIndex]; in GetMAccessibleValueFromAny() [all …]
|
| /AOO41X/main/oox/source/export/ |
| H A D | preset-definitions-to-shape-types.pl | 385 my ( $val ) = @_; 387 my $result = $variables{$val}; 390 return $val if ( $val =~ /^[0-9-]+$/ ); 392 error( "Unknown variable '$val'." ); 395 return $val; 548 my $val = value( $p1 ); 549 if ( $val =~ /^[0-9-]+$/ ) { 550 $p1 = sprintf( "%.0f", ( value( 'w' ) * $val / 100000 ) ); 555 my $val = value( ( value( $p1 ) eq value( $p3 ) )? $p2: $p1 ); 556 if ( $val =~ /^@([0-9]+)$/ ) { [all …]
|
| /AOO41X/main/cppuhelper/test/ |
| H A D | cfg_test.cxx | 105 OUString val; in ServiceImpl0() local 112 …STR("/services/com.sun.star.bootstrap.TestComponent0/context-properties/serviceprop1") ) >>= val ); in ServiceImpl0() 113 OSL_VERIFY( val.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("value of serviceprop1") ) ); in ServiceImpl0() 119 …lementations/com.sun.star.comp.bootstrap.TestComponent0/context-properties/implprop1") ) >>= val ); in ServiceImpl0() 120 OSL_VERIFY( val.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("value of implprop1") ) ); in ServiceImpl0() 128 OUString val; in initialize() local 130 OSL_VERIFY( rArgs[ 0 ] >>= val ); in initialize() 131 OSL_VERIFY( val.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("first argument") ) ); in initialize() 132 OSL_VERIFY( rArgs[ 1 ] >>= val ); in initialize() 133 OSL_VERIFY( val.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("second argument") ) ); in initialize() [all …]
|
| /AOO41X/main/oox/source/ppt/ |
| H A D | animvariantcontext.cxx | 79 bool val = attribs.getBool( XML_val, false ); in createFastChildContext() local 80 maValue = makeAny( val ); in createFastChildContext() 89 double val = attribs.getDouble( XML_val, 0.0 ); in createFastChildContext() local 90 maValue = makeAny( val ); in createFastChildContext() 95 sal_Int32 val = attribs.getInteger( XML_val, 0 ); in createFastChildContext() local 96 maValue = makeAny( val ); in createFastChildContext() 101 OUString val = attribs.getString( XML_val, OUString() ); in createFastChildContext() local 102 convertMeasure( val ); // ignore success or failure if it fails, use as is in createFastChildContext() 103 maValue = makeAny( val ); in createFastChildContext()
|