testProcessLoop method

int testProcessLoop(
  1. String line,
  2. ClipParam param
)

Implementation

int testProcessLoop( String line, ClipParam param ){
	resetLoopCount();

	ParamInteger err = ParamInteger();
	if( beginTestProcess( line, param, err ) ){
		while( testProcess( param, err ) ){}
	}
	termTestProcess( param, err );
	return err.val();
}