Lines Matching full:space
67 Stringifier(ExecState*, JSValue replacer, JSValue space);
136 static inline UString gap(ExecState* exec, JSValue space)
139 space = unwrapBoxedPrimitive(exec, space);
141 // If the space value is a number, create a gap string with that number of spaces.
143 if (space.getNumber(spaceCount)) {
157 // If the space value is a string, use it as the gap string, otherwise use no gap string.
158 UString spaces = space.getString(exec);
191 Stringifier::Stringifier(ExecState* exec, JSValue replacer, JSValue space)
198 , m_gap(gap(exec, space))
867 JSValue space = args.at(2);
868 return Stringifier(exec, replacer, space).stringify(value);