Lines Matching refs:simple
18 * Utility method to split out simple attribute name/value pairs ("x")
25 * @return {Object} An object literal with 2 properties - "simple" and "complex",
26 * containing simple and complex attribute values respectively keyed
54 return { simple:vals, complex:subvals };
68 * @param {Object} initValues The object with simple and complex attribute name/value pairs returned from _normAttrVals
79 simple,
99 simple = initValues.simple;
100 if (simple && simple.hasOwnProperty(attr)) {
101 val = simple[attr];
104 // Complex Attributes (complex values applied, after simple, incase both are set)