Searched defs:table (Results 51 - 75 of 247) sorted by relevance

12345678910

/openjdk7/jdk/src/share/classes/java/text/
H A DBreakDictionary.java57 * as a two-dimensional array that can be treated as a table of state
80 * The number of actual columns in the table
92 * The actual compressed state table. Each conceptual row represents
96 * table is compressed by eliminating all the unpopulated (i.e., zero)
102 private short[] table = null; field in class:BreakDictionary
110 * A bitmap is used to tell which cells in the comceptual table are
112 * in that bitmap. If the table is more than 32 columns wide,
118 * This index maps from a logical row number into the bitmap table above.
121 * in the bitmap table, we just store a negative number in this index for
239 // load in the actual state 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/macosx/classes/com/apple/laf/
H A DAquaLookAndFeel.java215 final UIDefaults table = new UIDefaults();
217 //UIDefaults table = new DebugDefaults();
220 initClassDefaults(table);
226 super.initSystemColorDefaults(table);
227 super.initComponentDefaults(table);
230 initSystemColorDefaults(table);
231 initComponentDefaults(table);
235 return table;
239 * Initialize the defaults table with the name of the ResourceBundle
245 private void initResourceBundle(final UIDefaults table) { argument
263 initComponentDefaults(final UIDefaults table) argument
985 initSystemColorDefaults(final UIDefaults table) argument
1027 initClassDefaults(final UIDefaults table) argument
[all...]
/openjdk7/jdk/src/share/back/
H A DMethodImpl.c36 jvmtiLineNumberEntry *table = NULL; local
71 (gdata->jvmti, method, &count, &table);
74 * Indicate no line info with an empty table. The code indices
82 (void)outStream_writeLocation(out, table[i].start_location);
83 (void)outStream_writeInt(out, table[i].line_number);
85 jvmtiDeallocate(table);
99 jvmtiLocalVariableEntry *table; local
132 (gdata->jvmti, method, &count, &table);
138 jvmtiLocalVariableEntry *entry = &table[i];
155 jvmtiDeallocate(table);
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DDHTMarkerSegment.java99 Htable table = (Htable) iter.next();
100 newGuy.tables.add(table.clone());
108 Htable table = (Htable) tables.get(i);
109 node.appendChild(table.getNativeNode());
127 Htable table = (Htable) tables.get(i);
128 table.print();
138 void addHtable(JPEGHuffmanTable table, boolean isDC, int id) { argument
139 tables.add(new Htable(table, isDC, id));
143 * A Huffman table within a DHT marker segment.
170 Htable(JPEGHuffmanTable table, boolea argument
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DelfFile.cpp122 // string table
124 ElfStringTable* table = new (std::nothrow) ElfStringTable(m_file, shdr, index); local
125 if (table == NULL) {
129 add_string_table(table);
131 ElfSymbolTable* table = new (std::nothrow) ElfSymbolTable(m_file, shdr); local
132 if (table == NULL) {
136 add_symbol_table(table);
173 void ElfFile::add_symbol_table(ElfSymbolTable* table) { argument
175 m_symbol_tables = table;
177 table
182 add_string_table(ElfStringTable* table) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DSimpleHashtable.java65 private Entry table[]; field in class:SimpleHashtable
89 table = new Entry[initialCapacity];
106 for (int i = 0; i < table.length; i++)
107 table[i] = null;
138 while (currentBucket < table.length) {
139 current = table[currentBucket++];
165 Entry tab[] = table;
180 Entry tab[] = table;
198 int oldCapacity = table.length;
199 Entry oldMap[] = table;
[all...]
/openjdk7/jdk/src/windows/classes/sun/security/krb5/internal/tools/
H A DKtab.java46 * entries in the key table.
55 KeyTab table; field in class:Ktab
57 String name; // name and directory of key table
83 ktab.table = KeyTab.getInstance(ktab.name);
84 if (ktab.table.isMissing() && ktab.action != 'a') {
86 System.out.println("No default key table exists.");
88 System.out.println("Key table " +
93 if (!ktab.table.isValid()) {
95 System.out.println("The format of the default key table " +
98 System.out.println("The format of key table "
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A DHashtable.h43 HashtableEntry** table; member in class:HashtableEnumerator
47 HashtableEnumerator(HashtableEntry* table[], int size, BOOL keys);
60 * The hash table data.
62 HashtableEntry** table; member in class:Hashtable
65 * The size of table
70 * The total number of entries in the hash table.
75 * Rehashes the table when count exceeds this threshold.
129 return new HashtableEnumerator(table, capacity, TRUE);
138 return new HashtableEnumerator(table, capacity, FALSE);
172 * Clears the hash table s
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djdmaster.c214 * a (subscript-check-less) C table lookup
219 * These processes all use a common table prepared by the routine below.
222 * of x is within MAXJSAMPLE+1 of the legal range, so a table running from
235 * So the post-IDCT limiting table ends up looking like this:
240 * Negative inputs select values from the upper half of the table after
243 * We can save some space by overlapping the start of the post-IDCT table
244 * with the simpler range limiting table. The post-IDCT table begins at
247 * Note that the table is allocated in near data space on PCs; it's small
253 /* Allocate and fill in the sample_range_limit table */
255 JSAMPLE * table; local
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DSwitchData.java116 private Integer table[]; field in class:SwitchDataEnumeration
121 * hash table will be an Integer, with the value being a label. The
125 table = new Integer[tab.size()];
128 table[i++] = (Integer)e.nextElement();
130 Arrays.sort(table);
138 return current_index < table.length;
145 return table[current_index++];
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXDataViewer.java133 JTable table) {
142 table,
130 createAttributeViewer(Object value, XMBean mbean, String attributeName, JTable table) argument
H A DXPlottingViewer.java51 private JTable table; field in class:XPlottingViewer
56 JTable table,
62 this.table = table;
64 Plotter plotter = createPlotter(mbean, attributeName, key, table);
96 JTable table,
107 table,
127 ((XMBeanAttributes) table).collapse(attributeName, this);
134 JTable table) {
135 final Plotter plotter = new XPlotter(table, Plotte
52 XPlottingViewer(String key, XMBean mbean, String attributeName, Object value, JTable table, MBeansTab tab) argument
93 loadPlotting(XMBean mbean, String attributeName, Object value, JTable table, MBeansTab tab) argument
131 createPlotter(final XMBean xmbean, final String attributeName, String key, JTable table) argument
[all...]
H A DXTextFieldEditor.java40 import javax.swing.table.TableCellEditor;
136 public Component getTableCellEditorComponent(JTable table, argument
142 if (table instanceof XTable) {
143 XTable mytable = (XTable) table;
/openjdk7/jdk/src/share/demo/jfc/Metalworks/
H A DContrastMetalTheme.java145 public void addCustomEntriesToTable(UIDefaults table) { argument
156 table.put("ToolTip.border", blackLineBorder);
157 table.put("TitledBorder.border", blackLineBorder);
158 table.put("Table.focusCellHighlightBorder", whiteLineBorder);
159 table.put("Table.focusCellForeground", getWhite());
161 table.put("TextField.border", textBorder);
162 table.put("PasswordField.border", textBorder);
163 table.put("TextArea.border", textBorder);
164 table.put("TextPane.font", textBorder);
/openjdk7/jdk/test/javax/swing/JSlider/6348946/
H A Dbug6348946.java38 import javax.swing.table.*;
123 public Component getTableCellRendererComponent(JTable table, argument
137 public Component getTableCellEditorComponent(JTable table, Object value, argument
/openjdk7/jdk/test/javax/swing/JTable/6263446/
H A Dbug6263446.java34 import javax.swing.table.*;
39 private static JTable table; field in class:bug6263446
122 table.editCellAt(0, 0);
148 (DefaultCellEditor) table.getDefaultEditor(String.class);
160 table.getCellEditor().cancelCellEditing();
171 (DefaultCellEditor) table.getDefaultEditor(String.class);
192 if (editing && !table.isEditing()) {
195 if (!editing && table.isEditing()) {
208 Rectangle rect = table.getCellRect(0, 0, false);
211 SwingUtilities.convertPointToScreen(point, table);
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DCache.java53 * To sucessfully store and retrieve objects from a hash table the
80 * The hash table data.
82 private CacheEntry table[]; field in class:Cache
85 * The total number of entries in the hash table.
90 * Rehashes the table when count exceeds this threshold.
104 table = new CacheEntry[initialCapacity];
167 return new CacheEnumerator(table, true);
177 return new CacheEnumerator(table, false);
182 * @param key the key in the hash table
184 * is not defined in the hash table
311 CacheEntry table[]; field in class:CacheEnumerator
314 CacheEnumerator(CacheEntry table[], boolean keys) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DX11CNS11643.java132 private String table; field in class:X11CNS11643.Decoder
/openjdk7/langtools/test/tools/javac/scope/
H A DHashCollisionTest.java191 Field sTable = Scope.class.getDeclaredField("table");
195 Scope.Entry[] table = (Scope.Entry[]) sTable.get(s);
196 for (int i = 0; i < table.length; i++) {
199 out.print(i + ":" + toString(table[i], table, false));
205 * Create a string showing the contents of an entry, using the table
206 * to help identify cross-references to other entries in the table.
208 * @param table the table containing the other entries
210 String toString(Scope.Entry e, Scope.Entry[] table, boolea argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DHashtable.java36 * Object that wraps entries in the hash-table
56 * The main hash-table implementation
60 private transient HashtableEntry table[]; // hash-table entries field in class:Hashtable
73 table = new HashtableEntry[initialCapacity];
111 return new HashtableEnumerator(table, true);
120 return new HashtableEnumerator(table, false);
134 HashtableEntry tab[] = table;
151 HashtableEntry tab[] = table;
167 HashtableEntry tab[] = table;
311 HashtableEntry table[]; field in class:Hashtable.HashtableEnumerator
314 HashtableEnumerator(HashtableEntry table[], boolean keys) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DIdentityHashtable.java57 * The hash table data.
59 private transient IdentityHashtableEntry table[]; field in class:IdentityHashtable
62 * The total number of entries in the hash table.
67 * Rehashes the table when count exceeds this threshold.
92 table = new IdentityHashtableEntry[initialCapacity];
147 return new IdentityHashtableEnumerator(table, true);
161 return new IdentityHashtableEnumerator(table, false);
182 IdentityHashtableEntry tab[] = table;
203 IdentityHashtableEntry tab[] = table;
225 IdentityHashtableEntry tab[] = table;
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DThreadListPanel.java31 import javax.swing.table.*;
104 private JTable table; field in class:ThreadListPanel
119 // table for later querying
193 table = new JTable(dataModel);
194 table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
195 JTableHeader header = table.getTableHeader();
197 table.setRowSelectionAllowed(true);
198 table.setColumnSelectionAllowed(false);
199 JScrollPane scrollPane = new JScrollPane(table);
202 table
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DLongHashMap.java141 * The hash table data.
143 transient Entry table[]; field in class:LongHashMap
146 * The total number of mappings in the hash table.
151 * The table is rehashed when its size exceeds this threshold. (The
159 * The load factor for the hash table.
193 table = new Entry[initialCapacity];
269 Entry tab[] = table;
289 Entry tab[] = table;
319 Entry tab[] = table;
323 // Look for entry in hash table
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DObjectListPanel.java32 import javax.swing.table.*;
38 import sun.jvm.hotspot.ui.table.*;
45 private JTable table; field in class:ObjectListPanel
70 table = new JTable(dataModel);
71 table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
72 JTableHeader header = table.getTableHeader();
74 header.addMouseListener(new SortHeaderMouseAdapter(table, dataModel));
76 JScrollPane scrollPane = new JScrollPane(table);
252 int i = table.getSelectedRow();
309 int i = table
[all...]

Completed in 133 milliseconds

12345678910