Home
last modified time | relevance | path

Searched refs:index (Results 51 – 75 of 949) sorted by relevance

12345678910>>...38

/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/sdbcx/
H A DOIndexColumnContainer.java43 private OIndex index; field in OIndexColumnContainer
45 …public OIndexColumnContainer(Object lock, OIndex index, List<String> columnNames) throws ElementEx… in OIndexColumnContainer() argument
47 this.index = index; in OIndexColumnContainer()
58 Object catalog = index.getTable().getPropertyValue(PropertyIds.CATALOGNAME.name); in createObject()
59 …String schema = AnyConverter.toString(index.getTable().getPropertyValue(PropertyIds.SCHEMANAME.nam… in createObject()
60 … String table = AnyConverter.toString(index.getTable().getPropertyValue(PropertyIds.NAME.name)); in createObject()
65 …results = index.getTable().getConnection().getMetaData().getIndexInfo(catalog, schema, table, fals… in createObject()
81 … results = index.getTable().getConnection().getMetaData().getColumns(catalog, schema, table, name); in createObject()
120 protected void dropObject(int index, String name) throws SQLException { in dropObject() argument
/trunk/main/xmlsecurity/source/helper/
H A Dxsecsign.cxx207 int index = findSignatureInfor( securityId ); in collectToSign() local
209 if ( index == -1 ) in collectToSign()
226 int index = findSignatureInfor( securityId ); in signAStream() local
228 if (index == -1) in signAStream()
236 m_vInternalSignatureInformations[index].addReference(type, uri, -1); in signAStream()
256 int index = findSignatureInfor( nSecurityId ); in setX509Certificate() local
258 if ( index == -1 ) in setX509Certificate()
270 = m_vInternalSignatureInformations[index].signatureInfor; in setX509Certificate()
282 int index = findSignatureInfor( nSecurityId ); in setDate() local
284 if ( index == -1 ) in setDate()
[all …]
/trunk/main/offapi/com/sun/star/text/
H A DUserIndex.idl42 in this index.
47 /** determines if the document index marks are included in this index.
52 used as index level of the index entry.*/
55 /** determines if tables are included in the index.
59 /** determines if text frames are included in the index.
63 /** determines if graphic objects are included in the index.
67 /** determines if embedded objects are included in the index.
70 /** contains the name of the user index.
/trunk/main/scripting/source/provider/
H A DProviderCache.cxx106 sal_Int32 index = 0; in getAllProviders() local
107 for ( index = 0; h_it != h_itEnd; ++h_it, index++ ) in getAllProviders()
132 if ( providerIndex < index ) in getAllProviders()
172 for ( sal_Int32 index = 0; index < serviceNames.getLength(); index++ ) in populateCache() local
174 …if ( serviceNames[ index ].indexOf( searchString ) == 0 && !isInBlackList( serviceNames[ index ] … in populateCache()
176 serviceName = serviceNames[ index ]; in populateCache()
/trunk/main/stoc/source/uriproc/
H A DUriSchemeParser_vndDOTsunDOTstarDOTscript.cxx63 int parseEscaped(rtl::OUString const & part, sal_Int32 * index) { in parseEscaped() argument
64 if (part.getLength() - *index < 3 || part[*index] != '%') { in parseEscaped()
67 int n1 = getHexWeight(part[*index + 1]); in parseEscaped()
68 int n2 = getHexWeight(part[*index + 2]); in parseEscaped()
72 *index += 3; in parseEscaped()
80 while (*index < part.getLength()) { in parsePart()
81 sal_Unicode c = part[*index]; in parsePart()
85 sal_Int32 i = *index; in parsePart()
140 *index = i; in parsePart()
143 ++*index; in parsePart()
[all …]
/trunk/main/xmerge/source/wordsmith/java/org/openoffice/xmerge/converter/xml/sxw/wordsmith/
H A Dutil.java41 static int intFrom2bytes(byte[] data, int index) { in intFrom2bytes() argument
42 return (((data[index] & 0xFF) << 8) in intFrom2bytes()
43 | (data[index+1] & 0xFF)); in intFrom2bytes()
56 static int intFrom4bytes(byte[] data, int index) { in intFrom4bytes() argument
57 return (((data[index] & 0xFF) << 24) in intFrom4bytes()
58 | ((data[index + 1] & 0xFF) << 16) in intFrom4bytes()
59 | ((data[index + 2] & 0xFF) << 8) in intFrom4bytes()
60 | (data[index+3] & 0xFF)); in intFrom4bytes()
/trunk/main/jurt/demo/com/sun/star/demo/
H A DDemoServer.java70 int index = dcp.indexOf(':'); in main() local
71 String url = dcp.substring(0, index).trim(); in main()
72 dcp = dcp.substring(index + 1).trim(); in main()
74 index = dcp.indexOf(';'); in main()
75 conDcp = dcp.substring(0, index).trim(); in main()
76 dcp = dcp.substring(index + 1).trim(); in main()
78 index = dcp.indexOf(';'); in main()
79 protDcp = dcp.substring(0, index).trim(); in main()
80 dcp = dcp.substring(index + 1).trim(); in main()
/trunk/main/configmgr/source/
H A Dpartial.cxx48 rtl::OUString const & path, sal_Int32 * index, rtl::OUString * segment) in parseSegment() argument
51 index != 0 && *index >= 0 && *index <= path.getLength() && in parseSegment()
53 if (path[(*index)++] == '/') { in parseSegment()
57 *index = Data::parseSegment( in parseSegment()
58 path, *index, &name, &setElement, &templateName); in parseSegment()
59 if (*index != -1) { in parseSegment()
61 return *index == path.getLength(); in parseSegment()
/trunk/main/udkapi/com/sun/star/script/
H A DXEventAttacherManager.idl57 /** registers one event for an object identified by its index.
59 <p>If any object is attached under this index, then this
78 <p>If any object is attached under this index, then this
100 used to register events. If this event at this index has
121 <p>If the events at this index have been attached to any
142 <p>If any events are registered at this index, they will
143 be revoked, too. So if the events at this index have been
154 all events registered for the given object index.
157 an index previously inserted with the method insertEntry.
167 for the given index to the given object.
[all …]
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/
H A DDbTools.java519 int index = 0; in createStandardColumnPart() local
521 typename = typename.substring(0, index); in createStandardColumnPart()
859 parameters.setLong(index, AnyConverter.toLong(any)); in setObject()
865 parameters.setNull(index, DataType.VARCHAR); in setObject()
874 parameters.setByte(index, AnyConverter.toByte(any)); in setObject()
877 parameters.setShort(index, AnyConverter.toShort(any)); in setObject()
886 parameters.setInt(index, AnyConverter.toInt(any)); in setObject()
901 parameters.setBytes(index, (byte[])array); in setObject()
912 parameters.setDate(index, (Date)object); in setObject()
914 parameters.setTime(index, (Time)object); in setObject()
[all …]
/trunk/main/offapi/com/sun/star/rendering/
H A DXBezierPolyPolygon2D.idl65 The index of the polygon to start point retrieval with. This
66 index must be in the range [0,numPolygons-1].
73 The index of the first point in the first polygon to
95 data, or insert the segments at the given index
99 index must be in the range [0,numPolygons], and the insertion
105 as the polygon index. If nPolygonIndex is -1, the given
121 The index of the polygon where the point to be extract is
122 contained within. This index must be in the range
126 The index of the point in the polygon specified by
154 The index of the polygon to insert the point in. This index
[all …]
/trunk/main/offapi/com/sun/star/accessibility/
H A DXAccessibleHypertext.idl75 This index specifies the hyperlink to return.
78 If the given index is valid, i.e. lies in the intervall from 0
80 hyperlink object is returned. If the index is invalid then an
87 /** Returns the index of the hyperlink that is associated with this
88 character index.
91 spans (includes) the given character index.</p>
94 Index of the character for which to return the link index. If
96 the text containting the link, then the character index is only
102 Returns the index of the hyperlink that is associated with this
103 character index, or throws an exception if there is no hyperlink
[all …]
H A DXAccessibleMultiLineText.idl39 /** Implement this interface to give provide a mapping between text index
53 /** Returns the line number at the specified index.
56 provides a mapping from a text index to the corresponding line number.
64 Returns the line number of the specified text index.
67 if the index is invalid.
79 with the index of the last character. In a loop, the last line
81 of the returned value is equal to the index of the last
103 the index returned by <member>XAccessibleText::getCaretPosition</member>
108 line when the <b>End</b> key gets pressed. Since the index of this position
129 line when the <b>End</b> key gets pressed. Since the index of this position
[all …]
/trunk/main/offapi/com/sun/star/i18n/
H A DXExtendedIndexEntrySupplier.idl47 <li>Provide method to compare index entry.
62 Returns index algorithm list for specific locale
75 Returns phonetic candidate for index entry for the locale.
82 Loads index algorithm for the locale.
90 comparing index entries
102 Returns index key.
114 Language attribute for index and phonetic entry. <br/>
117 be used in the index key generation.
124 Compares index entries
139 Language attribute for index and phonetic entry. <br/>
[all …]
/trunk/main/offapi/com/sun/star/awt/
H A DXAnimatedImages.idl77 /** returns the URLs of the image set with the given index
80 …the index of the set those image URLs are to be retrieved. Must be greater than or equal to <code>…
84 if the <code>i_index</code> is not a valid index.
96 /** sets the URLs of the image set with the given index
99 …the index at which a new image set should be inserted. Must be greater than or equal to <code>0</c…
105 if the <code>i_index</code> is not a valid index.
118 /** replaces the image set given by index with a new one
128 if the <code>i_index</code> is not a valid index.
142 /** removes the image set with the given index
145 the index of the set to remove. Must be greater than or equal to <code>0</code>,
[all …]
/trunk/main/dbaccess/source/ui/dlg/
H A Dindexdialog.src70 Command = ".index:createNew" ;
77 Command = ".index:dropCurrent" ;
84 Command = ".index:renameCurrent" ;
91 Command = ".index:saveCurrent" ;
98 Command = ".index:resetCurrent" ;
187 Text [ en-US ] = "Do you really want to delete the index '$name$'?" ;
192 Text [ en-US ] = "index" ;
207 Message [ en-US ] = "The index must contain at least one field." ;
214 Message [ en-US ] = "Do you want to save the changes made to the current index?" ;
221 Text [ en-US ] = "There is already another index named \"$name$\"." ;
[all …]
/trunk/main/jurt/java/jurt/src/main/java/com/sun/star/comp/urlresolver/
H A DUrlResolver.java80 int index = dcp.indexOf(':'); in resolve() local
81 String url = dcp.substring(0, index).trim(); in resolve()
82 dcp = dcp.substring(index + 1).trim(); in resolve()
84 index = dcp.indexOf(';'); in resolve()
85 conDcp = dcp.substring(0, index).trim(); in resolve()
86 dcp = dcp.substring(index + 1).trim(); in resolve()
88 index = dcp.indexOf(';'); in resolve()
89 protDcp = dcp.substring(0, index).trim(); in resolve()
90 dcp = dcp.substring(index + 1).trim(); in resolve()
/trunk/main/scripting/java/org/openoffice/netbeans/modules/office/wizard/
H A DInstallationPathIterator.java70 private transient int index = 0; field in InstallationPathIterator
73 return index; in getIndex()
101 new Integer(index + 1), new Integer(getPanels().length)); in name()
105 return index < getPanels().length - 1; in hasNext()
108 return index > 0; in hasPrevious()
112 index++; in nextPanel()
116 index--; in previousPanel()
119 return getPanels()[index]; in current()
/trunk/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/formula/
H A DTokenEncoder.java50 private int index; field in TokenEncoder
237 char ch = parseString.charAt(index); in column()
243 index++; in column()
244 ch = parseString.charAt(index); in column()
267 char ch = parseString.charAt(index); in row()
274 index++; in row()
275 if(index>=parseString.length()) { in row()
294 index = 0; in encodeCellCoordinates()
297 if(cellCoordinates.charAt(index)=='$') { in encodeCellCoordinates()
299 index++; in encodeCellCoordinates()
[all …]
/trunk/main/desktop/source/deployment/registry/configuration/
H A Ddp_configuration.cxx384 sal_Int32 index = sizeof ("SCHEMA=") - 1; in configmgrini_verify_init() local
395 while (index >= 0); in configmgrini_verify_init()
399 sal_Int32 index = sizeof ("DATA=") - 1; in configmgrini_verify_init() local
413 while (index >= 0); in configmgrini_verify_init()
618 if (index < 0) { in replaceOrigin()
621 index = nBytes; in replaceOrigin()
624 if ((write_pos + index) > filtered.getLength()) in replaceOrigin()
625 filtered.realloc( (filtered.getLength() + index) * 2 ); in replaceOrigin()
627 write_pos += index; in replaceOrigin()
628 pBytes += index; in replaceOrigin()
[all …]
/trunk/main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/protocols/urp/
H A DUnmarshal.java68 int index = read16Bit(); in readObjectId() local
69 if (index == 0xFFFF) { in readObjectId()
75 id = objectIdCache[index]; in readObjectId()
77 objectIdCache[index] = id; in readObjectId()
97 int index = read16Bit(); in readThreadId() local
98 if (index != 0xFFFF) { in readThreadId()
100 id = threadIdCache[index]; in readThreadId()
102 threadIdCache[index] = id; in readThreadId()
114 int index = read16Bit(); in readType() local
124 if (index != 0xFFFF) { in readType()
[all …]
/trunk/main/testtools/com/sun/star/comp/bridge/
H A DTestComponentMain.java84 int index = dcp.indexOf(':'); in main() local
85 String url = dcp.substring(0, index).trim(); in main()
86 dcp = dcp.substring(index + 1).trim(); in main()
88 index = dcp.indexOf(';'); in main()
89 conDcp = dcp.substring(0, index).trim(); in main()
90 dcp = dcp.substring(index + 1).trim(); in main()
92 index = dcp.indexOf(';'); in main()
93 protDcp = dcp.substring(0, index).trim(); in main()
94 dcp = dcp.substring(index + 1).trim(); in main()
/trunk/main/offapi/com/sun/star/sdbcx/
H A DIndex.idl36 /** is used to specify the index for a database table. It refers to one or
42 All properties and columns of an index could by modified before they are appended
49 /** optional, could be used to copy an index.
54 /** access to the contained index columns.
62 /** is the name of the index.
67 /** is the name of the index catalog, may be empty.
72 /** indicates that the index allow only unique values.
77 /** indicates that the index is used for the primary key.
82 /** indicates that the index is clustered.
/trunk/main/sw/source/ui/vba/
H A Dvbaapplication.cxx126 SwVbaApplication::Documents( const uno::Any& index ) throw (uno::RuntimeException) in Documents() argument
129 if ( index.hasValue() ) in Documents()
130 return xCol->Item( index, uno::Any() ); in Documents()
135 SwVbaApplication::Addins( const uno::Any& index ) throw (uno::RuntimeException) in Addins() argument
138 if ( index.hasValue() ) in Addins()
139 return xCol->Item( index, uno::Any() ); in Addins()
144 SwVbaApplication::Dialogs( const uno::Any& index ) throw (uno::RuntimeException) in Dialogs() argument
147 if ( index.hasValue() ) in Dialogs()
148 return xCol->Item( index ); in Dialogs()
/trunk/main/offapi/com/sun/star/sdbc/
H A DIndexType.idl29 /** indicates the type of index.
43 with a table's index description.
57 Indicates that this table index is a clustered index.
71 Indicates that this table index is a hashed index.
85 Indicates that this table index is not a clustered
86 index, a hashed index, or table statistics;

Completed in 144 milliseconds

12345678910>>...38