Home
last modified time | relevance | path

Searched refs:current (Results 1 – 25 of 666) sorted by relevance

12345678910>>...27

/AOO41X/main/i18npool/source/textconversion/
H A Dtextconversion_zh.cxx131 sal_Int32 current = 0; in getWordConversion() local
155 while (current < conversions[0].getLength()) { in getWordConversion()
156 offset[count] = nStartPos + currPos + (current * in getWordConversion()
158 newStr->buffer[count++] = conversions[0][current++]; in getWordConversion()
162 while (current < conversions[0].getLength()) in getWordConversion()
163 newStr->buffer[count++] = conversions[0][current++]; in getWordConversion()
175 current = (top + bottom) / 2; in getWordConversion()
176 const sal_Int32 result = word.compareTo(wordData + entry[current]); in getWordConversion()
178 top = current - 1; in getWordConversion()
180 bottom = current + 1; in getWordConversion()
[all …]
/AOO41X/main/i18nutil/source/utility/
H A DoneToOneMapping.cxx45 int current; in find() local
48 current = (top + bottom) / 2; in find()
49 if( nKey < mpTable[current].first ) in find()
50 top = current - 1; in find()
51 else if( nKey > mpTable[current].first ) in find()
52 bottom = current + 1; in find()
54 return mpTable[current].second; in find()
85 int i, j, high, low, current = -1; in makeIndex() local
94 if( high != current ) in makeIndex()
96 current = high; in makeIndex()
[all …]
/AOO41X/main/xmlsecurity/source/xmlsec/nss/
H A Dsanextension_nssimpl.cxx114 CERTGeneralName* current = nameList; in getAlternativeNames() local
119 switch (current->type) { in getAlternativeNames()
123 …otherNameProp.Name = ::rtl::OUString::createFromAscii(CERT_GetOidString(&current->name.OthName.oid… in getAlternativeNames()
125 Sequence< sal_Int8 > otherName( current->name.OthName.name.len ) ; in getAlternativeNames()
126 for( unsigned int r = 0; r < current->name.OthName.name.len ; r ++ ) in getAlternativeNames()
127 otherName[r] = *( current->name.OthName.name.data + r ) ; in getAlternativeNames()
136 …tAltNameEntry[i].Value <<= ::rtl::OUString((const sal_Char*)current->name.other.data, current->nam… in getAlternativeNames()
140 …tAltNameEntry[i].Value <<= ::rtl::OUString((const sal_Char*)current->name.other.data, current->nam… in getAlternativeNames()
159 …tAltNameEntry[i].Value <<= ::rtl::OUString((const sal_Char*)current->name.other.data, current->nam… in getAlternativeNames()
164 Sequence< sal_Int8 > ipAddress( current->name.other.len ) ; in getAlternativeNames()
[all …]
/AOO41X/ext_libraries/coinmp/
H A Dcoinmp-1.7.6.patch182 current=`expr $number_major + $number_minor`
188 current="$number_major"
195 - major=".$current"
196 - versuffix=".$current";
197 + major=.`expr $current - $age`
396 current=`expr $number_major + $number_minor`
402 current="$number_major"
409 - major=".$current"
410 - versuffix=".$current";
411 + major=.`expr $current - $age`
[all …]
/AOO41X/main/offapi/com/sun/star/mozilla/
H A DXProfileManager.idl56 the current refrence count for the given profile.
61 /** attempts to shutdown the current profile.
64 the current refrence count for the current profile.
69 /** attempts to get the current product.
72 the current used product.
77 /** attempts to get the current profile name.
80 the current used profile.
85 /** attempts to check whether the current profile locked or not
88 return sal_True is current profile is locked
93 /** attempts to set the current used profile name for the given product.
[all …]
/AOO41X/main/offapi/com/sun/star/sdb/
H A DXColumn.idl83 /** gets the value of a column in the current row as a String.
92 /** gets the value of a column in the current row as boolean.
101 /** gets the value of a column in the current row as a byte.
110 /** gets the value of a column in the current row as a short.
119 /** gets the value of a column in the current row as a long.
128 /** gets the value of a column in the current row as a hyper.
137 /** gets the value of a column in the current row as a float.
146 /** gets the value of a column in the current row as a double.
155 /** gets the value of a column in the current row as a byte array.
165 /** gets the value of a column in the current row as a date object.
[all …]
/AOO41X/main/l10ntools/scripts/
H A Dfast_merge.pl36 my @current;
70 @current = ();
73 push @current , $_;
78 @current = ();
83 push @current , $_ ;
88 if( $#current+1 ne 0 )
150 } @current ;
239 my $localizeFile = $merge_dir."\\".$current[ 0 ]->module."\\".$current[ 0 ]->file;
260 return , if ( $#current+1 eq 0 );
281 foreach my $elem ( @current )
/AOO41X/main/offapi/com/sun/star/xml/wrapper/
H A DXXMLDocumentWrapper.idl55 * Gets the current element.
57 * @return the current element in the SAX event stream
62 * Sets the current element.
64 * When the current element is replaced outside of this interface, then
65 * uses this method can update the current element pointer.
67 * @param element the new current element
72 * Removes the current element.
74 * When the current element is removed, then its parent element becomes
75 * the new current element.
80 * Checks whether an element is the current element.
[all …]
/AOO41X/main/offapi/com/sun/star/sdbc/
H A DXRow.idl84 /** gets the value of a column in the current row as a string.
95 /** gets the value of a column in the current row as boolean.
106 /** get the value of a column in the current row as a byte.
117 /** gets the value of a column in the current row as a short.
128 /** get the value of a column in the current row as an integer.
139 /** get the value of a column in the current row as a long.
150 /** gets the value of a column in the current row as a float.
161 /** gets the value of a column in the current row as a double.
172 /** gets the value of a column in the current row as a byte array.
184 /** gets the value of a column in the current row as a date object.
[all …]
H A DXResultSet.idl47 A ResultSet maintains a cursor pointing to its current row of
56 /** moves the cursor down one row from its current position.
61 first call to next makes the first row the current row; the
62 second call makes the second row the current row, and so on.
64 <p>If an input stream is open for the current row, a call
117 to determine whether the current row is the last row in the result set.
161 /** retrieves the current row number. The first row is number 1, the
164 the current position
226 when there is no current row, for example, when the cursor is positioned before
230 how many rows should be moved relative to the current row
[all …]
/AOO41X/main/basebmp/inc/basebmp/
H A Dpixeliterator.hxx226 pointer current() const in current() function in basebmp::PixelIterator
231 pointer current(int dx, int dy) const in current() function in basebmp::PixelIterator
305 return *current(); in get()
310 return *current(d.y, d.x); in get()
315 *current() = v; in set()
320 *current(d.y,d.x) = v; in set()
325 return *current(); in operator *()
330 return current(); in operator ->()
335 return *current(d.x,d.y); in operator []()
340 return *current(dx,dy); in operator ()()
/AOO41X/main/offapi/com/sun/star/util/
H A DXOfficeInstallationDirectories.idl34 /** encapsulates access to the current office installation directory and
36 containing relocatable (not absolute) references to the current office
40 current office installation directory must be made persistent and re-read
49 /** returns the absolute URL containing the directory of the current office
53 the absolute URL containing the directory of the current office
59 /** returns the absolute URL containing the directory where the current
64 the absolute URL containing the directory of the current office
72 <p>If the given URL contains an absolute reference to the current office
80 not contain a reference to the current office installation or to the office
92 the current office installation directory or for the office user data
[all …]
/AOO41X/main/offapi/com/sun/star/form/runtime/
H A DFormFeature.idl57 form, the fact that the current record count is not yet known (since not all
66 /// moves the form to the record before the current record, if there is any
69 /// moves the form to the record after the current record, if there is any
78 /** saves all changes in the form's current record, including changes in the current
83 /** revertsall changes in the form's current record, including changes in the current
88 /** deletes the current record, while honoring any registered
106 current value
135 /** refreshs the current control
137 … <p>Basically, this means calling XRefreshable::refresh on the current control, if it supports
H A DXFormController.idl79 check their current value when the current record is to be saved to the database.</p>
82 …will be asked to validate the current control content. If this fails, the message provided by the …
112 …Example: The URL suffix for deleting the current record is <em>deleteRecord</em>, so the complete …
157 <td>moves the form to the record preceding the current one</td>
162 <td>moves the form to the record after the current one</td>
177 …<td>Commits any potentially pending changes in the current control, and saves the current record to
183 <td>reverts the changes done to the current record. Basically, this means refreshing the
184 current row from the database, and updating all controls with the new content.</td>
189 <td>deletes the current record, after asking the user for confirmation.</td>
199 …<td>Adds an order clause to the form, to sort it ascending by the field which the current control …
[all …]
/AOO41X/main/offapi/com/sun/star/sheet/
H A DXCellRangesQuery.idl63 the visible (not hidden) cells of the current cell range(s).
72 the empty cells of the current cell range(s).
88 all cells of the current cell range(s) with the specified
102 all formula cells of the current cell range(s) with the
112 <p>This method takes each column of the current cell range(s) and
121 all cells of the current cell range(s) which are different
131 <p>This method takes each row of the current cell range(s) and
140 all cells of the current cell range(s) which are different
148 /** intersects the current cell range(s) with the specified cell range.
154 all cells of the current cell range(s) which are contained
/AOO41X/main/solenv/bin/modules/
H A DEis.pm118 my $current = $self->current_proxy(0);
125 if ( !$self->proxy_list->[$current] ) {
135 my $proxy = $self->proxy_list()->[$current];
152 my $current = $self->current_proxy();
154 if ( $current == $#proxies ) {
158 $self->current_proxy(++$current);
159 my $next_proxy = $self->proxy_list()->[$current];
/AOO41X/main/offapi/com/sun/star/configuration/backend/
H A DUpdatableLayer.idl76 composite, i.e <type>XCompositeLayer</type>) of the current layer and
80 <p> For the different current/replacement layer combinations, we have:
83 <dd>the provided layer's contents replace the current one's.</dd>
87 provided layer are used to replace the corresponding current
88 layer contents. Sublayers present in the current layer but
90 in the provided layer but not in the current one are added to
91 the current layer.
96 are merged into one whose contents replace the current layer.
101 are then used to replace the current layer as described above.
/AOO41X/main/i18npool/source/breakiterator/
H A Dgendict.cxx79 sal_Unicode current = 0; in SAL_IMPLEMENT_MAIN_WITH_ARGS() local
93 if (*u != current) { in SAL_IMPLEMENT_MAIN_WITH_ARGS()
94 if (*u < current) in SAL_IMPLEMENT_MAIN_WITH_ARGS()
95 printf("u %x, current %x, count %d, lenArrayCount %d\n", *u, current, in SAL_IMPLEMENT_MAIN_WITH_ARGS()
97 current = *u; in SAL_IMPLEMENT_MAIN_WITH_ARGS()
98 charArray[current] = lenArrayCount; in SAL_IMPLEMENT_MAIN_WITH_ARGS()
115 charArray[current+1] = lenArrayCount; in SAL_IMPLEMENT_MAIN_WITH_ARGS()
/AOO41X/main/offapi/com/sun/star/form/
H A DXGrid.idl38 of the current cell in a grid control.
40 <p>Note that a grid control does not allow free control over the current row:
42 <type scope="com::sun::star::form::component">DataForm</type>. Thus, the <em>current
43 row</em> of the grid control always equals the current row of the
46 The current column of a grid control, whoever, can be freely controlled.</p>
56 /** retrieves the current column position.
62 /** sets the current column position.
/AOO41X/main/scripting/java/org/openoffice/idesupport/xml/
H A DManifest.java148 int current; in replaceNewlines() local
150 while ((current = reader.read()) != -1) { in replaceNewlines()
151 if (((char)current == '\n' || (char)current == ' ') && in replaceNewlines()
155 out.write(current); in replaceNewlines()
156 previous = current; in replaceNewlines()
/AOO41X/main/offapi/com/sun/star/chart/
H A DX3DDefaultSetter.idl43 /** The result may depend on the current chart type and the current shade mode.
47 /** sets a suiteable default for the rotation of the current 3D chart.
48 The result may depend on the current chart type.
52 /** set suiteable defaults for the illumination of the current 3D chart.
53 …ndent on other 3D settings as rotation or shade mode. It may depend on the current chart type also.
/AOO41X/main/xmlhelp/source/cxxhelp/provider/
H A Ddatabases.cxx501 rtl::OUString current,lang_,program,startid,title,heading,fulltext; in getStaticInformationForModule() local
511 current = rtl::OUString( lineBuffer,pos ); in getStaticInformationForModule()
513 if( current.compareToAscii( "Title",5 ) == 0 ) in getStaticInformationForModule()
515 title = current.copy( current.indexOf(sal_Unicode( '=' ) ) + 1 ); in getStaticInformationForModule()
517 else if( current.compareToAscii( "Start",5 ) == 0 ) in getStaticInformationForModule()
519 startid = current.copy( current.indexOf('=') + 1 ); in getStaticInformationForModule()
521 else if( current.compareToAscii( "Language",8 ) == 0 ) in getStaticInformationForModule()
523 lang_ = current.copy( current.indexOf('=') + 1 ); in getStaticInformationForModule()
525 else if( current.compareToAscii( "Program",7 ) == 0 ) in getStaticInformationForModule()
527 program = current.copy( current.indexOf('=') + 1 ); in getStaticInformationForModule()
[all …]
/AOO41X/main/offapi/com/sun/star/rendering/
H A DXSimpleCanvas.idl65 the current transformation, clip and font are persistently
78 as the current font for text output.<p>
128 /** Set the current transform matrix.<p>
162 Text to render. The text color is the current pen color.
217 /** Request the font metrics of the current font.<p>
246 /** Retrieve current clip rect
252 /** Retrieve current transformation matrix
271 with the current fill color; when false, the current pen color
/AOO41X/test/testcommon/source/org/openoffice/test/common/
H A DSystemUtil.java483 StringBuffer current = new StringBuffer(); in parseCommandLine() local
491 current.append(token); in parseCommandLine()
498 current.append(token); in parseCommandLine()
507 if (current.length() > 0) { in parseCommandLine()
508 arguments.add(current.toString()); in parseCommandLine()
509 current = new StringBuffer(); in parseCommandLine()
512 current.append(token); in parseCommandLine()
517 if (current.length() > 0) in parseCommandLine()
518 arguments.add(current.toString()); in parseCommandLine()
/AOO41X/main/offapi/com/sun/star/ui/dialogs/
H A DXWizard.idl48 depending on the current situation in the wizard, see below).</p>
57 …of the wizard, where the user is at step <em>k</em> of the current path, the <em>potential</em> or…
58 …paths are those whose first <em>k</em> steps are the same as in the current path. Obviously, there…
59 …potential path in every situation: the current one. If there is more than one, then the future ste…
90 /** provides access to the current page of the wizard
123 …the method will fail if in the current state of the wizard, it is not allowed to advance to a next…
154 …<p>For instance, the <em>Next</em> button is disabled if the current page's <member>XWizardPage::c…
183 …reviously active (if any), where <code>k</code> is the index of the current page within the current
189 …Now if the first path is active, and your current state is <code>1</code>, then you can easily swi…
191 …However, if your current state is <code>2</code>, then you can not switch to the second path anymo…
[all …]

12345678910>>...27