• Home
  • Raw
  • Download

Lines Matching refs:out

170 function validateTagName(domNode, out, relativePath) {  argument
177 const depends = out.deps
178 const jsonTemplate = out.jsonTemplate
179 const log = out.log
685 function validateClass(classNames, out, nodeLoc, relativePath) { argument
687 setDebugLine(out.jsonTemplate, relativePath, nodeLoc.line, classNames)
689 out.jsonTemplate.classList = eval(bind.transExpForList(classNames))
691 out.jsonTemplate.classList = classNames.split(/\s+/)
758 function validateStyle(css, out, nodeLoc, relativePath) { argument
759 const log = out.log
763 processCssArray(css, out, nodeLoc, cssStyle, cssArray, log)
764 out.jsonTemplate.style = cssStyle
765 setDebugLine(out.jsonTemplate, relativePath, nodeLoc.line)
775 function processCssArray(css, out, nodeLoc, cssStyle, cssArray, log) { argument
783 let value = bind(styleContent[1].trim(), undefined, true, out, nodeLoc)
799 expandStyle(key, value, valuejsonTemplate, cssStyle, out, nodeLoc, log)
808 cssStyle[styleContent[0]] = bind(styleContent[1], undefined, true, out, nodeLoc)
899 function expandStyle(key, value, valuejsonTemplate, cssStyle, out, nodeLoc, log) { argument
908 } else if (process.env.DEVICE_LEVEL === DEVICE_LEVEL.LITE && out.jsonTemplate.type === 'list' &&
928 function validateIf(val, out, flag, nodeLoc, relativePath) { argument
935 const log = out.log
948 const value = bind(val, undefined, false, out, nodeLoc)
950 out.jsonTemplate.shown = show
951 setDebugLine(out.jsonTemplate, relativePath, nodeLoc.line)
961 function validateElif(val, out, flag, nodeLoc, relativePath) { argument
975 const value = bind(val, undefined, false, out, nodeLoc)
976 out.jsonTemplate.shown = card && /\$f/.test(value) ? value.substr(3, value.length - 4) : value
977 setDebugLine(out.jsonTemplate, relativePath, nodeLoc.line)
989 function validateFor(val, out, nodeLoc, relativePath) { argument
990 const log = out.log
1000 forMatch = { exp: bind(('{{' + suffix[0].trim() + '}}'), undefined, false, out, nodeLoc) }
1008 forMatch = bind('{{' + val + '}}', undefined, false, out, nodeLoc)
1010 out.jsonTemplate.repeat = forMatch
1011 setDebugLine(out.jsonTemplate, relativePath, nodeLoc.line)
1027 function validateId(id, out, nodeLoc, relativePath) { argument
1029 out.jsonTemplate.id = REG_DATA_BINDING.test(id) ? bind(id, undefined, true, out, nodeLoc) : id
1030 setDebugLine(out.jsonTemplate, relativePath, nodeLoc.line)
1032 out.jsonTemplate.attr = out.jsonTemplate.attr || {}
1033out.jsonTemplate.attr[styler.util.hyphenedToCamelCase('id')] = bind(id, undefined, true, out, node…
1044 function validateAppend(val, out, nodeLoc, relativePath) { argument
1046 out.jsonTemplate.append = bind(val, undefined, true, out, nodeLoc)
1047 setDebugLine(out.jsonTemplate, relativePath, nodeLoc.line)
1066 function validateEvent(eventName, val, out, pos, relativePath) { argument
1072 out.log.push({
1094 false, true, out, pos) + '})')
1098 distributeEvent(out, eventName, name, val)
1099 setDebugLine(out.jsonTemplate, relativePath, pos.line)
1103 function distributeEvent(out, eventName, name, val) { argument
1108 out.jsonTemplate.catchCaptureEvents = out.jsonTemplate.catchCaptureEvents || {}
1109 out.jsonTemplate.catchCaptureEvents[name] = val
1111 out.jsonTemplate.catchBubbleEvents = out.jsonTemplate.catchBubbleEvents || {}
1112 out.jsonTemplate.catchBubbleEvents[name] = val
1115 out.jsonTemplate.onCaptureEvents = out.jsonTemplate.onCaptureEvents || {}
1116 out.jsonTemplate.onCaptureEvents[name] = val
1118 out.jsonTemplate.onBubbleEvents = out.jsonTemplate.onBubbleEvents || {}
1119 out.jsonTemplate.onBubbleEvents[name] = val
1124 out.jsonTemplate.catchBubbleEvents = out.jsonTemplate.catchBubbleEvents || {}
1125 out.jsonTemplate.catchBubbleEvents[name] = val
1127 out.jsonTemplate.onBubbleEvents = out.jsonTemplate.onBubbleEvents || {}
1128 out.jsonTemplate.onBubbleEvents[name] = val
1131 out.jsonTemplate.events = out.jsonTemplate.events || {}
1132 out.jsonTemplate.events[name] = val
1141 function validateAttr(resourcePath, attrName, attrValue, out, tagName, nodeLoc, relativePath) { argument
1143 out.log.push({
1156 out.log.push({