Home
last modified time | relevance | path

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

12345678910>>...54

/AOO41X/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 …]
/AOO41X/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 …]
/AOO41X/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 …]
/AOO41X/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 …]
/AOO41X/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 …]
/AOO41X/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 …]
/AOO41X/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()
966 TrueTypeTable* table = (TrueTypeTable*)smalloc(sizeof(TrueTypeTable)); in TrueTypeTableNew() local
977 table->tag = 0; in TrueTypeTableNew()
978 table->data = pdata; in TrueTypeTableNew()
979 table->rawdata = 0; in TrueTypeTableNew()
981 return table; in TrueTypeTableNew()
994 TrueTypeTable* table = (TrueTypeTable*)smalloc(sizeof(TrueTypeTable)); in TrueTypeTableNew_head() local
1010 table->data = (void *) ptr; in TrueTypeTableNew_head()
[all …]
/AOO41X/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 …]
/AOO41X/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 …]
/AOO41X/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 …]
/AOO41X/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 …]
/AOO41X/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 …/** determins the type of break that is applied at the beginning of the table.@see com.sun.star.st…
143 /** contains the left margin of the table.
[all …]
/AOO41X/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 …]
/AOO41X/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 …]
/AOO41X/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 …]
H A DXTable.idl32 #include <com/sun/star/table/XCellRange.idl>
36 #include <com/sun/star/table/XColumnRowRange.idl>
40 #include <com/sun/star/table/XCellCursor.idl>
65 module com { module sun { module star { module table {
78 interface com::sun::star::table::XCellRange;
82 interface com::sun::star::table::XColumnRowRange;
86 /** interface to make the modify state of the table accessible.
88 get notification whenever the content of the table changes.
106 /** creates a cell cursor including the whole table
108 @see com::sun::star::table::CellCursor
[all …]
/AOO41X/main/odk/examples/DevelopersGuide/Spreadsheet/
H A DGeneralTableSample.java64 com.sun.star.table.XCell xCell = null; in doSampleFunction()
65 com.sun.star.table.XCellRange xCellRange = null; in doSampleFunction()
133 com.sun.star.table.XCellCursor xCursor = (com.sun.star.table.XCellCursor) in doSampleFunction()
134 UnoRuntime.queryInterface( com.sun.star.table.XCellCursor.class, xSheetCellCursor ); in doSampleFunction()
146 com.sun.star.table.XColumnRowRange xCRRange = (com.sun.star.table.XColumnRowRange) in doSampleFunction()
147 UnoRuntime.queryInterface( com.sun.star.table.XColumnRowRange.class, xSheet ); in doSampleFunction()
148 com.sun.star.table.XTableColumns xColumns = xCRRange.getColumns(); in doSampleFunction()
149 com.sun.star.table.XTableRows xRows = xCRRange.getRows(); in doSampleFunction()
191 com.sun.star.table.XTableChartsSupplier xChartsSupp = in doSampleFunction()
192 (com.sun.star.table.XTableChartsSupplier) UnoRuntime.queryInterface( in doSampleFunction()
[all …]
/AOO41X/main/qadevOOo/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 …]

12345678910>>...54