Home | History | Annotate | Download | only in media

Lines Matching refs:rest

114         // Make |rest| starting at the next field.
115 var rest = attributes[i].substring(nextFieldIndex + 1);
117 while (rest.length > 0) {
118 nextFieldIndex = rest.search(this.FIELD_SEPARATOR_REGEX_);
120 nextFieldIndex = rest.length;
123 name = rest.substring(0, rest.indexOf(':'));
125 value = rest.substring(rest.indexOf(':') + 1, nextFieldIndex);
128 // Move |rest| to the start of the next field.
129 rest = rest.substring(nextFieldIndex + 1);