| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/ |
| H A D | StAXEventReader.java | 171 public void setAllocator(XMLEventAllocator allocator) { argument 172 if (allocator == null) 175 _eventAllocator = allocator;
|
| /openjdk7/jaxp/src/com/sun/xml/internal/stream/ |
| H A D | XMLInputFactoryImpl.java | 229 /** Set a user defined event allocator for events 230 * @param allocator the user defined allocator 232 public void setEventAllocator(XMLEventAllocator allocator) { argument 233 fPropertyManager.setProperty(XMLInputFactory.ALLOCATOR, allocator);
|
| /openjdk7/hotspot/src/cpu/x86/vm/ |
| H A D | c1_LinearScan_x86.hpp | 103 if (allocator()->gen()->is_vreg_flag_set(cur->reg_num(), LIRGenerator::byte_reg)) { 132 LinearScan* allocator() { return _allocator; } function in class:VALUE_OBJ_CLASS_SPEC 187 FpuStackAllocator(Compilation* compilation, LinearScan* allocator);
|
| H A D | c1_LinearScan_x86.cpp | 112 FpuStackAllocator::FpuStackAllocator(Compilation* compilation, LinearScan* allocator) argument 116 , _allocator(allocator) 122 int num_blocks = allocator()->block_count(); 125 BlockBegin* block = allocator()->block_at(i); 215 if (!_debug_information_computed && op->id() != -1 && allocator()->has_info(op->id())) { 219 if (allocator()->compilation()->has_exception_handlers()) { 236 allocator()->compute_debug_info(info, op->id()); 792 // operation. the stack allocator must guarantee that the stack 820 // the stack allocator must guarantee that the stack slots are really free, 847 // the stack allocator mus [all...] |
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/api/impl/s2j/ |
| H A D | SchemaCompilerImpl.java | 194 public void setClassNameAllocator(ClassNameAllocator allocator) { argument 195 opts.classNameAllocator = allocator;
|
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/factory/ |
| H A D | StAXInputFactory.java | 238 /** Set a user defined event allocator for events 239 * @param allocator the user defined allocator 241 public void setEventAllocator(XMLEventAllocator allocator) { argument 242 _manager.setProperty(XMLInputFactory.ALLOCATOR, allocator);
|
| /openjdk7/jaxp/src/javax/xml/stream/ |
| H A D | XMLInputFactory.java | 65 *<tr><td>javax.xml.stream.allocator</td><td>sets/gets the impl of the XMLEventAllocator interface</td><td>javax.xml.stream.util.XMLEventAllocator</td><td>Null</td><td>Yes</td></tr> 137 * The property used to set/get the implementation of the allocator 140 "javax.xml.stream.allocator"; 451 * Set a user defined event allocator for events 452 * @param allocator the user defined allocator 454 public abstract void setEventAllocator(XMLEventAllocator allocator); argument 457 * Gets the allocator used by streams created with this factory
|
| /openjdk7/hotspot/src/share/vm/c1/ |
| H A D | c1_Compilation.cpp | 216 LinearScan* allocator = new LinearScan(hir(), &gen, frame_map()); local 217 set_allocator(allocator); 219 allocator->do_linear_scan(); 222 _max_spills = allocator->max_spills(); 291 if (!setup_code_buffer(code(), allocator()->num_calls())) {
|
| H A D | c1_Compilation.hpp | 106 LinearScan* allocator() { return _allocator; } function in class:Compilation 107 void set_allocator(LinearScan* allocator) { _allocator = allocator; } argument
|
| H A D | c1_LinearScan.hpp | 451 MoveResolver(LinearScan* allocator); 461 LinearScan* allocator() { return _allocator; } function in class:MoveResolver 659 LinearScan* allocator() const { return _allocator; } function in class:IntervalWalker 694 IntervalWalker(LinearScan* allocator, Interval* unhandled_fixed_first, Interval* unhandled_any_first); 711 // The actual linear scan register allocator 730 int block_count() const { return allocator()->block_count(); } 731 BlockBegin* block_at(int idx) const { return allocator()->block_at(idx); } 732 BlockBegin* block_of_op_with_id(int op_id) const { return allocator()->block_of_op_with_id(op_id); } 782 LinearScanWalker(LinearScan* allocator, Interval* unhandled_fixed_first, Interval* unhandled_any_first); 927 void collect(LinearScan* allocator); [all...] |
| H A D | c1_LinearScan.cpp | 1171 // it is split before the first use by the register allocator. 1420 // -> the register allocator need not handle unhandled fixed intervals 2616 // during fpu stack allocation, so the stack allocator object 2721 // during fpu stack allocation, so the stack allocator object 2975 // -> debug information is created inside the fpu stack allocator 3417 RegisterVerifier(LinearScan* allocator) argument 3418 : _allocator(allocator) 3601 // When an operand is marked with is_last_use, then the fpu stack allocator 3672 MoveResolver::MoveResolver(LinearScan* allocator) : argument 3673 _allocator(allocator), [all...] |
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/ |
| H A D | Model.java | 148 public Model( Options opts, JCodeModel cm, NameConverter nc, ClassNameAllocator allocator, XSSchemaSet schemaComponent ) { argument 158 allocator = new AutoClassNameAllocator(allocator); 159 this.allocator = new ClassNameAllocatorWrapper(allocator); 229 * This allocator has the final say on deciding the class name. 233 * Model classes are responsible for using the allocator. 234 * This allocator interaction should be transparent to the user/builder 237 /*package*/ final ClassNameAllocatorWrapper allocator; field in class:Model
|
| /openjdk7/hotspot/src/share/vm/memory/ |
| H A D | genCollectedHeap.cpp | 1399 Generation* allocator = next_gen(gen); local 1400 if (allocator != NULL) { 1402 result = allocator->allocate(obj_size, false); 1403 } while (result == NULL && (allocator = next_gen(allocator)) != NULL);
|