Searched defs:stage (Results 1 - 8 of 8) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DORBInitInfoImpl.java79 // The current stage of initialization
80 private int stage = STAGE_PRE_INIT; field in class:ORBInitInfoImpl
82 // The pre-initialization stage (pre_init() being called)
85 // The post-initialization stage (post_init() being called)
126 * Sets the current stage we are in. This limits access to certain
129 void setStage( int stage ) {
130 this.stage = stage;
134 * Throws an exception if the current stage is STAGE_CLOSED.
140 if( stage
[all...]
/openjdk7/jdk/test/java/awt/Focus/ShowFrameCheckForegroundTest/
H A DShowFrameCheckForegroundTest.java96 private void test(Window toplevel, int stage) { argument
101 switch (stage) {
113 throw new TestFailedException("Stage " + stage + ". The toplevel " + toplevel + " wasn't made foreground on showing");
115 System.out.println("Stage " + stage + ". Toplevel " + toplevel + " - passed");
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftEnvelopeGenerator.java45 private final int[] stage = new int[max_count]; field in class:SoftEnvelopeGenerator
66 stage[i] = 0;
124 if (stage[i] == EG_END)
127 if ((stage[i] > EG_OFF) && (stage[i] < EG_RELEASE)) {
136 stage[i] = EG_SHUTDOWN;
142 stage[i] = EG_END;
158 stage[i] = EG_RELEASE;
163 switch (stage[i]) {
168 stage[
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Dformsopt.cpp395 const char *stage; local
430 for ( _stages.reset(); (stage = _stages.iter()) != NULL; )
431 fprintf(fp," %s(%d)", stage, count++);
492 fprintf(fp,"PipeClassResourceForm: %s at stage %s for %d cycles\n",
H A Dformsopt.hpp317 PipeClassOperandForm(const char *stage, unsigned iswrite, unsigned more_instrs) argument
318 : _stage(stage)
342 PipeClassResourceForm(const char *resource, const char *stage, int cycles) argument
345 , _stage(stage)
H A Doutput_h.cpp982 fprintf(fp_hpp, " enum machPipelineStages * const stage,\n");
990 fprintf(fp_hpp, " , _resource_stage(stage)\n");
2147 const char *stage; local
2148 for ( _pipeline->_stages.reset(); (stage = _pipeline->_stages.iter()) != NULL; ) {
2149 int len = (int)strlen(stage);
2161 const char *stage; local
2162 for ( _pipeline->_stages.reset(); (stage = _pipeline->_stages.iter()) != NULL; )
2163 fprintf(fp_hpp, " stage_%-*s = %d,\n", stagelen, stage, ++stagenum);
H A Dadlparse.cpp1747 char * stage; local
1951 stage = get_ident();
1952 if (stage == NULL) {
1953 parse_err(SYNERR, "pipeline stage identifier expected at \"%c\"\n", _curchar);
1999 PipeClassOperandForm *pipe_operand = new PipeClassOperandForm(stage, is_write, more_instrs);
2022 stage = get_ident();
2023 if (stage == NULL) {
2024 parse_err(SYNERR, "pipeline stage identifier expected at \"%c\"\n", _curchar);
2042 PipeClassResourceForm *resource = new PipeClassResourceForm(ident, stage, cyclecnt);
2043 int stagenum = pipeline._stages.index(stage);
[all...]
H A Doutput_c.cpp315 int stage = pipeline->_stages.index(piperesource->_stage); local
316 if (res_stages[i] < stage+1)
317 res_stages[i] = stage+1;
528 uint stage = pipeline->_stages.index(piperesource->_stage); local
529 if (NameList::Not_in_list == stage) {
533 "pipeline stage undeclared: %s\n",
537 uint upper_limit = stage+cycles-1;
538 uint lower_limit = stage-1;
850 // Scan the operands, looking for last output stage and number of inputs

Completed in 84 milliseconds