Searched defs:init (Results 726 - 750 of 757) sorted by relevance

<<21222324252627282930>>

/openjdk7/hotspot/src/share/vm/services/
H A Dmanagement.cpp76 Management::init();
77 ThreadService::init();
78 RuntimeService::init();
79 ClassLoadingService::init();
82 void Management::init() { function in class:Management
873 // pools have defined init and max sizes. Heap pools do not matter,
875 assert(heap || !has_undefined_init_size, "Undefined init size");
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWToolkit.java287 boolean startPump = init();
311 private native boolean init(); method in class:WToolkit
H A DWPrinterJob.java1953 init (parent, title, message, buttonText);
1959 init (parent, title, message, buttonText);
1962 private void init(Component parent, String title, String message, method in class:WPrinterJob.PrintToFileErrorDialog
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassReader.java231 public void init(Symtab syms) { method in class:ClassReader
232 init(syms, true);
238 private void init(Symtab syms, boolean definitive) { method in class:ClassReader
270 init(syms, definitive);
1220 if (nt.name != names.init)
1732 if (name == names.init && currentOwner.hasOuterInstance()) {
1819 if (sym.name == names.init && currentOwner.hasOuterInstance()) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java185 public JCVariableDecl VarDef(JCModifiers mods, Name name, JCExpression vartype, JCExpression init) { argument
186 JCVariableDecl tree = new JCVariableDecl(mods, name, vartype, init, null);
215 public JCForLoop ForLoop(List<JCStatement> init, argument
220 JCForLoop tree = new JCForLoop(init, cond, step, body);
663 public JCVariableDecl VarDef(VarSymbol v, JCExpression init) { argument
669 init,
H A DJCTree.java704 * @param init variables initial value
711 public JCExpression init; field in class:JCTree.JCVariableDecl
716 JCExpression init,
721 this.init = init;
732 return init;
857 public List<JCStatement> init; field in class:JCTree.JCForLoop
861 protected JCForLoop(List<JCStatement> init, argument
866 this.init = init;
713 JCVariableDecl(JCModifiers mods, Name name, JCExpression vartype, JCExpression init, VarSymbol sym) argument
2118 VarDef(JCModifiers mods, Name name, JCExpression vartype, JCExpression init) argument
2126 ForLoop(List<JCStatement> init, JCExpression cond, List<JCExpressionStatement> step, JCStatement body) argument
[all...]
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dunpack.h47 void init(int len_, entry* base1_, int ixTag_) { function in struct:cpindex
53 void init(int len_, entry** base2_, int ixTag_) { function in struct:cpindex
97 s_lt_init_gt, // <init>
104 void init(unpacker* u, int counts[NUM_COUNTS]);
366 void init(read_input_fn_t input_fn = null);
372 void free_temps() { tsmallbuf.init(); tmallocs.freeAll(); }
H A Dbands.h63 void init(unpacker* u_, int bn_, coding* defc_) { function in struct:band
69 void init(unpacker* u_, int bn_, int defcSpec) { function in struct:band
70 init(u_, bn_, coding::findBySpec(defcSpec));
H A Dunpack.cpp304 smallbuf.init();
305 tsmallbuf.init();
501 xsmallbuf.init(CHUNK);
628 hdr.init(rp, rplimit, UNSIGNED5_spec);
709 input.init(CHUNK*2);
819 cp.init(this, cp_counts);
881 void cpool::init(unpacker* u_, int counts[NUM_COUNTS]) { function in class:cpool
933 tag_index[tag].init(tag_count[tag], cpMap, tag);
1029 charbuf.init();
1052 charbuf.init(CHUN
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivation.java221 state.init(port, ssf, log, childArgs);
228 private void init(int port, method in class:Activation
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectorPolicy.cpp395 void G1CollectorPolicy::init() { function in class:G1CollectorPolicy
H A DconcurrentMark.cpp330 void CMRootRegions::init(G1CollectedHeap* g1h, ConcurrentMark* cm) { function in class:CMRootRegions
468 gclog_or_tty->print_cr("[global] init, heap start = "PTR_FORMAT", "
487 _root_regions.init(_g1h, this);
806 force_overflow_stw()->init();
917 void ForceOverflowSettings::init() { function in class:ForceOverflowSettings
1115 force_overflow_conc()->init();
3153 print_ms_time_info(" ", "init marks", _init_times);
/openjdk7/hotspot/src/share/vm/opto/
H A DloopTransform.cpp675 // Protect against over-unrolling when init or/and limit are not constant
676 // (so that trip_count's init value is maxint) but iv range is known.
894 Node *init = main_head->init_trip(); local
1069 Node *pre_limit = new (C) AddINode( init, stride );
1091 // when init > limit when stride > 0 (and reverse).
1170 Node *init = loop_head->init_trip(); local
1206 // Use (limit - stride) instead of (((limit - init)/stride) & (-2))*stride
1212 } else if (loop_head->has_exact_trip_count() && init->is_Con()) {
1213 // Loop's limit is constant. Loop's init could be constant when pre-loop
1215 jlong init_con = init
1989 Node *init = cl->init_trip(); local
[all...]
H A Dloopnode.cpp545 // i = init; do {} while(i++ < limit);
547 // i = init; do {} while(++i < limit+1);
555 // 'ne' can be replaced with 'lt' only when init < limit.
558 // 'ne' can be replaced with 'gt' only when init > limit.
960 Node* init = phase->transform( new (phase->C) ConvI2LNode(in(Init))); local
965 Node *range = phase->transform(new (phase->C) SubLNode(limit, init));
971 // guarantee that init < limit but sometimes the guard is missing and
972 // we can get situation when init > limit. Note, for the empty loop
1722 Node *init = cl->init_trip();
1773 Node* ratio_init = new (C) MulINode(init, rati
2573 Node *init = cl->init_trip(); local
[all...]
H A Dmacro.cpp354 InitializeNode* init = alloc->as_Allocate()->initialization(); local
357 if (init != NULL)
358 return init;
900 InitializeNode *init = use->as_Initialize(); local
901 assert(init->outcnt() <= 2, "only a control and memory projection expected");
902 Node *ctrl_proj = init->proj_out(TypeFunc::Control);
904 assert(init->in(TypeFunc::Control) == _fallthroughcatchproj, "allocation control projection");
907 Node *mem_proj = init->proj_out(TypeFunc::Memory);
909 Node *mem = init->in(TypeFunc::Memory);
1298 InitializeNode* init local
1551 InitializeNode* init = alloc->initialization(); local
1770 InitializeNode* init = alloc->initialization(); local
[all...]
H A Dsuperword.cpp96 init(); // initialize data structures
460 int init = init_nd->bottom_type()->is_int()->get_con(); local
462 int init_offset = init * p.scale_in_bytes() + p.offset_in_bytes();
2153 //------------------------------init---------------------------
2154 void SuperWord::init() { function in class:SuperWord
2155 _dg.init();
2421 assert(_map.at_grow(node->_idx) == NULL, "one init only");
H A Dmemnode.cpp1046 InitializeNode* init = st->in(0)->as_Initialize(); local
1047 AllocateNode* alloc = init->allocation();
1051 st = init->find_captured_store(offset, memory_size(), phase);
2335 InitializeNode* init = mem->in(0)->as_Initialize(); local
2336 intptr_t offset = init->can_capture_store(this, phase, can_reshape);
2338 Node* moved = init->capture_store(this, offset, phase, can_reshape);
2689 InitializeNode* init = alloc->initialization(); local
2690 if (init != NULL)
2691 *np = init->in(TypeFunc::Memory);
2935 // init
3062 InitializeNode* init = initialization(); local
3563 jlong init = inits[j]; local
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp48 #include "runtime/init.hpp"
92 such ctors and calls MUST NOT come between an oop declaration/init and its
750 jboolean init, jobject loader,
766 jclass result = find_class_from_class_loader(env, h_name, init, h_loader,
777 jboolean init, jclass from))
797 jclass result = find_class_from_class_loader(env, h_name, init, h_loader,
4101 jclass find_class_from_class_loader(JNIEnv* env, Symbol* name, jboolean init, Handle loader, Handle protection_domain, jboolean throwError, TRAPS) { argument
4109 if (init && klass_handle->oop_is_instance()) {
H A Djni.h629 (JNIEnv *env, jsize len, jclass clazz, jobject init);
1628 jobject init) {
1629 return functions->NewObjectArray(this,len,clazz,init);
1627 NewObjectArray(jsize len, jclass clazz, jobject init) argument
H A DjvmtiTagMap.cpp66 inline void init(oop object, jlong tag) { function in class:JvmtiTagHashmapEntry
73 JvmtiTagHashmapEntry(oop object, jlong tag) { init(object, tag); }
139 void init(int size_index=0, float load_factor=4.0f) { function in class:JvmtiTagHashmap
273 init(i, load_factor);
275 init(i);
281 init();
478 entry->init(ref, tag);
1655 static void init(); // initialize
1670 void ObjectMarker::init() { function in class:ObjectMarker
1750 ObjectMarker::init();
[all...]
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java1789 init(pc);
1798 private Instruction init(int pc) { method in class:Indify.Instruction
1813 return init(npc);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXToolkit.java217 void init() { method in class:XToolkit
304 init();
305 XWM.init();
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DBandStructure.java379 // caller must call init
382 public Band init() { method in class:BandStructure.Band
1190 public Band init() { method in class:BandStructure.MultiBand
1191 super.init();
1226 b.init(); add(b);
1231 b.init(); add(b);
1236 b.init(); add(b);
1241 b.init(); add(b);
1246 b.init(); add(b);
1252 b.init(); ad
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp307 void LIRGenerator::init() { function in class:LIRGenerator
/openjdk7/jdk/src/share/javavm/export/
H A Djni.h629 (JNIEnv *env, jsize len, jclass clazz, jobject init);
1628 jobject init) {
1629 return functions->NewObjectArray(this,len,clazz,init);
1627 NewObjectArray(jsize len, jclass clazz, jobject init) argument

Completed in 183 milliseconds

<<21222324252627282930>>