Home
last modified time | relevance | path

Searched refs:table (Results 1 – 25 of 1361) sorted by relevance

12345678910>>...55

/trunk/main/sal/rtl/source/
H A Dlocale.c72 void rtl_hashtable_destroy(RTL_HASHTABLE* table) in rtl_hashtable_destroy() argument
76 if (!table) in rtl_hashtable_destroy()
79 size = table->Size; in rtl_hashtable_destroy()
83 if (table->Table[size - 1]) in rtl_hashtable_destroy()
84 rtl_hashentry_destroy(table->Table[size - 1]); in rtl_hashtable_destroy()
88 rtl_freeMemory(table->Table); in rtl_hashtable_destroy()
89 rtl_freeMemory(table); in rtl_hashtable_destroy()
92 void rtl_hashtable_init(RTL_HASHTABLE** table, sal_Int8 sizeIndex) in rtl_hashtable_init() argument
96 if (*table) in rtl_hashtable_init()
97 rtl_hashtable_destroy(*table); in rtl_hashtable_init()
[all …]
/trunk/main/sc/inc/
H A Dconvuno.hxx45 const ::com::sun::star::table::CellAddress& rApiAddress );
48 ::com::sun::star::table::CellAddress& rApiAddress,
53 const ::com::sun::star::table::CellRangeAddress& rApiRange );
56 ::com::sun::star::table::CellRangeAddress& rApiRange,
60 ::com::sun::star::table::CellRangeAddress& rApiRange,
61 const ::com::sun::star::table::CellAddress& rApiAddress );
64 ::com::sun::star::table::CellAddress& rApiAddress,
65 const ::com::sun::star::table::CellRangeAddress& rApiRange );
68 ::com::sun::star::table::CellAddress& rApiAddress,
69 const ::com::sun::star::table::CellRangeAddress& rApiRange );
[all …]
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/
H A Dstar-report.css21 @namespace table url("urn:oasis:names:tc:opendocument:xmlns:table:1.0");
25 table|table {
26 display: table;
29 table|table-columns {
30 display: table-column-group;
33 table|table-column {
34 display: table-column;
37 table|table-row {
38 display: table-row;
41 table|table-cell {
[all …]
H A Doasis-table.css21 @namespace url("urn:oasis:names:tc:opendocument:xmlns:table:1.0");
23 table { selector
24 display: table;
27 table-columns {
28 display: table-column-group;
31 table-column {
32 display: table-column;
35 table-row {
36 display: table-row;
39 table-cell {
[all …]
/trunk/main/vcl/unx/gtk/a11y/
H A Datktable.cxx90 table_wrapper_ref_at (AtkTable *table, in table_wrapper_ref_at() argument
95 accessibility::XAccessibleTable* pTable = getTable( table ); in table_wrapper_ref_at()
120 table_wrapper_get_index_at (AtkTable *table, in table_wrapper_get_index_at() argument
125 accessibility::XAccessibleTable* pTable = getTable( table ); in table_wrapper_get_index_at()
146 table_wrapper_get_column_at_index (AtkTable *table, in table_wrapper_get_column_at_index() argument
150 accessibility::XAccessibleTable* pTable = getTable( table ); in table_wrapper_get_column_at_index()
171 table_wrapper_get_row_at_index( AtkTable *table, in table_wrapper_get_row_at_index() argument
175 accessibility::XAccessibleTable* pTable = getTable( table ); in table_wrapper_get_row_at_index()
196 table_wrapper_get_n_columns( AtkTable *table ) in table_wrapper_get_n_columns() argument
199 accessibility::XAccessibleTable* pTable = getTable( table ); in table_wrapper_get_n_columns()
[all …]
/trunk/main/vcl/source/fontsubset/
H A Dsft.cxx500 const sal_uInt8* table = getTable( ttf, O_hmtx ); in GetMetrics() local
503 if (!table || !ttf->numberOfHMetrics) return; in GetMetrics()
506 metrics->aw = GetUInt16(table, 4 * glyphID, 1); in GetMetrics()
507 metrics->lsb = GetInt16(table, 4 * glyphID + 2, 1); in GetMetrics()
509 metrics->aw = GetUInt16(table, 4 * (ttf->numberOfHMetrics - 1), 1); in GetMetrics()
510 …metrics->lsb = GetInt16(table + ttf->numberOfHMetrics * 4, (glyphID - ttf->numberOfHMetrics) * 2, … in GetMetrics()
513 table = getTable(ttf, O_vmtx); in GetMetrics()
514 if( !table || !ttf->numOfLongVerMetrics ) in GetMetrics()
518 metrics->ah = GetUInt16(table, 4 * glyphID, 1); in GetMetrics()
519 metrics->tsb = GetInt16(table, 4 * glyphID + 2, 1); in GetMetrics()
[all …]
H A Dttcr.cxx280 int AddTable(TrueTypeCreator *_this, TrueTypeTable *table) in AddTable() argument
282 if (table != 0) { in AddTable()
283 listAppend(_this->tables, table); in AddTable()
967 TrueTypeTable* table = (TrueTypeTable*)smalloc(sizeof(TrueTypeTable)); in TrueTypeTableNew() local
978 table->tag = 0; in TrueTypeTableNew()
979 table->data = pdata; in TrueTypeTableNew()
980 table->rawdata = 0; in TrueTypeTableNew()
982 return table; in TrueTypeTableNew()
995 TrueTypeTable* table = (TrueTypeTable*)smalloc(sizeof(TrueTypeTable)); in TrueTypeTableNew_head() local
1011 table->data = (void *) ptr; in TrueTypeTableNew_head()
[all …]
/trunk/main/svx/source/items/
H A Dalgitem.cxx114 table::CellHoriJustify eUno = table::CellHoriJustify_STANDARD; in QueryValue()
117 case SVX_HOR_JUSTIFY_STANDARD: eUno = table::CellHoriJustify_STANDARD; break; in QueryValue()
118 case SVX_HOR_JUSTIFY_LEFT: eUno = table::CellHoriJustify_LEFT; break; in QueryValue()
119 case SVX_HOR_JUSTIFY_CENTER: eUno = table::CellHoriJustify_CENTER; break; in QueryValue()
120 case SVX_HOR_JUSTIFY_RIGHT: eUno = table::CellHoriJustify_RIGHT; break; in QueryValue()
121 case SVX_HOR_JUSTIFY_BLOCK: eUno = table::CellHoriJustify_BLOCK; break; in QueryValue()
122 case SVX_HOR_JUSTIFY_REPEAT: eUno = table::CellHoriJustify_REPEAT; break; in QueryValue()
158 table::CellHoriJustify eUno; in PutValue()
164 eUno = (table::CellHoriJustify)nValue; in PutValue()
169 case table::CellHoriJustify_STANDARD: eSvx = SVX_HOR_JUSTIFY_STANDARD; break; in PutValue()
[all …]
/trunk/main/pyuno/demo/
H A Dswriter.py34 def insertTextIntoCell( table, cellName, text, color ): argument
35 tableText = table.getCellByName( cellName )
62 table = doc.createInstance( "com.sun.star.text.TextTable" ) variable
65 table.initialize( 4,4)
67 text.insertTextContent( cursor, table, 0 )
68 rows = table.Rows
70 table.setPropertyValue( "BackTransparent", uno.Bool(0) )
71 table.setPropertyValue( "BackColor", 13421823 )
78 insertTextIntoCell( table, "A1", "FirstColumn", textColor )
79 insertTextIntoCell( table, "B1", "SecondColumn", textColor )
[all …]
H A Dswritercomp.py35 def insertTextIntoCell( table, cellName, text, color ): argument
36 tableText = table.getCellByName( cellName )
64 table = doc.createInstance( "com.sun.star.text.TextTable" )
67 table.initialize( 4,4)
69 text.insertTextContent( cursor, table, 0 )
70 rows = table.Rows
72 table.setPropertyValue( "BackTransparent", uno.Bool(0) )
73 table.setPropertyValue( "BackColor", 13421823 )
80 insertTextIntoCell( table, "A1", "FirstColumn", textColor )
81 insertTextIntoCell( table, "B1", "SecondColumn", textColor )
[all …]
/trunk/main/scripting/examples/python/pythonSamples/
H A DTableSample.py31 def insertTextIntoCell( table, cellName, text, color ): argument
32 tableText = table.getCellByName( cellName )
53 table = doc.createInstance( "com.sun.star.text.TextTable" )
56 table.initialize( 4,4)
58 text.insertTextContent( cursor, table, 0 )
59 rows = table.Rows
61 table.setPropertyValue( "BackTransparent", uno.Bool(0) )
62 table.setPropertyValue( "BackColor", 13421823 )
69 insertTextIntoCell( table, "A1", "FirstColumn", textColor )
70 insertTextIntoCell( table, "B1", "SecondColumn", textColor )
[all …]
/trunk/main/oox/inc/oox/xls/
H A Dsheetdatabuffer.hxx45 ::com::sun::star::table::CellAddress
59 ::com::sun::star::table::CellRangeAddress
67 bool isValidArrayRef( const ::com::sun::star::table::CellAddress& rCellAddr );
69 bool isValidSharedRef( const ::com::sun::star::table::CellAddress& rCellAddr );
108 const ::com::sun::star::table::CellAddress& rAddress,
125 ::com::sun::star::table::CellAddress
131 const ::com::sun::star::table::CellAddress& rCellAddr,
137 ::com::sun::star::table::CellRangeAddress
161 CellBlock* getCellBlock( const ::com::sun::star::table::CellAddress& rCellAddr );
213 const ::com::sun::star::table::CellRangeAddress& rRange,
[all …]
H A Daddressconverter.hxx43 class ApiCellRangeList : public ::std::vector< ::com::sun::star::table::CellRangeAddress >
49 ::com::sun::star::table::CellAddress
63 …inline explicit BinAddress( const ::com::sun::star::table::CellAddress& rAddr ) : mnCol( rAddr… in BinAddress()
66 …inline void set( const ::com::sun::star::table::CellAddress& rAddr ) { mnCol = rAddr.Colum… in set()
116 …inline explicit BinRange( const ::com::sun::star::table::CellAddress& rAddr ) : maFirst( rAddr… in BinRange()
117 … explicit BinRange( const ::com::sun::star::table::CellAddress& rFirst, const ::com::sun::star… in BinRange()
118 …inline explicit BinRange( const ::com::sun::star::table::CellRangeAddress& rRange ) : maFirst(… in BinRange()
124 …nline void set( const ::com::sun::star::table::CellAddress& rFirst, const ::com::sun::star… in set()
126 inline void set( const ::com::sun::star::table::CellRangeAddress& rRange ) in set()
300 inline const ::com::sun::star::table::CellAddress&
[all …]
H A Dworksheethelper.hxx40 namespace table { class XCell; } namespace
41 namespace table { class XCellRange; } namespace
42 namespace table { class XTableColumns; } namespace
43 namespace table { class XTableRows; } namespace
142 ::com::sun::star::table::CellRangeAddress
208 ::com::sun::star::uno::Reference< ::com::sun::star::table::XCell >
209 getCell( const ::com::sun::star::table::CellAddress& rAddress ) const;
211 ::com::sun::star::uno::Reference< ::com::sun::star::table::XCellRange >
212 … getCellRange( const ::com::sun::star::table::CellRangeAddress& rRange ) const;
218 static ::com::sun::star::table::CellAddress
[all …]
/trunk/main/i18nutil/source/utility/
H A Dwidthfolding.cxx101 static oneToOneMappingWithFlag table(full2half, sizeof(full2half), FULL2HALF_NORMAL); in getfull2halfTable() local
102 table.makeIndex(); in getfull2halfTable()
103 return table; in getfull2halfTable()
205 static oneToOneMappingWithFlag table(half2full, sizeof(half2full), HALF2FULL_NORMAL); in gethalf2fullTable() local
206 table.makeIndex(); in gethalf2fullTable()
207 return table; in gethalf2fullTable()
218 static oneToOneMappingWithFlag table(full2half, sizeof(full2half), FULL2HALF_ASC_FUNCTION); in getfull2halfTableForASC() local
219 table.makeIndex(); in getfull2halfTableForASC()
234 if( !table.mpIndex[high] ) in getfull2halfTableForASC()
236 table.mpIndex[high] = new UnicodePairWithFlag*[256]; in getfull2halfTableForASC()
[all …]
/trunk/main/wizards/
H A DJar_table.mk24 $(eval $(call gb_Jar_Jar,table,SRCDIR))
26 $(eval $(call gb_Jar_add_jars,table,\
35 $(eval $(call gb_Jar_set_packageroot,table,com))
37 $(eval $(call gb_Jar_set_manifest,table,$(SRCDIR)/wizards/com/sun/star/wizards/table/MANIFEST.MF))
39 $(eval $(call gb_Jar_set_jarclasspath,table,\
43 $(eval $(call gb_Jar_add_sourcefiles,table,\
44 wizards/com/sun/star/wizards/table/CallTableWizard \
45 wizards/com/sun/star/wizards/table/CGCategory \
46 wizards/com/sun/star/wizards/table/CGTable \
47 wizards/com/sun/star/wizards/table/FieldDescription \
[all …]
/trunk/main/sc/source/filter/xml/
H A DXMLExportIterator.hxx51 …virtual sal_Bool GetFirstAddress( ::com::sun::star::table::CellAddress& rCellAddress ) …
60 virtual void UpdateAddress( ::com::sun::star::table::CellAddress& rCellAddress );
81 … virtual sal_Bool GetFirstAddress( ::com::sun::star::table::CellAddress& rCellAddress );
110 … virtual sal_Bool GetFirstAddress( ::com::sun::star::table::CellAddress& rCellAddress );
128 com::sun::star::table::CellRangeAddress aCellRange;
141 … virtual sal_Bool GetFirstAddress( ::com::sun::star::table::CellAddress& rCellAddress );
145 … void AddRange(const com::sun::star::table::CellRangeAddress aMergedRange);
161 ::com::sun::star::table::CellRangeAddress aDestRange;
180 … virtual sal_Bool GetFirstAddress( ::com::sun::star::table::CellAddress& rCellAddress );
196 struct ScMyCellRangeAddress : com::sun::star::table::CellRangeAddress
[all …]
H A Dxmlstyle.cxx317 table::BorderLine aLeft, aRight, aTop, aBottom; in ContextFilter()
355 table::BorderLine aLeft, aRight, aTop, aBottom; in ContextFilter()
1159 table::CellHoriJustify aHoriJustify1, aHoriJustify2; in equals()
1173 table::CellHoriJustify nValue = table::CellHoriJustify_LEFT; in importXML()
1175 if (nValue != table::CellHoriJustify_REPEAT) in importXML()
1179 nValue = table::CellHoriJustify_LEFT; in importXML()
1185 nValue = table::CellHoriJustify_RIGHT; in importXML()
1191 nValue = table::CellHoriJustify_CENTER; in importXML()
1197 nValue = table::CellHoriJustify_BLOCK; in importXML()
1213 table::CellHoriJustify nVal; in exportXML()
[all …]
/trunk/main/offapi/com/sun/star/text/
H A DTextTable.idl56 #include <com/sun/star/table/ShadowFormat.idl>
59 #include <com/sun/star/table/TableBorder.idl>
62 #include <com/sun/star/table/XCellRange.idl>
65 #include <com/sun/star/table/XAutoFormattable.idl>
87 /** is a table of text cells which is anchored to a surrounding text.
95 <p>The reason why a text table still needs an anchor is that for example
128 interface com::sun::star::table::XCellRange;
132 interface com::sun::star::table::XAutoFormattable;
138 …/** determines the type of break that is applied at the beginning of the table. @see com::sun::sta…
143 /** contains the left margin of the table.
[all …]
/trunk/main/sc/source/ui/vba/
H A Dvbaformat.cxx85 aVal = uno::makeAny( table::CellVertJustify_BOTTOM ); in setVerticalAlignment()
88 aVal = uno::makeAny( table::CellVertJustify_CENTER ); in setVerticalAlignment()
92 aVal = uno::makeAny( table::CellVertJustify_STANDARD ); in setVerticalAlignment()
96 aVal = uno::makeAny( table::CellVertJustify_TOP); in setVerticalAlignment()
99 aVal = uno::makeAny( table::CellVertJustify_STANDARD ); in setVerticalAlignment()
119 table::CellVertJustify aAPIAlignment; in getVerticalAlignment()
123 case table::CellVertJustify_BOTTOM: in getVerticalAlignment()
126 case table::CellVertJustify_CENTER: in getVerticalAlignment()
129 case table::CellVertJustify_STANDARD: in getVerticalAlignment()
132 case table::CellVertJustify_TOP: in getVerticalAlignment()
[all …]
H A Dvbarange.cxx213 uno::Reference< table::XCellRange > xCellRange( aAny, uno::UNO_QUERY_THROW ); in lcl_makeRange()
220 uno::Sequence< table::CellRangeAddress > sAddresses = xLocSheetCellRanges->getRangeAddresses(); in lcl_makeXRangeFromSheetCellRanges()
234 … uno::Reference< table::XCellRange > xTmpRange( new ScCellRangeObj( pDoc, *aCellRanges.First() ) ); in lcl_makeXRangeFromSheetCellRanges()
296 uno::Reference< table::XCellRange > m_xRange;
301 …Reference< css::uno::XComponentContext >& xContext, const uno::Reference< table::XCellRange >& xRa… in SingleRangeEnumeration()
320 uno::Reference< table::XCellRange > m_xRange;
324 …uno::Reference< uno::XComponentContext >& xContext, const uno::Reference< table::XCellRange >& xRa… in SingleRangeIndexAccess()
334 …virtual uno::Type SAL_CALL getElementType() throw (uno::RuntimeException){ return table::XCellRang… in getElementType()
403 getDocShellFromRange( const uno::Reference< table::XCellRange >& xRange ) throw ( uno::RuntimeExcep… in getDocShellFromRange()
424 uno::Reference< frame::XModel > getModelFromRange( const uno::Reference< table::XCellRange >& xRang… in getModelFromRange()
[all …]
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/sdbcx/
H A DOColumnContainer.java47 private OTable table; field in OColumnContainer
59 …olean isCaseSensitive, List<ColumnDescription> columnDescriptions, OTable table, XDatabaseMetaData… in OColumnContainer() argument
62 this.table = table; in OColumnContainer()
87 …ewColumns = new SqlTableHelper().readColumns(metadata, table.catalogName, table.schemaName, table.… in createObject()
102 … String composedName = DbTools.composeTableNameForSelect(metadata.getConnection(), table); in createObject()
113 …aryKeyColumns = DbTools.getPrimaryKeyColumns(UnoRuntime.queryInterface(XPropertySet.class, table)); in createObject()
132 table.refreshColumns(); in impl_refresh()
137 if (table == null) { in appendObject()
141 … DbTools.composeTableName(metadata, table, ComposeRule.InTableDefinitions, false, false, true), in appendObject()
142 …DbTools.createStandardColumnPart(descriptor, table.getConnection(), null, table.getTypeCreatePatte… in appendObject()
[all …]
/trunk/main/qadevOOo/java/OOoRunner/src/main/resources/objdsc/sc/
H A Dcom.sun.star.comp.office.ScCellCursorObj.csv1 "ScCellCursorObj";"com::sun::star::table::CellProperties";"CellStyle#optional"
2 "ScCellCursorObj";"com::sun::star::table::CellProperties";"CellBackColor"
3 "ScCellCursorObj";"com::sun::star::table::CellProperties";"IsCellBackgroundTransparent"
4 "ScCellCursorObj";"com::sun::star::table::CellProperties";"HoriJustify"
5 "ScCellCursorObj";"com::sun::star::table::CellProperties";"VertJustify"
6 "ScCellCursorObj";"com::sun::star::table::CellProperties";"IsTextWrapped"
7 "ScCellCursorObj";"com::sun::star::table::CellProperties";"ParaIndent"
8 "ScCellCursorObj";"com::sun::star::table::CellProperties";"Orientation"
9 "ScCellCursorObj";"com::sun::star::table::CellProperties";"RotateAngle"
10 "ScCellCursorObj";"com::sun::star::table::CellProperties";"RotateReference"
[all …]
/trunk/main/offapi/com/sun/star/table/
H A DCellProperties.idl36 #include <com/sun/star/table/ShadowFormat.idl>
40 #include <com/sun/star/table/CellHoriJustify.idl>
44 #include <com/sun/star/table/CellVertJustify.idl>
48 #include <com/sun/star/table/CellOrientation.idl>
56 #include <com/sun/star/table/TableBorder.idl>
60 #include <com/sun/star/table/BorderLine.idl>
69 module com { module sun { module star { module table {
73 /** contains the properties of a table cell.
75 @see com::sun::star::table::Cell
76 @see com::sun::star::table::CellRange
[all …]
/trunk/main/solenv/bin/modules/installer/patch/
H A DMsi.pm148 foreach my $table (values %{$self->{'tables'}})
150 push @tables_to_update,$table if ($table->IsModified());
156 foreach my $table (@tables_to_update)
158 $installer::logger::Info->printf(" %s\n", $table->GetName());
159 $self->PutTable($table);
162 foreach my $table (@tables_to_update)
164 $table->UpdateTimestamp();
165 $table->MarkAsUnmodified();
185 my $table = $self->{'tables'}->{$table_name};
186 if ( ! defined $table)
[all …]

12345678910>>...55