Home | History | Annotate | Download | only in grxmlcompile

Lines Matching refs:minCnt

59 int get_range(const std::string& s, int* minCnt, int* maxCnt)
66 *minCnt = atoi( sval.c_str() );
80 *minCnt = atoi( sval.c_str() );
85 *minCnt = *maxCnt = atoi( s.c_str());
561 int minCnt=0,maxCnt=0;
566 if( s.length()>0 && get_range( s, &minCnt, &maxCnt) ) {
572 m_pGraph->BeginCount( p_SubGraph, minCnt, maxCnt );
576 m_pGraph->BeginItemRepeat ( p_SubGraph, minCnt, -1);
718 int minCnt=-1, maxCnt=-1;
719 if( get_range( s, &minCnt, &maxCnt) ) {
726 else if ( minCnt>0 && maxCnt>0)
728 m_pGraph->BeginCount( p_SubGraph, minCnt, maxCnt );
730 else if( minCnt>0 )
732 m_pGraph->BeginItemRepeat ( p_SubGraph, minCnt, -1);