| /aoo41x/main/extensions/test/ole/AxTestComponents/ | 
| H A D | Basic.cpp | 57 	m_bool = val;  in inBool()62 	m_byte = val;  in inByte()
 68 	m_short = val;  in inShort()
 74 	m_long = val;  in inLong()
 80 	m_bstr = val;  in inString()
 86 	m_float = val;  in inFloat()
 102 	m_var1 = val;	  in inVariant()
 118 	m_obj = val;  in inObject()
 210 	if (*val)  in inoutObject()
 212 	*val = m_obj;  in inoutObject()
 [all …]
 
 | 
| H A D | Basic.h | 213 	STDMETHOD(inCurrency)(CY val);214 	STDMETHOD(outCurrency)(CY* val);
 215 	STDMETHOD(inoutCurrency)(CY* val);
 216 	STDMETHOD(inDate)(DATE val);
 217 	STDMETHOD(outDate)(DATE* val);
 218 	STDMETHOD(inoutDate)(DATE* val);
 223 	STDMETHOD(inDecimal)(DECIMAL val);
 228 	STDMETHOD(inSCode)(SCODE val);
 229 	STDMETHOD(outScode)(SCODE* val);
 230 	STDMETHOD(inoutSCode)(SCODE* 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);
 63 		[id(25), helpstring("method outLong")] HRESULT outLong([out] long* val);
 168 		[id(90), helpstring("method inDate")] HRESULT inDate([in] DATE val);
 180 		[id(99), helpstring("method inSCode")] HRESULT inSCode([in] SCODE val);
 [all …]
 
 | 
| /aoo41x/main/testtools/source/bridgetest/cli/ | 
| H A D | cli_vb_testobj.vb | 449         Return val455         Return val
 461         Return val
 467         Return val
 473         Return val
 479         Return val
 485         Return val
 492         Return val
 498         Return val
 504         Return val
 [all …]
 
 | 
| H A D | cli_cs_testobj.cs | 428         return val;  in setDim2()434         return val;  in setDim3()
 440         return val;  in setSequenceAny()
 446         return val;  in setSequenceBool()
 452         return val;  in setSequenceByte()
 458         return val;  in setSequenceChar()
 464         return val;  in setSequenceShort()
 470         return val;  in setSequenceLong()
 476         return val;  in setSequenceHyper()
 482         return val;  in setSequenceFloat()
 [all …]
 
 | 
