Searched defs:table (Results 76 - 100 of 247) sorted by relevance

12345678910

/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultCellEditor.java32 import javax.swing.table.*;
39 * The default editor for table and tree cells.
265 public Component getTableCellEditorComponent(JTable table, Object value, argument
271 //in a table, it is important for the editor to have as a border
275 //visual space of the table cell, unlike a text field.
276 TableCellRenderer renderer = table.getCellRenderer(row, column);
277 Component c = renderer.getTableCellRendererComponent(table, value,
H A DTablePrintable.java28 import javax.swing.table.*;
38 * This implementation spreads table rows naturally in sequence
44 * across multiple pages (in an order consistent with the table's
51 * The portion of table printed on each page is headed by the
52 * appropriate section of the table's <code>JTableHeader</code>.
68 * as determined by the table's <code>ComponentOrientation</code>.
89 * It is the responsibility of the developer to ensure that the table is not
92 * The behavior of this <code>Printable</code> is undefined if the table is
99 /** The table to print. */
100 private JTable table; field in class:TablePrintable
167 TablePrintable(JTable table, JTable.PrintMode printMode, MessageFormat headerFormat, MessageFormat footerFormat) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalHighContrastTheme.java121 public void addCustomEntriesToTable(UIDefaults table) { argument
180 table.putDefaults(defaults);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTableHeaderUI.java34 import javax.swing.table.*;
35 import sun.swing.table.*;
39 * {@link javax.swing.table.JTableHeader}.
226 public Component getTableCellRendererComponent(JTable table, Object value, argument
235 isSelected, hasFocus, table.isEnabled(),
243 RowSorter rs = table == null ? null : table.getRowSorter();
246 table.convertColumnIndexToModel(column)) {
264 super.getTableCellRendererComponent(table, value, isSelected,
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DAbstractTableModel.java26 package javax.swing.table;
166 * Returns an array of all the table model listeners
171 * array if no table model listeners are currently registered
187 * Notifies all listeners that all cell values in the table's
190 * table from scratch. The structure of the table (as in the order of the
202 * Notifies all listeners that the table's structure has changed.
203 * The number of columns in the table, and the names and types of
207 * flag is set it discards any table columns that it had and reallocates
281 * themselves as listeners for this table mode
[all...]
H A DTableColumnModel.java26 package javax.swing.table;
35 * Defines the requirements for a table column model object suitable for
62 * <code>column</code> is not in the table's column list.
115 * Returns the index of the first column in the table
120 * @return the index of the first table column
152 * TableColumnModel does not know how the table columns actually appear on
229 * Adds a listener for table column model events.
236 * Removes a listener for table column model events.
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DSimpleAttributeSet.java37 * hash table.
59 private transient Hashtable<Object, Object> table = new Hashtable<Object, Object>(3); field in class:SimpleAttributeSet
76 private SimpleAttributeSet(Hashtable<Object, Object> table) { argument
77 this.table = table;
87 return table.isEmpty();
96 return table.size();
106 return table.containsKey(attrName);
135 return table.keys();
145 Object value = table
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImagingLib.java86 byte[][] table);
88 byte[][] table);
170 LookupTable table = ((LookupOp)op).getTable();
171 if (table.getOffset() != 0) {
175 if (table instanceof ByteLookupTable) {
176 ByteLookupTable bt = (ByteLookupTable) table;
235 LookupTable table = ((LookupOp)op).getTable();
236 if (table.getOffset() != 0) {
240 if (table instanceof ByteLookupTable) {
241 ByteLookupTable bt = (ByteLookupTable) table;
85 lookupByteBI(BufferedImage src, BufferedImage dst, byte[][] table) argument
87 lookupByteRaster(Raster src, Raster dst, byte[][] table) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleTable.java30 * presents data in a two-dimensional table format.
38 * Returns the caption for the table.
40 * @return the caption for the table
45 * Sets the caption for the table.
47 * @param a the caption for the table
52 * Returns the summary description of the table.
54 * @return the summary description of the table
59 * Sets the summary description of the table
61 * @param a the summary description of the table
66 * Returns the number of rows in the table
121 setAccessibleRowHeader(AccessibleTable table) argument
137 setAccessibleColumnHeader(AccessibleTable table) argument
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodKlass.cpp257 CheckedExceptionElement* table = m->checked_exceptions_start(); local
258 st->print_cr(" - checked ex start: " INTPTR_FORMAT, table);
261 st->print_cr(" - throws %s", m->constants()->printable_name_at(table[i].class_cp_index));
266 u_char* table = m->compressed_linenumber_table(); local
267 st->print_cr(" - linenumber start: " INTPTR_FORMAT, table);
269 CompressedLineNumberReadStream stream(table);
277 LocalVariableTableElement* table = m->localvariable_table_start(); local
278 st->print_cr(" - localvar start: " INTPTR_FORMAT, table);
281 int bci = table[i].start_bci;
282 int len = table[
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DDesktopProperty.java152 public Object createValue(UIDefaults table) { argument
222 * the UIDefaults table.
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAlawCodec.java335 private short search(short val, short table[], short size) { argument
337 if (val <= table[i]) { return i; }
H A DUlawCodec.java319 private short search(short val, short table[], short size) { argument
321 if (val <= table[i]) { return i; }
/openjdk7/jdk/src/share/back/
H A DclassTrack.c28 * all prepared classes are put in a table. As class prepare
29 * events come in they are added to the table. After an unload
31 * of classes; this list is compared against the table keep by
35 * For efficient access, classes are keep in a hash table.
36 * Each slot in the hash table has a linked list of KlassNode.
40 * a new table, any that remain in the old table have been
48 /* ClassTrack hash table slot count */
58 * Hash table of prepared classes. Each entry is a pointer
61 static KlassNode **table; variable
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DDQTMarkerSegment.java92 Qtable table = (Qtable) iter.next();
93 newGuy.tables.add(table.clone());
101 Qtable table = (Qtable) tables.get(i);
102 node.appendChild(table.getNativeNode());
120 Qtable table = (Qtable) tables.get(i);
121 table.print();
127 * Assuming the given table was generated by scaling the "standard"
128 * visually lossless luminance table, extract the scale factor that
133 // Determine if the table is all the same values
134 // if so, use the same table
237 Qtable(JPEGQTable table, int id) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DCoordinator.java106 private Object[] table; field in class:Coordinator
109 * When we set {@link #table} to null, record who did it.
120 table = activeTable.get();
121 assert table!=null;
134 table = null;
141 old = table[0];
142 table[0] = this;
149 assert table[0]==this;
150 table[0] = old;
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageLookUpSIS16S32Func.c36 const mlib_s32 **table);
41 const mlib_s32 **table);
46 const mlib_s32 **table);
52 const mlib_s32 **table)
61 mlib_f32 *table0 = (mlib_f32*)(&table[0][32768]);
62 mlib_f32 *table1 = (mlib_f32*)(&table[1][32768]);
118 const mlib_s32 **table)
123 const mlib_s32 *tab0 = &table[0][32768];
124 const mlib_s32 *tab1 = &table[1][32768];
143 mlib_v_ImageLookUpSI_S16_S32_2_D1(sp, (mlib_f32*)dp, size, table);
49 mlib_v_ImageLookUpSI_S16_S32_2_D1(const mlib_s16 *src, mlib_f32 *dst, mlib_s32 xsize, const mlib_s32 **table) argument
112 mlib_v_ImageLookUpSI_S16_S32_2(const mlib_s16 *src, mlib_s32 slb, mlib_s32 *dst, mlib_s32 dlb, mlib_s32 xsize, mlib_s32 ysize, const mlib_s32 **table) argument
152 mlib_v_ImageLookUpSI_S16_S32_3_D1(const mlib_s16 *src, mlib_f32 *dst, mlib_s32 xsize, const mlib_s32 **table) argument
226 mlib_v_ImageLookUpSI_S16_S32_3(const mlib_s16 *src, mlib_s32 slb, mlib_s32 *dst, mlib_s32 dlb, mlib_s32 xsize, mlib_s32 ysize, const mlib_s32 **table) argument
268 mlib_v_ImageLookUpSI_S16_S32_4_D1(const mlib_s16 *src, mlib_f32 *dst, mlib_s32 xsize, const mlib_s32 **table) argument
353 mlib_v_ImageLookUpSI_S16_S32_4(const mlib_s16 *src, mlib_s32 slb, mlib_s32 *dst, mlib_s32 dlb, mlib_s32 xsize, mlib_s32 ysize, const mlib_s32 **table) argument
[all...]
H A Dmlib_v_ImageLookUpSIU16S32Func.c36 const mlib_s32 **table);
41 const mlib_s32 **table);
46 const mlib_s32 **table);
52 const mlib_s32 **table)
61 mlib_f32 *table0 = (mlib_f32 *) (&table[0][0]);
62 mlib_f32 *table1 = (mlib_f32 *) (&table[1][0]);
118 const mlib_s32 **table)
123 const mlib_s32 *tab0 = &table[0][0];
124 const mlib_s32 *tab1 = &table[1][0];
143 mlib_v_ImageLookUpSI_U16_S32_2_D1(sp, (mlib_f32 *) dp, size, table);
49 mlib_v_ImageLookUpSI_U16_S32_2_D1(const mlib_u16 *src, mlib_f32 *dst, mlib_s32 xsize, const mlib_s32 **table) argument
112 mlib_v_ImageLookUpSI_U16_S32_2(const mlib_u16 *src, mlib_s32 slb, mlib_s32 *dst, mlib_s32 dlb, mlib_s32 xsize, mlib_s32 ysize, const mlib_s32 **table) argument
152 mlib_v_ImageLookUpSI_U16_S32_3_D1(const mlib_u16 *src, mlib_f32 *dst, mlib_s32 xsize, const mlib_s32 **table) argument
226 mlib_v_ImageLookUpSI_U16_S32_3(const mlib_u16 *src, mlib_s32 slb, mlib_s32 *dst, mlib_s32 dlb, mlib_s32 xsize, mlib_s32 ysize, const mlib_s32 **table) argument
268 mlib_v_ImageLookUpSI_U16_S32_4_D1(const mlib_u16 *src, mlib_f32 *dst, mlib_s32 xsize, const mlib_s32 **table) argument
353 mlib_v_ImageLookUpSI_U16_S32_4(const mlib_u16 *src, mlib_s32 slb, mlib_s32 *dst, mlib_s32 dlb, mlib_s32 xsize, mlib_s32 ysize, const mlib_s32 **table) argument
[all...]
H A Dmlib_v_ImageLookUpU8S32Func.c134 const mlib_s32 **table)
138 mlib_f32 *tab = (mlib_f32 *) table[0];
175 const mlib_s32 **table)
190 mlib_f32 *tab0 = (mlib_f32 *) table[0];
191 mlib_f32 *tab1 = (mlib_f32 *) table[1];
227 const mlib_s32 **table)
241 mlib_f32 *tab0 = (mlib_f32 *) table[0];
242 mlib_f32 *tab1 = (mlib_f32 *) table[1];
243 mlib_f32 *tab2 = (mlib_f32 *) table[2];
244 mlib_f32 *tab3 = (mlib_f32 *) table[
128 mlib_v_ImageLookUp_U8_S32_1(const mlib_u8 *src, mlib_s32 slb, mlib_s32 *dst, mlib_s32 dlb, mlib_s32 xsize, mlib_s32 ysize, const mlib_s32 **table) argument
169 mlib_v_ImageLookUp_U8_S32_2(const mlib_u8 *src, mlib_s32 slb, mlib_s32 *dst, mlib_s32 dlb, mlib_s32 xsize, mlib_s32 ysize, const mlib_s32 **table) argument
221 mlib_v_ImageLookUp_U8_S32_4(const mlib_u8 *src, mlib_s32 slb, mlib_s32 *dst, mlib_s32 dlb, mlib_s32 xsize, mlib_s32 ysize, const mlib_s32 **table) argument
307 const mlib_f32 *table; local
380 mlib_v_ImageLookUp_U8_S32_3(const mlib_u8 *src, mlib_s32 slb, mlib_s32 *dst, mlib_s32 dlb, mlib_s32 xsize, mlib_s32 ysize, const mlib_s32 **table) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWFontMetrics.java190 static Hashtable table = new Hashtable(); field in class:WFontMetrics
193 FontMetrics fm = (FontMetrics)table.get(font);
195 table.put(font, fm = new WFontMetrics(font));
/openjdk7/jdk/src/windows/native/sun/windows/
H A DGDIHashtable.h42 GDIHashtable* table; member in struct:GDIHashtable::ListEntry
117 * @param table pointer to the GDIHashtable to be added.
119 INLINE void add(GDIHashtable* table) { m_list.add(table); } argument
123 * Does nothing if the specified table doesn't exist.
124 * @param table pointer to the GDIHashtable to be removed.
126 INLINE void remove(GDIHashtable* table) { m_list.remove(table); } argument
H A DHashtable.cpp32 table = (HashtableEntry**)
56 free(table);
65 for (HashtableEntry* e = table[i] ; e != NULL ; e = e->next) {
78 for (HashtableEntry* e = table[index]; e != NULL; e = e->next) {
90 for (HashtableEntry* e = table[index]; e != NULL; e = e->next) {
100 HashtableEntry** oldTable = table;
107 table = newTable;
130 for (e = table[index]; e != NULL; e = e->next) {
142 // Rehash the table if the threshold is exceeded
152 e->next = table[inde
200 HashtableEnumerator(HashtableEntry* table[], int size, BOOL keys) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DSharedNameTable.java59 /** The hash table for names.
76 * @param names The main name table
77 * @param hashSize the (constant) size to be used for the hash table
79 * @param nameSize the initial size of the name table.
175 NameImpl(SharedNameTable table) { argument
176 super(table);
196 return ((SharedNameTable) table).bytes;
215 table == ((Name)other).table && index == ((Name) other).getIndex();
H A DUnsharedNameTable.java52 /** The hash table for names.
60 /** Index counter for names in this table.
65 * @param names The main name table
66 * @param hashSize the (constant) size to be used for the hash table
149 NameImpl(UnsharedNameTable table, byte[] bytes, int index) { argument
150 super(table);
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dzutil.c232 local ptr_table table[MAX_PTR]; variable
233 /* This table is used to remember the original form of pointers
235 * Since MSDOS is not a preemptive multitasking OS, this table is not
255 table[next_ptr].org_ptr = buf;
260 table[next_ptr++].new_ptr = buf;
273 if (ptr != table[n].new_ptr) continue;
275 farfree(table[n].org_ptr);
277 table[n-1] = table[n];

Completed in 137 milliseconds

12345678910