Home | History | Annotate | Download | only in grxmlcompile

Lines Matching full:sval

61   std::string sval;
64 sval.assign( s, 0, p1 );
65 if(strspn(sval.c_str(),"0123456789")<1) return 1;
66 *minCnt = atoi( sval.c_str() );
67 sval.assign( s, p1+1, s.size() );
70 if (!sval.empty() ) {
71 if(strspn(sval.c_str(),"0123456789")<1) return 1;
72 *maxCnt = atoi( sval.c_str() );
78 sval.assign( s, 0, p1 );
79 if(strspn(sval.c_str(),"0123456789")<1) return 1;
80 *minCnt = atoi( sval.c_str() );