Lines Matching refs:simple
16 * Utility method to split out simple attribute name/value pairs ("x")
23 * @return {Object} An object literal with 2 properties - "simple" and "complex",
24 * containing simple and complex attribute values respectively keyed
52 return { simple:vals, complex:subvals };
66 * @param {Object} initValues The object with simple and complex attribute name/value pairs returned from _normAttrVals
77 simple,
97 simple = initValues.simple;
98 if (simple && simple.hasOwnProperty(attr)) {
99 val = simple[attr];
102 // Complex Attributes (complex values applied, after simple, incase both are set)