| /forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/ |
| H A D | ReconciliationContext.java | 50 private ReconStage stage = ReconStage.ACTIVE_INITIALIZED; field in class:ReconciliationContext 209 return stage.getState(); 213 return stage; 358 * @param newStage Sets the current state and stage in the reconciliation process 361 // If the curent stage is one of COMPLETED, then simply return 362 if (this.stage.isComplete()) { 365 // If there is already a stage in progress, end it first 366 if (this.stage != ReconStage.ACTIVE_INITIALIZED) { 367 reconStat.endStage(this.stage); 371 this.stage [all...] |
| H A D | ReconciliationStatistic.java | 91 public void startStage(ReconStage stage) { argument 94 stageStat.put(stage, stageEntry); 97 public void endStage(ReconStage stage) { argument 98 Map stageEntry = stageStat.get(stage);
|
| /openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/ |
| H A D | ORBInitInfoImpl.java | 79 // 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/src/share/classes/com/sun/media/sound/ |
| H A D | SoftEnvelopeGenerator.java | 45 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 D | adlparse.cpp | 1747 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 D | formsopt.cpp | 395 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 D | formsopt.hpp | 317 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 D | output_c.cpp | 315 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
|
| H A D | output_h.cpp | 982 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);
|
| /openjdk7/jdk/test/java/awt/Focus/ShowFrameCheckForegroundTest/ |
| H A D | ShowFrameCheckForegroundTest.java | 96 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");
|