HomeSort by relevance Sort by last modified time
    Searched refs:SVGPathByteStream (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathUtilities.h 31 class SVGPathByteStream;
36 // String/SVGPathByteStream -> Path
38 bool buildPathFromByteStream(SVGPathByteStream*, Path&);
40 // SVGPathSegList/String -> SVGPathByteStream
41 bool buildSVGPathByteStreamFromSVGPathSegList(const SVGPathSegList&, SVGPathByteStream*, PathParsingMode);
42 bool appendSVGPathByteStreamFromSVGPathSeg(PassRefPtr<SVGPathSeg>, SVGPathByteStream*, PathParsingMode);
43 bool buildSVGPathByteStreamFromString(const String&, SVGPathByteStream*, PathParsingMode);
45 // SVGPathByteStream/SVGPathSegList -> String
46 bool buildStringFromByteStream(SVGPathByteStream*, String&, PathParsingMode);
49 // SVGPathByteStream -> SVGPathSegLis
    [all...]
SVGPathByteStream.h 45 class SVGPathByteStream {
48 static PassOwnPtr<SVGPathByteStream> create()
50 return adoptPtr(new SVGPathByteStream);
53 PassOwnPtr<SVGPathByteStream> copy()
55 return adoptPtr(new SVGPathByteStream(m_data));
64 void append(SVGPathByteStream* other)
77 SVGPathByteStream() { }
78 SVGPathByteStream(Data& data)
SVGAnimatedPath.cpp 37 OwnPtr<SVGPathByteStream> byteStream = SVGPathByteStream::create();
49 OwnPtr<SVGPathByteStream> byteStream = SVGPathByteStream::create();
96 SVGPathByteStream* fromPath = from->path();
97 SVGPathByteStream* toPath = to->path();
109 SVGPathByteStream* fromPath = from->path();
110 SVGPathByteStream* toPath = to->path();
111 SVGPathByteStream* toAtEndOfDurationPath = toAtEndOfDuration->path();
112 SVGPathByteStream* animatedPath = animated->path()
    [all...]
SVGPathByteStreamSource.h 23 #include "core/svg/SVGPathByteStream.h"
32 static PassOwnPtr<SVGPathByteStreamSource> create(SVGPathByteStream* stream)
38 SVGPathByteStreamSource(SVGPathByteStream*);
95 SVGPathByteStream::DataIterator m_streamCurrent;
96 SVGPathByteStream::DataIterator m_streamEnd;
SVGPathUtilities.cpp 60 static SVGPathByteStreamBuilder* globalSVGPathByteStreamBuilder(SVGPathByteStream* result)
124 bool buildSVGPathByteStreamFromSVGPathSegList(const SVGPathSegList& list, SVGPathByteStream* result, PathParsingMode parsingMode)
140 bool appendSVGPathByteStreamFromSVGPathSeg(PassRefPtr<SVGPathSeg> pathSeg, SVGPathByteStream* result, PathParsingMode parsingMode)
148 OwnPtr<SVGPathByteStream> appendedByteStream = SVGPathByteStream::create();
162 bool buildPathFromByteStream(SVGPathByteStream* stream, Path& result)
177 bool buildSVGPathSegListFromByteStream(SVGPathByteStream* stream, SVGPathElement* element, SVGPathSegList& result, PathParsingMode parsingMode)
192 bool buildStringFromByteStream(SVGPathByteStream* stream, String& result, PathParsingMode parsingMode)
224 bool buildSVGPathByteStreamFromString(const String& d, SVGPathByteStream* result, PathParsingMode parsingMode)
240 bool buildAnimatedSVGPathByteStream(SVGPathByteStream* fromStream, SVGPathByteStream* toStream, SVGPathByteStream* result, float progress
    [all...]
SVGPathByteStreamBuilder.h 23 #include "core/svg/SVGPathByteStream.h"
35 void setCurrentByteStream(SVGPathByteStream* byteStream) { m_byteStream = byteStream; }
91 SVGPathByteStream* m_byteStream;
SVGAnimatedType.h 36 class SVGPathByteStream;
54 static PassOwnPtr<SVGAnimatedType> createPath(PassOwnPtr<SVGPathByteStream>);
131 const SVGPathByteStream* path() const
234 SVGPathByteStream* path()
295 SVGPathByteStream* path;
SVGPathByteStreamSource.cpp 26 SVGPathByteStreamSource::SVGPathByteStreamSource(SVGPathByteStream* stream)
SVGPathElement.h 29 #include "core/svg/SVGPathByteStream.h"
90 SVGPathByteStream* pathByteStream() const;
122 OwnPtr<SVGPathByteStream> m_pathByteStream;
SVGPathElement.cpp 81 , m_pathByteStream(SVGPathByteStream::create())
301 SVGPathByteStream* SVGPathElement::pathByteStream() const
SVGAnimatedType.cpp 25 #include "core/svg/SVGPathByteStream.h"
182 PassOwnPtr<SVGAnimatedType> SVGAnimatedType::createPath(PassOwnPtr<SVGPathByteStream> path)
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedPathSegListPropertyTearOff.h 23 #include "core/svg/SVGPathByteStream.h"
69 void animationStarted(SVGPathByteStream* byteStream, const SVGPathSegList* baseValue)
104 SVGPathByteStream* animatedPathByteStream() const { return m_animatedPathByteStream; }
113 SVGPathByteStream* m_animatedPathByteStream;

Completed in 201 milliseconds