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

12345678910

/openjdk7/hotspot/src/cpu/x86/vm/
H A Dinterp_masm_x86_32.cpp449 void InterpreterMacroAssembler::dispatch_base(TosState state, address* table, argument
464 ExternalAddress tbl((address)table);
493 void InterpreterMacroAssembler::dispatch_via(TosState state, address* table) { argument
496 dispatch_base(state, table);
H A Dinterp_masm_x86_64.cpp449 address* table,
467 lea(rscratch1, ExternalAddress((address)table));
492 void InterpreterMacroAssembler::dispatch_via(TosState state, address* table) { argument
495 dispatch_base(state, table);
448 dispatch_base(TosState state, address* table, bool verifyoop) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/
H A DEncoder.java453 * Checks whether character content table has enough memory to
532 * Checks whether attribute table has enough memory to
769 * @param table the table mapping characters to 4 bit values.
773 * @param addToTable if characters should be added to table.
788 * @param table the table mapping characters to 4 bit values.
792 * @param addToTable if characters should be added to table.
807 * @param table the table mappin
814 encodeFourBitCharacters(int id, int[] table, char[] ch, int offset, int length, boolean addToTable) argument
1327 encodeNonIdentifyingStringOnFirstBit(int id, int[] table, String s, boolean addToTable, boolean mustBeAddedToTable) argument
1917 encodeNonEmptyFourBitCharacterStringOnSeventhBit(int[] table, char[] ch, int offset, int length) argument
1926 encodeNonEmptyFourBitCharacterString(int[] table, char[] ch, int offset, int octetPairLength, int octetSingleLength) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlWriter.java1066 * @param width Width of the table.
1067 * @param cellpadding Cellpadding for the table cells.
1068 * @param cellspacing Cellspacing for the table cells.
1070 public void table(int border, String width, int cellpadding, method in class:HtmlWriter
1085 * @param width Width of the table.
1086 * @param cellpadding Cellpadding for the table cells.
1087 * @param cellspacing Cellspacing for the table cells.
1090 public void table(int border, String width, int cellpadding, method in class:HtmlWriter
1105 * @param cellpadding Cellpadding for the table cells.
1106 * @param cellspacing Cellspacing for the table cell
1108 public void table(int border, int cellpadding, int cellspacing) { method in class:HtmlWriter
1125 public void table(int border, int cellpadding, int cellspacing, String summary) { method in class:HtmlWriter
1139 public void table(int border, String width) { method in class:HtmlWriter
1149 public void table() { method in class:HtmlWriter
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_util.c1443 map_loc2line(jlocation location, jvmtiLineNumberEntry *table, jint count) argument
1464 start_location = table[start + half].start_location;
1476 /* Now start the table search */
1478 if ( location < table[i].start_location ) {
1479 HPROF_ASSERT( ((int)location) < ((int)table[i].start_location) );
1482 line_number = table[i].line_number;
1581 /* Make sure the TLS table has this thread as an agent thread */
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A DimageioJPEG.c669 jobject table; local
686 table = (*env)->GetObjectArrayElement(env, qtables, i);
687 qdata = (*env)->GetObjectField(env, table, JPEGQTable_tableID);
720 jobject table) {
730 table,
750 table,
777 jobject table; local
803 table = (*env)->GetObjectArrayElement(env, DCHuffmanTables, i);
804 setHuffTable(env, huff_ptr, table);
828 table
718 setHuffTable(JNIEnv *env, JHUFF_TBL *huff_ptr, jobject table) argument
[all...]
H A Djquant2.c212 int * error_limiter; /* table for clamping the applied error */
1095 * Initialize the error-limiting transfer function (lookup table).
1113 /* Allocate and fill in the error_limiter table */
1116 int * table; local
1119 table = (int *) (*cinfo->mem->alloc_small)
1121 table += MAXJSAMPLE; /* so can index -MAXJSAMPLE .. +MAXJSAMPLE */
1122 cquantize->error_limiter = table;
1128 table[in] = out; table[-in] = -out;
1132 table[i
[all...]
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpng.c1806 #ifdef PNG_READ_GAMMA_SUPPORTED /* gamma table code */
1816 * at the head of each table.
1818 * 8-bit log table
1819 * This is a table of -log(value/255)/log(2) for 'value' in the range 128 to
1915 * scaling by 65536 to match the above table:
2005 /* Adjustment table; provided to explain the numbers in the code below. */
2032 * is determined by the above table and the shift. Notice that the values
2168 /* Internal function to build a single 16-bit table - the table consists of
2172 * The caller is responsible for ensuring that the table get
2186 png_uint_16pp table = *ptable = local
2253 png_uint_16pp table = *ptable = local
2316 png_bytep table = *ptable = (png_bytep)png_malloc(png_ptr, 256); local
[all...]
H A Dpngrtran.c479 /* Swap the palette around, and set up a table, if necessary */
504 * develop a translation table.
4358 PNG_CONST png_bytep table = png_ptr->gamma_from_1; local
4360 if (table != NULL)
4369 *row = table[*row];
4377 PNG_CONST png_uint_16pp table = png_ptr->gamma_16_from_1; local
4380 if (table != NULL)
4392 v = table[*(row + 1) >> gamma_shift][*row];
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dawt_ImagingLib.c1158 unsigned char *table; member in struct:__anon741
1196 * byte lookup table. Fall back to processing
1201 *dstPixel++ = lookup->table[s];
1210 *dstPixel++ = lookup->table[s];
1232 ((lookup->table[srcPixel[indexes[0]]] << 24) |
1233 (lookup->table[srcPixel[indexes[1]]] << 16) |
1234 (lookup->table[srcPixel[indexes[2]]] << 8) |
1235 lookup->table[srcPixel[indexes[3]]]);
1237 ((lookup->table[srcPixel[indexes[4]]] << 24) |
1238 (lookup->table[srcPixe
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DFilePane.java44 import javax.swing.table.*;
250 private void repaintTableSelection(JTable table) {
251 int minRow = table.getSelectionModel().getMinSelectionIndex();
252 int maxRow = table.getSelectionModel().getMaxSelectionIndex();
257 int col0 = table.convertColumnIndexToView(COLUMN_FILENAME);
259 Rectangle first = table.getCellRect(minRow, col0, false);
260 Rectangle last = table.getCellRect(maxRow, col0, false);
262 table.repaint(dirty);
862 private void updateDetailsColumnModel(JTable table) { argument
863 if (table !
1016 getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) argument
1059 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
1253 getTableCellRendererComponent( JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DProxyGenerator.java489 * we are about to write the final constant pool table.
871 * the code and exception table entry.
1635 private static Map<Class,PrimitiveTypeInfo> table = field in class:ProxyGenerator.PrimitiveTypeInfo
1649 table.put(primitiveClass,
1667 return table.get(cl);
/openjdk7/jdk/src/share/classes/java/sql/
H A DDatabaseMetaData.java222 * Retrieves whether this database uses a file for each table.
224 * @return <code>true</code> if this database uses a local file for each table;
455 * Retrieves whether this database supports table correlation names.
463 * Retrieves whether, when table correlation names are supported, they
666 * table name. If not, the catalog appears at the end.
669 * of a fully qualified table name; <code>false</code> otherwise
676 * separator between a catalog and table name.
700 * Retrieves whether a schema name can be used in a table definition statement.
740 * Retrieves whether a catalog name can be used in a table definition statement.
985 * Retrieves the maximum number of columns this database allows in a table
1734 getColumnPrivileges(String catalog, String schema, String table, String columnNamePattern) argument
1831 getBestRowIdentifier(String catalog, String schema, String table, int scope, boolean nullable) argument
1942 getVersionColumns(String catalog, String schema, String table) argument
2004 getPrimaryKeys(String catalog, String schema, String table) argument
2082 getImportedKeys(String catalog, String schema, String table) argument
2266 getExportedKeys(String catalog, String schema, String table) argument
2553 getIndexInfo(String catalog, String schema, String table, boolean unique, boolean approximate) argument
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dinterp_masm_sparc.cpp94 // add offset to correct dispatch table
99 // dispatch table to use
102 set(tbl, G3_scratch); // compute addr of table
137 void InterpreterMacroAssembler::dispatch_via(TosState state, address* table) { argument
141 dispatch_base(state, table);
270 void InterpreterMacroAssembler::dispatch_base(TosState state, address* table) { argument
272 dispatch_Lbyte_code(state, table);
289 void InterpreterMacroAssembler::dispatch_Lbyte_code(TosState state, address* table, int bcp_incr, bool verify) { argument
295 if (table == Interpreter::dispatch_table(state)) {
298 // add offset to correct dispatch table
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp2220 CheckedExceptionElement* table= methodOop(method)->checked_exceptions_start(); variable
2222 exceptions[i] = table[i].class_cp_index;
H A DjvmtiEnv.cpp93 // VM operation class to copy jni function table at safepoint.
2764 // The line number table is compressed so we don't know how big it is until decompressed.
2767 // Compute size of table
2776 // Fill jvmti table
2834 // in the vm localvariable table representation, 6 consecutive elements in the table
2842 LocalVariableTableElement* table = method_oop->localvariable_table_start(); local
2844 // get the 5 tuple information from the vm table
2845 jlocation start_location = (jlocation) table[i].start_bci;
2846 jint length = (jint) table[
[all...]
H A DjvmtiTagMap.cpp94 // A hashmap is essentially a table of pointers to entries. Entries
95 // are hashed to a location, or position in the table, and then
103 // if the number of entries is >75% of table size.
121 int _size; // actual size of the table
122 int _size_index; // index into size table
132 JvmtiTagHashmapEntry** _table; // the table of entries.
179 // resize the hashmap - allocates a large table and re-hashes
180 // all entries into the new table.
189 // allocate new table
198 // initialize new table
294 JvmtiTagHashmapEntry** table() const { return _table; } function in class:JvmtiTagHashmap
441 JvmtiTagHashmapEntry** table = _hashmap->table(); local
3363 JvmtiTagHashmapEntry** table = hashmap->table(); local
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDHandler.java211 /** Property identifier: symbol table. */
399 // the symbol table
3257 private void updateImportDependencies(Map<String, Vector> table) { argument
3258 if (table == null) return;
3262 for(Map.Entry<String, Vector> entry : table.entrySet()){
3348 private Vector findDependentNamespaces(String namespace, Map table) { argument
3350 Vector namespaceList = (Vector) getFromMap(table, ns);
3354 table.put(ns, namespaceList);
3499 // set symbol table
4235 * When 2 XSDKey's are compared, the following table ca
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp679 ExceptionHandlerTable table(nm);
680 HandlerTableEntry *t = table.entry_for(catch_pco, handler_bci, scope_depth);
688 t = table.entry_for(catch_pco, -1, 0);
703 tty->print_cr(" Compiled exception table :");
704 table.print();
2205 // Create a new entry suitable for insertion in the table
2212 // Insert an entry into the table
2299 AdapterHandlerTableIterator(AdapterHandlerTable* table): _table(table), _index(0), _current(NULL) { argument
2774 assert( cnt < 256, "grow table siz
[all...]
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c189 unsigned short *table; member in struct:__anon644
443 class_hash->table = (unsigned short *)
446 class_hash->table == 0)
476 free(class_hash->table);
558 pID = &(class_hash->table[hash % HASH_TABLE_SIZE]);
572 * It's already in the table. Update the loadable
617 pID = &(class_hash->table[hash % HASH_TABLE_SIZE]);
633 * the hash table in case one these entries matches our class.
1038 /* make sure exception table is reasonable. */
1135 /* Set the ->operand to be a table o
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTable.java46 import javax.swing.table.*;
65 * See <a href="http://java.sun.com/docs/books/tutorial/uiswing/components/table.html">How to Use Tables</a>
73 * set up easily. For example, to set up a table with 10 rows and 10
82 * JTable table = new JTable(dataModel);
83 * JScrollPane scrollpane = new JScrollPane(table);
100 * {@code table.setRowSorter(new TableRowSorter(model))}.
108 * close attention to the data structures that will represent the table's data.
166 * int[] selection = table.getSelectedRows();
168 * selection[i] = table.convertRowIndexToModel(selection[i]);
214 * @see javax.swing.table
5398 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
5480 getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) argument
7600 setAccessibleRowHeader(AccessibleTable table) argument
7617 setAccessibleColumnHeader(AccessibleTable table) argument
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp743 NameSigHash* _next; // Next entry in hash table
758 void initialize_hashtable(NameSigHash** table) { argument
759 memset((void*)table, 0, sizeof(NameSigHash*) * HASH_ROW_SIZE);
762 // Return false if the name/sig combination is found in table.
763 // Return true if no duplicate is found. And name/sig is added as a new entry in table.
766 // of table since we don't expect Symbol*'s to move.
767 bool put_after_lookup(Symbol* name, Symbol* sig, NameSigHash** table) { argument
772 NameSigHash* entry = table[index];
785 // Insert into hash table
786 entry->_next = table[inde
1393 initialize_hashtable(LVT_Hash** table) argument
1399 clear_hashtable(LVT_Hash** table) argument
1413 LVT_lookup(LocalVariableTableElement *elem, int index, LVT_Hash** table) argument
1437 LVT_put_after_lookup(LocalVariableTableElement *elem, LVT_Hash** table) argument
[all...]

Completed in 268 milliseconds

12345678910