| /aoo41x/main/qadevOOo/tests/java/ifc/accessibility/ | 
| H A D | _XAccessibleValue.java | 58     private Object val = null;  field in _XAccessibleValue85         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()
 257         if (util.utils.isVoid(val)) {
 280         if (util.utils.isVoid(val)) {
 292         if (val instanceof Integer) {
 301         if (val instanceof Integer) {
 304         else if (val instanceof Short) {
 [all …]
 
 | 
| /aoo41x/main/sw/inc/ | 
| H A D | io.hxx | 74 	SwIOin& operator>>(char& val);76 	SwIOin& operator>>(char* val);
 78 	SwIOin& operator>>(short& val);
 80 	SwIOin& operator>>(long& val);
 102 	SwIOout& operator<<(char val);
 104 	SwIOout& operator<<(char* val);
 106 	SwIOout& operator<<(short val);
 108 	SwIOout& operator<<(long val);
 132 	SwIOinout& operator>>(char& val);
 147 	SwIOinout& operator<<(char val);
 [all …]
 
 | 
| /aoo41x/main/extensions/test/ole/MfcControl/ | 
| H A D | MfcControlCtl.cpp | 224 	return val+1;  in inShort()232 	return val+1;  in inLong()
 238 	strResult= *val;  in inString()
 251 	return val+1;  in inFloat()
 259 	return val+1;  in inDouble()
 303 	*val= 123;  in outShort()
 308 	*val= 1234;  in outLong()
 318 	*val= 3.14f;  in outFloat()
 323 	*val= 3.145;  in outDouble()
 329 	val->vt= VT_BSTR;  in outVariant()
 [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);
 76 	afx_msg void outShort(short* val);
 77 	afx_msg void outLong(long* val);
 78 	afx_msg void outString(BSTR FAR* val);
 79 	afx_msg void outFloat(float* val);
 80 	afx_msg void outDouble(double* 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);
 42 			[id(8)] void outShort([out] short* val);
 43 			[id(9)] void outLong([out] long* val);
 44 			[id(10)] void outString([out] BSTR* val);
 45 			[id(11)] void outFloat([out] float* val);
 [all …]
 
 | 
| /aoo41x/main/writerfilter/source/ooxml/ | 
| H A D | Handler.cxx | 77         mpFastContext->resolveEndnote(val.getInt());  in attribute()162         msStreamId = val.getString();  in attribute()
 165         mnType = val.getInt();  in attribute()
 194         msStreamId = val.getString();  in attribute()
 197         mnType = val.getInt();  in attribute()
 242         mnType = val.getInt();  in attribute()
 245     	mnClear = val.getInt();  in attribute()
 275             (val.getProperties());  in attribute()
 316         mFieldCode += val.getString();  in attribute()
 321         mFieldCode += val.getString();  in attribute()
 [all …]
 
 | 
| /aoo41x/main/jurt/test/com/sun/star/uno/ | 
| H A D | AnyConverter_Test.java | 324         val= AnyConverter.toInt(aShort);  in test_toInt()326         val= AnyConverter.toInt(aInt);  in test_toInt()
 332         val= AnyConverter.toInt(anyInt);  in test_toInt()
 393         val= AnyConverter.toLong(aInt);  in test_toLong()
 395         val= AnyConverter.toLong(aLong);  in test_toLong()
 533         assure("", val <= (float1 + 0.1) || val >= (float1 - 0.1));  in test_toDouble()
 577         val= AnyConverter.toObject(  in test_toObject()
 579         assure("", val == null);  in test_toObject()
 631         assure("", aStr.equals(val));  in test_toString()
 687         assure("", val == aType);  in test_toType()
 [all …]
 
 | 
| /aoo41x/main/basic/source/sbx/ | 
| H A D | sbxdec.cxx | 199 	setLong( (sal_Int32)val );  in setInt()362 void SbxDecimal::setChar( sal_Unicode val )		{ (void)val; }  in setChar()  argument
 363 void SbxDecimal::setByte( sal_uInt8 val )			{ (void)val; }  in setByte()  argument
 364 void SbxDecimal::setShort( sal_Int16 val )			{ (void)val; }  in setShort()  argument
 365 void SbxDecimal::setLong( sal_Int32 val )			{ (void)val; }  in setLong()  argument
 366 void SbxDecimal::setUShort( sal_uInt16 val )		{ (void)val; }  in setUShort()  argument
 367 void SbxDecimal::setULong( sal_uInt32 val )			{ (void)val; }  in setULong()  argument
 368 bool SbxDecimal::setSingle( float val )			{ (void)val; return false; }  in setSingle()  argument
 369 bool SbxDecimal::setDouble( double val )		{ (void)val; return false; }  in setDouble()  argument
 370 void SbxDecimal::setInt( int val )				{ (void)val; }  in setInt()  argument
 [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/comphelper/source/misc/ | 
| H A D | anytostring.cxx | 71     OSL_ASSERT( val != 0 );  in appendValue()89             *static_cast< uno::XInterface * const * >(val),  in appendValue()
 115                     buf, val, reinterpret_cast<  in appendValue()
 172                     *static_cast< uno_Sequence * const * >(val);  in appendValue()
 214             static_cast< rtl_uString * const * >(val) );  in appendValue()
 263         if (*static_cast< sal_Bool const * >(val) != sal_False)  in appendValue()
 270         sal_Unicode c = *static_cast< sal_Unicode const * >(val);  in appendValue()
 281         buf.append( *static_cast< float const * >(val) );  in appendValue()
 284         buf.append( *static_cast< double const * >(val) );  in appendValue()
 299         buf.append( *static_cast< sal_Int32 const * >(val) );  in appendValue()
 [all …]
 
 | 
| /aoo41x/main/xmlreader/source/ | 
| H A D | xmlreader.cxx | 440         sal_Int32 val = 0;  in handleReference()  local448                     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()
 470                     val = 10 * val + (c - '0');  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()
 504         if (val < 0x80) {  in handleReference()
 507         } else if (val < 0x800) {  in handleReference()
 [all …]
 
 | 
| /aoo41x/main/qadevOOo/runner/lib/ | 
| H A D | TestParameters.java | 178         Object val = super.get(key);  in get()  local183         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()
 219         Object val = super.get(key);  in getInt()  local
 220         if ( val != null ) {  in getInt()
 221             if (val instanceof Integer) {  in getInt()
 [all …]
 
 | 
| /aoo41x/main/icu/ | 
| H A D | createmak.pl | 998         my $val = shift;1002             print "$special_file - $att - $val\n";
 1003             my @param = ($att,$val);
 1029            $configelements{$config}{$att} = $val;
 1055            $configelements{$config}{$att} = $val;
 1058            $configelements{$config}{$att} = $val;
 1061            $configelements{$config}{$att} = $val;
 1064            $configelements{$config}{$att} = $val;
 1067            $configelements{$config}{$att} = $val;
 1070            $configelements{$config}{$att} = $val;
 [all …]
 
 | 
| /aoo41x/main/winaccessibility/source/UAccCOM/ | 
| H A D | MAccessible.cpp | 2645 			sal_Int8 val;  in get_OLECHARFromAny()  local2646 			pAny >>= val;  in get_OLECHARFromAny()
 2652 			sal_Bool val;  in get_OLECHARFromAny()  local
 2653 			pAny >>= val;  in get_OLECHARFromAny()
 2659 			sal_Int8 val;  in get_OLECHARFromAny()  local
 2666 			SHORT val;  in get_OLECHARFromAny()  local
 2673 			USHORT val;  in get_OLECHARFromAny()  local
 2680 			LONG val;  in get_OLECHARFromAny()  local
 2687 			ULONG val;  in get_OLECHARFromAny()  local
 2694 			FLOAT val;  in get_OLECHARFromAny()  local
 [all …]
 
 | 
| /aoo41x/main/soltools/cpp/ | 
| H A D | _eval.c | 36     long val;  member275     kwdefined->val = NAME;  in eval()
 402     return vals[0].val;  in eval()
 424             rv2 = v2.val;  in evalop()
 427         rv1 = v1.val;  in evalop()
 613         v1.val = rv1;  in evalop()
 630     v.val = 0;  in tokval()
 635             v.val = 0;  in tokval()
 640                 v.val = 1;  in tokval()
 690             v.val = n;  in tokval()
 [all …]
 
 | 
| /aoo41x/main/soltools/mkdepend/ | 
| H A D | parse.c | 401     char *val;  local404     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()
 344         sal_uInt16 val;  in GetMAccessibleValueFromAny()  local
 345         if (pAny >>= val)  in GetMAccessibleValueFromAny()
 359         Sequence< ::rtl::OUString > val;  in GetMAccessibleValueFromAny()  local
 360         if (pAny >>= val)  in GetMAccessibleValueFromAny()
 374         double val;  in GetMAccessibleValueFromAny()  local
 375         if (pAny >>= val)  in GetMAccessibleValueFromAny()
 382         sal_Int32 val;  in GetMAccessibleValueFromAny()  local
 383         if (pAny >>= val)  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-]+$/ ) {
 556                 if ( $val =~ /^@([0-9]+)$/ ) {
 923                     $variables{$adj_no} = $val;
 926                     $adjust = $val;
 [all …]
 
 | 
| /aoo41x/main/cppuhelper/test/ | 
| H A D | cfg_test.cxx | 105     OUString val;  in ServiceImpl0()  local112 …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()
 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()
 134     OSL_VERIFY( rArgs[ 2 ] >>= val );  in initialize()
 [all …]
 
 | 
| /aoo41x/main/oox/source/ppt/ | 
| H A D | animvariantcontext.cxx | 79 			bool val = attribs.getBool( XML_val, false );  in createFastChildContext()  local80 			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()
 
 |