Searched refs:table (Results 1 - 25 of 388) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DNonContextualGlyphSubst.h50 LookupTable table; member in struct:NonContextualGlyphSubstitutionHeader
55 LookupTable table; member in struct:NonContextualGlyphSubstitutionHeader2
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/
H A DPatternInterner.java51 private Pattern[] table; field in class:PatternInterner
56 table = null;
62 table = parent.table;
63 if (table != null)
64 table = (Pattern[]) table.clone();
73 if (table == null) {
74 table = new Pattern[INIT_SIZE];
78 for (h = firstIndex(p); table[
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/table/
H A DSortHeaderMouseAdapter.java25 package sun.jvm.hotspot.ui.table;
32 import javax.swing.table.TableColumnModel;
43 private JTable table; field in class:SortHeaderMouseAdapter
45 public SortHeaderMouseAdapter(JTable table, SortableTableModel model) { argument
47 this.table = table;
53 CommonUI.setWaitCursor(SwingUtilities.getRoot(table));
55 TableColumnModel columnModel = table.getColumnModel();
57 int column = table.convertColumnIndexToModel(viewColumn);
66 CommonUI.setDefaultCursor(SwingUtilities.getRoot(table));
[all...]
H A DLongCellRenderer.java25 package sun.jvm.hotspot.ui.table;
30 import javax.swing.table.*;
40 public Component getTableCellRendererComponent(JTable table, Object value, argument
45 textField.setFont(table.getFont());
49 textField.setForeground(isSelected ? table.getSelectionForeground() :
50 table.getForeground());
51 textField.setBackground(isSelected ? table.getSelectionBackground() :
52 table.getBackground());
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXPlotter.java33 JTable table; field in class:XPlotter
34 public XPlotter(JTable table, argument
37 this.table = table;
42 table.repaint();
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifLookAndFeel.java89 * Load the SystemColors into the defaults table. The keys
91 * the public fields in SystemColor. If the table is being
96 protected void initSystemColorDefaults(UIDefaults table) argument
128 loadSystemColors(table, defaultSystemColors, false);
132 protected void initClassDefaults(UIDefaults table) argument
134 super.initClassDefaults(table);
172 table.putDefaults(uiDefaults);
177 * Initialize the defaults table with the name of the ResourceBundle
180 private void initResourceBundle(UIDefaults table) { argument
181 table
185 initComponentDefaults(UIDefaults table) argument
[all...]
/openjdk7/jdk/src/share/demo/jfc/Metalworks/
H A DBigContrastMetalTheme.java103 public void addCustomEntriesToTable(UIDefaults table) { argument
104 super.addCustomEntriesToTable(table);
107 table.put("InternalFrame.closeIcon", MetalIconFactory.
109 table.put("InternalFrame.maximizeIcon", MetalIconFactory.
111 table.put("InternalFrame.iconifyIcon", MetalIconFactory.
113 table.put("InternalFrame.minimizeIcon", MetalIconFactory.
121 table.put("ToolTip.border", blackLineBorder);
122 table.put("TitledBorder.border", blackLineBorder);
125 table.put("TextField.border", textBorder);
126 table
[all...]
H A DDemoMetalTheme.java103 public void addCustomEntriesToTable(UIDefaults table) { argument
104 super.addCustomEntriesToTable(table);
107 table.put("InternalFrame.closeIcon", MetalIconFactory.
109 table.put("InternalFrame.maximizeIcon", MetalIconFactory.
111 table.put("InternalFrame.iconifyIcon", MetalIconFactory.
113 table.put("InternalFrame.minimizeIcon", MetalIconFactory.
117 table.put("ScrollBar.width", 21);
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DTableCellRenderer.java26 package javax.swing.table;
45 * the cell representing the table's current DnD drop location if
47 * the DnD drop location, it should query the table directly to
50 * JTable.DropLocation dropLocation = table.getDropLocation();
66 * or not the table is being printed, check the return value from
69 * @param table the <code>JTable</code> that is asking the
91 Component getTableCellRendererComponent(JTable table, Object value, argument
H A DTableStringConverter.java25 package javax.swing.table;
H A DTableCellEditor.java26 package javax.swing.table;
54 * @param table the <code>JTable</code> that is asking the
69 Component getTableCellEditorComponent(JTable table, Object value, argument
/openjdk7/jdk/test/javax/swing/UIDefaults/6795356/
H A DTableTest.java35 import javax.swing.table.TableCellEditor;
45 JTable table = new JTable();
46 TableCellEditor de = table.getDefaultEditor(Double.class);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DMachineDescriptionTwosComplement.java82 private long tableLookup(long sizeInBytes, long[] table) { argument
85 return table[0];
87 return table[1];
89 return table[2];
91 return table[3];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/algorithm/
H A DBuiltInEncodingAlgorithmFactory.java35 private final static BuiltInEncodingAlgorithm[] table = field in class:BuiltInEncodingAlgorithmFactory
57 table[EncodingAlgorithmIndexes.HEXADECIMAL] = hexadecimalEncodingAlgorithm;
58 table[EncodingAlgorithmIndexes.BASE64] = base64EncodingAlgorithm;
59 table[EncodingAlgorithmIndexes.SHORT] = shortEncodingAlgorithm;
60 table[EncodingAlgorithmIndexes.INT] = intEncodingAlgorithm;
61 table[EncodingAlgorithmIndexes.LONG] = longEncodingAlgorithm;
62 table[EncodingAlgorithmIndexes.BOOLEAN] = booleanEncodingAlgorithm;
63 table[EncodingAlgorithmIndexes.FLOAT] = floatEncodingAlgorithm;
64 table[EncodingAlgorithmIndexes.DOUBLE] = doubleEncodingAlgorithm;
65 table[EncodingAlgorithmIndexe
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DIdentityHashtableEnumerator.java46 IdentityHashtableEntry table[]; field in class:IdentityHashtableEnumerator
49 IdentityHashtableEnumerator(IdentityHashtableEntry table[], boolean keys) { argument
50 this.table = table;
52 this.index = table.length;
60 if ((entry = table[index]) != null) {
69 while ((index-- > 0) && ((entry = table[index]) == null));
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTableUI.java40 import javax.swing.table.*;
67 protected JTable table; field in class:BasicTableUI
226 private void moveWithinTableRange(JTable table, int dx, int dy) { argument
227 leadRow = clipToRange(leadRow+dy, 0, table.getRowCount());
228 leadColumn = clipToRange(leadColumn+dx, 0, table.getColumnCount());
237 * This method uses the table's notion of selection, which is
241 * It depends on certain table properties (such as whether or not
247 private boolean moveWithinSelectedRange(JTable table, int dx, int dy, argument
253 // find out how many items the table is showing as selected
258 boolean rs = table
2120 getAdjustedLead(JTable table, boolean row, ListSelectionModel model) argument
2129 getAdjustedLead(JTable table, boolean row) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/alphabet/
H A DBuiltInRestrictedAlphabets.java34 public final static char[][] table = field in class:BuiltInRestrictedAlphabets
38 table[RestrictedAlphabet.NUMERIC_CHARACTERS_INDEX] = RestrictedAlphabet.NUMERIC_CHARACTERS.toCharArray();
39 table[RestrictedAlphabet.DATE_TIME_CHARACTERS_INDEX] = RestrictedAlphabet.DATE_TIME_CHARACTERS.toCharArray();
/openjdk7/jdk/test/javax/swing/JTable/6768387/
H A Dbug6768387.java32 import javax.swing.table.AbstractTableModel;
38 JTable table = new JTable();
44 out.writeObject(table);
/openjdk7/jdk/test/javax/swing/plaf/synth/7032791/
H A Dbug7032791.java33 import javax.swing.table.TableCellRenderer;
42 JTable table = new JTable(1, 1);
43 TableCellRenderer renderer = table.getDefaultRenderer(Object.class);
/openjdk7/jdk/test/javax/swing/JTable/6788484/
H A Dbug6788484.java26 @summary NPE in DefaultTableCellHeaderRenderer.getColumnSortOrder() with null table
38 import sun.swing.table.DefaultTableCellHeaderRenderer;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DArrayTable.java47 private Object table = null; field in class:ArrayTable
55 * <code>table</code> is null, 0 will be written to <code>s</code>.
60 static void writeArrayTable(ObjectOutputStream s, ArrayTable table) throws IOException { argument
63 if (table == null || (keys = table.getKeys(null)) == null) {
77 && table.get(key) instanceof Serializable)
94 s.writeObject(table.get(key));
109 if (table==null) {
110 table = new Object[] {key, value};
115 Object[] tmp = (Object[])table;
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/plugins/jpeg/
H A DJPEGQTable.java31 * A class encapsulating a single JPEG quantization table.
89 * The sample luminance quantization table given in the JPEG
90 * specification, table K.1. According to the specification,
98 * The sample luminance quantization table given in the JPEG
99 * specification, table K.1, with all elements divided by 2.
101 * quality output. This is the table usually used for "visually lossless"
102 * encoding, and is the default luminance table used if the default
110 * The sample chrominance quantization table given in the JPEG
111 * specification, table K.2. According to the specification,
119 * The sample chrominance quantization table give
132 JPEGQTable(int[] table, boolean copy) argument
144 JPEGQTable(int[] table) argument
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DWeakIdentityMap.java32 * Hash table based mapping, which uses weak references to store keys
47 private Entry<T>[] table = newTable(1<<3); // table's length MUST be a power of two field in class:WeakIdentityMap
57 int index = getIndex(this.table, hash);
58 for (Entry<T> entry = this.table[index]; entry != null; entry = entry.next) {
72 int index = getIndex(this.table, hash);
73 for (Entry<T> entry = this.table[index]; entry != null; entry = entry.next) {
80 this.table[index] = new Entry<T>(key, hash, value, this.queue, this.table[index]);
82 if (this.table
161 getIndex(Entry<?>[] table, int hash) argument
[all...]
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_c_ImageLookUp.c29 * mlib_ImageLookUp - table lookup
34 * const void **table)
39 * table Lookup table.
42 * The mlib_ImageLookUp function performs general table lookup on an
44 * through a lookup table.
48 * table may be 1-, 2-, 3-, or 4-channeled of data types MLIB_BYTE,
51 * number of channels as either source image or the lookup table,
52 * whichever is greater, and the same data type as the lookup table.
54 * It is the user's responsibility to make sure that the lookup table
81 mlib_ImageLookUp(mlib_image *dst, const mlib_image *src, const void **table) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DProcessListPanel.java32 import javax.swing.table.*;
43 private JTable table; field in class:ProcessListPanel
85 table = new JTable(dataModel);
86 table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
87 JTableHeader header = table.getTableHeader();
89 table.setRowSelectionAllowed(true);
90 table.setColumnSelectionAllowed(false);
94 int viewColumn = table.getColumnModel().getColumnIndexAtX(e.getX());
95 int column = table.convertColumnIndexToModel(viewColumn);
107 int i = table
[all...]

Completed in 85 milliseconds

1234567891011>>