Home | History | Annotate | Download | only in common

Lines Matching refs:pieces

111                 String[] pieces = param.substring(8).split("\\+");
112 if (pieces.length > 3) {
115 if (pieces.length > 0 && pieces[0].length() > 0) {
116 options.backoffFixedMillis = parseSeconds(pieces[0]);
118 if (pieces.length > 1 && pieces[1].length() > 0) {
119 options.backoffIncrementalMillis = parseSeconds(pieces[1]);
121 if (pieces.length > 2 && pieces[2].length() > 0) {
122 options.backoffExponentialMillis = (int)parseSeconds(pieces[2]);