• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebCore-7537.78.1/svg/

Lines Matching defs:end

213     const UChar* end = currViewSpec + viewSpec.length();
215 if (currViewSpec >= end || !m_contextElement)
218 if (!skipString(currViewSpec, end, svgViewSpec, WTF_ARRAY_LENGTH(svgViewSpec)))
221 if (currViewSpec >= end || *currViewSpec != '(')
225 while (currViewSpec < end && *currViewSpec != ')') {
227 if (skipString(currViewSpec, end, viewBoxSpec, WTF_ARRAY_LENGTH(viewBoxSpec))) {
228 if (currViewSpec >= end || *currViewSpec != '(')
232 if (!SVGFitToViewBox::parseViewBox(m_contextElement->document(), currViewSpec, end, viewBox, false))
235 if (currViewSpec >= end || *currViewSpec != ')')
238 } else if (skipString(currViewSpec, end, viewTargetSpec, WTF_ARRAY_LENGTH(viewTargetSpec))) {
239 if (currViewSpec >= end || *currViewSpec != '(')
242 while (currViewSpec < end && *currViewSpec != ')')
244 if (currViewSpec >= end)
251 if (!skipString(currViewSpec, end, zoomAndPanSpec, WTF_ARRAY_LENGTH(zoomAndPanSpec)))
253 if (currViewSpec >= end || *currViewSpec != '(')
256 if (!parseZoomAndPan(currViewSpec, end, m_zoomAndPan))
258 if (currViewSpec >= end || *currViewSpec != ')')
262 if (!skipString(currViewSpec, end, preserveAspectRatioSpec, WTF_ARRAY_LENGTH(preserveAspectRatioSpec)))
264 if (currViewSpec >= end || *currViewSpec != '(')
268 if (!preserveAspectRatio.parse(currViewSpec, end, false))
271 if (currViewSpec >= end || *currViewSpec != ')')
275 if (!skipString(currViewSpec, end, transformSpec, WTF_ARRAY_LENGTH(transformSpec)))
277 if (currViewSpec >= end || *currViewSpec != '(')
280 SVGTransformable::parseTransformAttribute(m_transform, currViewSpec, end, SVGTransformable::DoNotClearList);
281 if (currViewSpec >= end || *currViewSpec != ')')
287 if (currViewSpec < end && *currViewSpec == ';')
291 if (currViewSpec >= end || *currViewSpec != ')')