Searched defs:Insert (Results 1 - 6 of 6) sorted by relevance
/openjdk7/jdk/test/java/lang/StringBuilder/ |
H A D | Insert.java | 27 * @summary Test Insert method for infinite loop 30 public class Insert { class
|
/openjdk7/hotspot/src/share/vm/libadt/ |
H A D | dict.cpp | 204 Insert( b->_keyvals[j+j], b->_keyvals[j+j+1] ); 209 //------------------------------Insert---------------------------------------- 210 // Insert or replace a key/value pair in the given dictionary. If the 215 void *Dict::Insert(void *key, void *val, bool replace) { function in class:Dict 225 b->_keyvals[j+j ] = key; // Insert current key-value
|
/openjdk7/hotspot/src/share/vm/adlc/ |
H A D | dict2.cpp | 167 Insert( b->_keyvals[j+j], b->_keyvals[j+j+1] ); 172 //------------------------------Insert--------------------------------------- 173 // Insert or replace a key/value pair in the given dictionary. If the 178 const void *Dict::Insert(const void *key, const void *val) { function in class:Dict 185 b->_keyvals[j+j ] = key; // Insert current key-value
|
H A D | forms.cpp | 316 // Insert inserts the given key-value pair into the dictionary. The prior 318 const Form *FormDict::Insert(const char *name, Form *form) { function in class:FormDict 319 return (Form*)_form.Insert((void*)name, (void*)form);
|
H A D | dfa.cpp | 318 operands_chained_from.Insert( operand, operand); 847 _expr.Insert(name, expr); 853 // Insert inserts the given key-value pair into the dictionary. The prior 855 const Expr *ExprDict::Insert(const char *name, Expr *expr) { function in class:ExprDict 856 return (Expr*)_expr.Insert((void*)name, (void*)expr); 962 _production.Insert(result, p);
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | chaitin.hpp | 124 void Insert( OptoReg::Name reg ) { _mask.Insert(reg); debug_only(_msize_valid=0;) } function in class:LRG 356 // Insert the spill at chosen location. Skip over any intervening Proj's or 399 // all inputs to a PhiNode, effectively coalescing live ranges. Insert
|
Completed in 71 milliseconds