Home | History | Annotate | Download | only in polymer

Lines Matching refs:REPEAT

3211            (name !== 'bind' && name !== 'repeat'))) {
3212 throw Error('as and in can only be used within <template bind/repeat>');
6351 var REPEAT = 'repeat';
6356 'repeat': true,
6509 // <tr template repeat="{{ foo }}"" class="bar"><td>Bar</td></tr>
6513 // <template repeat
6705 if (!directives.if && !directives.bind && !directives.repeat) {
7052 (name === IF || name === BIND || name === REPEAT)) {
7068 bindings.repeat = parseWithDefault(element, REPEAT, prepareBindingFn);
7070 if (bindings.if && !bindings.bind && !bindings.repeat)
7221 if (directives.repeat) {
7222 deps.repeat = true;
7223 deps.oneTime = directives.repeat.onlyOneTime;
7224 deps.value = processBinding(REPEAT, directives.repeat, template, model);
7226 deps.repeat = false;
7244 * Gets the updated value of the bind/repeat. This can potentially call
7279 if (!this.deps.repeat)
7281 var observe = this.deps.repeat &&