/trunk/main/offapi/com/sun/star/table/ |
H A D | XCell.idl | 52 this attribute's value to another cell's formula attribute would 54 the original text value of a string cell. The value of a 55 <em>value cell</em> will be formatted using the number format's 65 <p>When assigned, the string will be interpreted and a value, text 73 /** returns the floating point value of the cell. 75 <p>For a <em>value cell</em> the value is returned, for a 77 the result value of a formula is returned.</p> 83 /** sets a floating point value into the cell. 98 /** returns the error value of the cell.
|
/trunk/main/offapi/com/sun/star/report/ |
H A D | Calculation.idl | 33 /** Specifies how to calculate a value. 64 /** returns the largest value from the field. 68 /** returns the middle value in a sequence of numeric values. 72 /** returns the smallest value from the field. 76 /** returns the most frequently returning value from the field. 80 /** returns the Nth largest value from the field. 84 /** returns the Nth most commonly occurring value from the field. 88 /** returns the Nth smallest value from the field. 96 /** returns the value for a specified percentile in a Number or Currency field. 100 …/** returns how much each value in the field deviate from the mean or average value for that field.
|
H A D | XReportControlFormat.idl | 97 value of the text in the control. 169 /** optional property which contains the value of the case-mapping of the 180 /** contains the value of the locale. 201 For subscript characters the value is negative and for 237 value of the text in the control. 315 /** This value contains the height of the characters in point. 385 <p>The value refers to the original width which is denoted by 100, 448 /** This value contains the height of the characters in point. 517 /** contains the value of the locale. 526 /** This value contains the height of the characters in point. [all …]
|
/trunk/main/udkapi/com/sun/star/script/ |
H A D | FailReason.idl | 37 /** The given value does not fit in the range of the destination type. 41 /** The given value cannot be converted to a number. 45 /** The given value cannot be converted to an enumeration. 49 /** The given value cannot be converted to a boolean. 53 /** The given value is not an interface or cannot queried to the right interface. 57 /** The given value cannot be converted to right structure or exception type. 61 /** The type class of the given value is not supported. 65 /** The given value cannot be converted and none of the other reasons match. 69 /** This value is deprecated. Do not use. 74 /** This value is deprecated. Do not use.
|
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/util/ |
H A D | ColourConverter.java | 396 private int getClosest(int value) { in getClosest() argument 399 return getClosest(value, points); in getClosest() 407 private int getClosest(int value, int[] points) { in getClosest() argument 409 if (value == points[0] || value == points[1] || value == points[2]) { in getClosest() 410 return value; in getClosest() 413 if (value < points[1]) { in getClosest() 414 int x = value - points[0]; in getClosest() 418 int x = value - points[1]; in getClosest()
|
H A D | TwipsConverter.java | 42 public static float twips2cm(int value) { in twips2cm() argument 44 float inches = (float) value/1440; in twips2cm() 60 public static int cm2twips(float value) { in cm2twips() argument 62 int twips = (int) ((value/2.54)*1440); in cm2twips() 74 public static float twips2inches(int value) { in twips2inches() argument 76 return (float) value/1440; in twips2inches() 89 public static int inches2twips(float value) { in inches2twips() argument 91 return (int) (value*1440); in inches2twips()
|
/trunk/extras/l10n/source/nn/ |
H A D | localize.sdf | 21019 filter source\config\fragments\types\impress8.xcu 0 value impress8 UIName 0 nn Impress 8 2002-… 21020 filter source\config\fragments\types\math8.xcu 0 value math8 UIName 0 nn Math 8 2002-02-02 02:… 21024 filter source\config\fragments\types\calc8.xcu 0 value calc8 UIName 0 nn Calc 8 2002-02-02 02:… 21031 filter source\config\fragments\types\draw8.xcu 0 value draw8 UIName 0 nn Draw 8 2002-02-02 02:… 21032 filter source\config\fragments\types\chart8.xcu 0 value chart8 UIName 0 nn Chart 8 2002-02-02 … 21033 filter source\config\fragments\types\writer8.xcu 0 value writer8 UIName 0 nn Writer 8 2002-02-… 21086 filter source\config\fragments\filters\HTML_ui.xcu 0 value HTML UIName 0 nn HTML-dokument 2002… 21102 filter source\config\fragments\filters\draw8_ui.xcu 0 value draw8 UIName 0 nn ODF-teikning 200… 21110 filter source\config\fragments\filters\calc8_ui.xcu 0 value calc8 UIName 0 nn ODF-rekneark 200… 21144 filter source\config\fragments\filters\Text_ui.xcu 0 value Text UIName 0 nn Tekst 2002-02-02 0… [all …]
|
/trunk/main/toolkit/workben/layout/ |
H A D | editor.cxx | 90 static rtl::OUString anyToString (uno::Any value) in anyToString() argument 94 switch (value.getValueTypeClass()) { in anyToString() 96 return value.get<rtl::OUString>(); in anyToString() 112 bool val = value.get<sal_Bool>(); in anyToString() 127 static inline long anyToNatural (uno::Any value) in anyToNatural() argument 129 static inline double anyToDecimal (uno::Any value) in anyToDecimal() argument 130 { return anyToString( value ).toDouble(); } in anyToDecimal() 801 rtl::OUString value; in getValue() local 807 return value; in getValue() 1613 if ( value.compareToAscii( "0" ) ) in print() [all …]
|
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/sxc/ |
H A D | ColumnStyle.java | 135 private int parseColWidth(String value) { in parseColWidth() argument 139 if(value.indexOf("cm")!=-1) { in parseColWidth() 140 float widthCM = Float.parseFloat(value.substring(0,value.indexOf("c"))); in parseColWidth() 142 } else if(value.indexOf("inch")!=-1) { in parseColWidth() 143 float widthInch = Float.parseFloat(value.substring(0,value.indexOf("i"))); in parseColWidth() 157 private void handleAttribute(String attr, String value) { in handleAttribute() argument 160 colWidth = parseColWidth(value); in handleAttribute() 163 Debug.log(Debug.INFO, "ColumnStyle Unhandled: " + attr + "=" + value); in handleAttribute()
|
H A D | RowStyle.java | 134 private int parseRowHeight(String value) { in parseRowHeight() argument 138 if(value.indexOf("cm")!=-1) { in parseRowHeight() 139 float heightCM = Float.parseFloat(value.substring(0,value.indexOf("c"))); in parseRowHeight() 141 } else if(value.indexOf("inch")!=-1) { in parseRowHeight() 142 float heightInch = Float.parseFloat(value.substring(0,value.indexOf("i"))); in parseRowHeight() 157 private void handleAttribute(String attr, String value) { in handleAttribute() argument 160 rowHeight = parseRowHeight(value); in handleAttribute() 163 Debug.log(Debug.INFO, "RowStyle Unhandled: " + attr + "=" + value); in handleAttribute()
|
/trunk/main/basebmp/inc/basebmp/ |
H A D | truecolormaskaccessor.hxx | 98 red_shift = numberOfTrailingZeros<RedMask>::value, 99 green_shift = numberOfTrailingZeros<GreenMask>::value, 100 blue_shift = numberOfTrailingZeros<BlueMask>::value, 102 red_bits = bitcount<RedMask>::value, 103 green_bits = bitcount<GreenMask>::value, 104 blue_bits = bitcount<BlueMask>::value 195 void set(V const& value, Iterator const& i) const in set() argument 200 value) ), in set() 205 void set(V const& value, Iterator const& i, Difference const& diff) const in set() argument 210 value)), in set()
|
H A D | accessor.hxx | 59 void set(V const& value, Iterator const& i) const in set() argument 61 *i = vigra::detail::RequiresExplicitCast<value_type>::cast(value); in set() 65 void set(V const& value, Iterator const& i, Difference const& diff) const in set() argument 67 i[diff] = vigra::detail::RequiresExplicitCast<value_type>::cast(value); in set() 100 void set(V const& value, Iterator const& i) const in set() argument 102 i.set( vigra::detail::RequiresExplicitCast<value_type>::cast(value) ); in set() 106 void set(V const& value, Iterator const& i, Difference const& diff) const in set() argument 108 i.set( vigra::detail::RequiresExplicitCast<value_type>::cast(value), in set()
|
/trunk/main/javaunohelper/com/sun/star/lib/uno/helper/ |
H A D | PropertySet.java | 486 setPropertyValue(prop, value); in setPropertyValue() 501 if (value instanceof Any) in setPropertyValue() 502 bVoidValue= ((Any) value).getObject() == null; in setPropertyValue() 504 bVoidValue= value == null; in setPropertyValue() 512 if (value instanceof Any) in setPropertyValue() 515 bValueOk= checkType(value); in setPropertyValue() 995 Object value= null; in firePropertiesChangeEvent() local 998 value= getPropertyValue(prop); in firePropertiesChangeEvent() 1005 false, prop.Handle, value, value); in firePropertiesChangeEvent() 1035 Object value= null; in getPropertyValues() local [all …]
|
/trunk/main/offapi/com/sun/star/form/binding/ |
H A D | ValueBinding.idl | 46 /** defines a component which allows access to a single value 49 as well as (optionally) active broadcasting of value changes</p> 53 /** determines whether the value is currently readonly 56 represents a cell in a spreadsheet document, and whose value is readonly 59 <p>As long as this property is <TRUE/>, the value binding should throw 65 /** determines the relevance of the value represented by the binding 73 react in certain ways on the (ir)relevance of their bound value.</p> 87 /** allows read and write access to the value represented by this binding 91 /** allows other components to be notified when the value represented 95 actively notifying changes in it's value. Note, however, that in case [all …]
|
/trunk/main/l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/ |
H A D | XLIFFReader.java | 470 if ("SourceHelpText".equals(value)) { in startElement() 474 }else if ("TargetHelpText".equals(value)) { in startElement() 478 }else if ("DBType".equals(value)) { in startElement() 482 }else if ("Project".equals(value)) { in startElement() 486 }else if ("Filename".equals(value)) { in startElement() 490 }else if ("Type".equals(value)) { in startElement() 494 }else if ("GID".equals(value)) { in startElement() 498 }else if ("LID".equals(value)) { in startElement() 502 }else if ("HID".equals(value)) { in startElement() 506 }else if ("Platform".equals(value)) { in startElement() [all …]
|
/trunk/main/offapi/com/sun/star/text/ |
H A D | VertOrientation.idl | 40 // DocMerge from idl: value com::sun::star::text::VertOrientation::NONE 47 // DocMerge from idl: value com::sun::star::text::VertOrientation::TOP 54 // DocMerge from idl: value com::sun::star::text::VertOrientation::CENTER 61 // DocMerge from idl: value com::sun::star::text::VertOrientation::BOTTOM 68 // DocMerge from idl: value com::sun::star::text::VertOrientation::CHAR_TOP 75 // DocMerge from idl: value com::sun::star::text::VertOrientation::CHAR_CENTER 82 // DocMerge from idl: value com::sun::star::text::VertOrientation::CHAR_BOTTOM 89 // DocMerge from idl: value com::sun::star::text::VertOrientation::LINE_TOP 96 // DocMerge from idl: value com::sun::star::text::VertOrientation::LINE_CENTER 103 // DocMerge from idl: value com::sun::star::text::VertOrientation::LINE_BOTTOM
|
/trunk/main/sw/source/core/doc/ |
H A D | doc.cxx | 217 mbParaSpaceMax = value; in set() 223 mbTabCompat = value; in set() 226 mbAddFlyOffsets = value; in set() 257 mbOldLineSpacing = value; in set() 283 mbTableRowKeep = value; in set() 303 mbProtectForm = value; in set() 321 mbLastBrowseMode = value; in set() 324 mbHTMLMode = value; in set() 327 mbIsGlobalDoc = value; in set() 333 mbIsLabelDoc = value; in set() [all …]
|
/trunk/main/sal/qa/helper/gcov/ |
H A D | gcov_resultcompare.pl | 102 my $value; 104 while (($key, $value) = each %origlist) 110 if ($value < 100.00) 112 if ($cmpvalue > $value && $value < 90.0) 114 print "$key, $value, CMP:$cmpvalue\n"; 143 my $value = $2; 145 $list{$value} = $percent;
|
/trunk/main/sysui/desktop/share/ |
H A D | translate.pl | 111 ($locale, $value) = split(' = ', $line); 118 $value = substr($value, index($value, "\"") + 1, rindex($value, "\"") - 1); 121 $value=~s/%PRODUCTNAME/$productname/g; 125 print OUTFILE "$key\[$locale\]=$value\n"; 127 print OUTFILE "\t\[$locale\]$key=$value\n";
|
/trunk/main/salhelper/inc/salhelper/ |
H A D | future.hxx | 55 inline FutureValue (const value_type& value = value_type()) SAL_THROW(()) 56 : m_aValue (value) 69 inline void set (const value_type& value) SAL_THROW(()) in set() argument 71 m_aValue = value; in set() 96 inline Future (const value_type& value = value_type()) SAL_THROW(()) 97 : m_aValue (value) 100 inline void set (const value_type& value) SAL_THROW(()) in set() argument 103 m_aValue.set (value); in set()
|
/trunk/main/testtools/source/servicetests/ |
H A D | TestService.java | 70 public void setProp1(int value) { in setProp1() argument 71 prop1 = value; in setProp1() 120 public void setProp6(int value) { in setProp6() argument 121 prop6 = new Integer(value); in setProp6() 152 public void setProp7(int value) /*throws OptionalPropertyException*/ { in setProp7() argument 153 prop7 = new Integer(value); in setProp7() 172 public void setProp8Long(int value) /*throws OptionalPropertyException*/ in setProp8Long() argument 174 prop8 = value; in setProp8Long()
|
/trunk/main/offapi/com/sun/star/animations/ |
H A D | XAnimationNode.idl | 44 /** a value from <const>AnimationNodeType</const>. 63 one begin value is defined for this element.</li> 98 one begin value is defined for this element.</li> 127 this is a numeric value that specifies the number of iterations. 129 A fractional value describes a portion of the simple duration. 164 a value from <const>AnimationFill</const>. 171 /** the default value for the fill behavior for this element and all 179 … <li>The value <const>AnimationFill::INHERIT</const> specifies that the value of this attribute 192 a <atom>short</atom> value from <const>AnimationRestart</const>. 202 a value from <const>Restart</const>. [all …]
|
/trunk/main/sc/addin/datefunc/ |
H A D | dfa.cl | 127 * to this internal Date value. 156 * this function converts this internal Date value 253 * @param *r - return value for the StarCalc function 298 * @param *r - return value for the StarCalc function 299 * @param d1 - date value, start date 300 * @param d2 - date value, end date 345 * @param *r - return value for the StarCalc function 346 * @param d1 - date value, start date 347 * @param d2 - date value, end date 381 * @param *r - return value for the StarCalc function [all …]
|
/trunk/main/offapi/com/sun/star/inspection/ |
H A D | InteractiveSelectionResult.idl | 30 /** describes possible results of an interactive selection of a property value 39 /** The interactive selection of a property value was cancelled. 43 /** The interactive selection of a property value succeeded, and the 44 new property value chosen by the user has already been set at the 49 /** The interactive selection of a property value succeeded, a new 50 property value has been obtained, but not yet set at the inspected 53 <p>In this case, the obtained value is passed to the caller of 55 responsible for forwarding this value to the inspected component.</p> 59 /** The interactive selection of a property value is still pending.
|
/trunk/main/offapi/com/sun/star/drawing/ |
H A D | PolygonKind.idl | 40 // DocMerge from xml: value com::sun::star::drawing::PolygonKind::LINE 47 // DocMerge from xml: value com::sun::star::drawing::PolygonKind::POLY 54 // DocMerge from xml: value com::sun::star::drawing::PolygonKind::PLIN 61 // DocMerge from xml: value com::sun::star::drawing::PolygonKind::PATHLINE 68 // DocMerge from xml: value com::sun::star::drawing::PolygonKind::PATHFILL 75 // DocMerge from xml: value com::sun::star::drawing::PolygonKind::FREELINE 82 // DocMerge from xml: value com::sun::star::drawing::PolygonKind::FREEFILL 89 // DocMerge from xml: value com::sun::star::drawing::PolygonKind::PATHPOLY 96 // DocMerge from xml: value com::sun::star::drawing::PolygonKind::PATHPLIN
|