OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SVGPathByteStream
(Results
1 - 9
of
9
) sorted by null
/external/webkit/Source/WebCore/svg/
SVGPathParserFactory.h
26
#include "
SVGPathByteStream
.h"
40
// String/
SVGPathByteStream
-> Path
42
bool buildPathFromByteStream(
SVGPathByteStream
*, Path&);
44
// SVGPathSegList/String ->
SVGPathByteStream
45
bool buildSVGPathByteStreamFromSVGPathSegList(const SVGPathSegList&, OwnPtr<
SVGPathByteStream
>&, PathParsingMode);
46
bool buildSVGPathByteStreamFromString(const String&, OwnPtr<
SVGPathByteStream
>&, PathParsingMode);
48
//
SVGPathByteStream
/SVGPathSegList -> String
49
bool buildStringFromByteStream(
SVGPathByteStream
*, String&, PathParsingMode);
52
//
SVGPathByteStream
-> SVGPathSegList
53
bool buildSVGPathSegListFromByteStream(
SVGPathByteStream
*, SVGPathElement*, SVGPathSegList&, PathParsingMode)
[
all
...]
SVGPathByteStream.h
46
class
SVGPathByteStream
{
47
WTF_MAKE_NONCOPYABLE(
SVGPathByteStream
); WTF_MAKE_FAST_ALLOCATED;
49
static PassOwnPtr<
SVGPathByteStream
> create()
51
return adoptPtr(new
SVGPathByteStream
);
54
PassOwnPtr<
SVGPathByteStream
> copy()
56
return adoptPtr(new
SVGPathByteStream
(m_data));
69
SVGPathByteStream
() { }
70
SVGPathByteStream
(Data& data)
SVGPathByteStreamSource.h
25
#include "
SVGPathByteStream
.h"
33
static PassOwnPtr<SVGPathByteStreamSource> create(
SVGPathByteStream
* stream)
39
SVGPathByteStreamSource(
SVGPathByteStream
*);
96
SVGPathByteStream
* m_stream;
97
SVGPathByteStream
::DataIterator m_streamCurrent;
98
SVGPathByteStream
::DataIterator m_streamEnd;
SVGAnimateElement.h
29
#include "
SVGPathByteStream
.h"
78
OwnPtr<
SVGPathByteStream
> m_fromPath;
79
OwnPtr<
SVGPathByteStream
> m_toPath;
80
OwnPtr<
SVGPathByteStream
> m_animatedPath;
81
SVGPathByteStream
* m_animatedPathPointer;
SVGPathParserFactory.cpp
62
static SVGPathByteStreamBuilder* globalSVGPathByteStreamBuilder(
SVGPathByteStream
* result)
143
bool SVGPathParserFactory::buildSVGPathByteStreamFromSVGPathSegList(const SVGPathSegList& list, OwnPtr<
SVGPathByteStream
>& result, PathParsingMode parsingMode)
145
result =
SVGPathByteStream
::create();
158
bool SVGPathParserFactory::buildPathFromByteStream(
SVGPathByteStream
* stream, Path& result)
173
bool SVGPathParserFactory::buildSVGPathSegListFromByteStream(
SVGPathByteStream
* stream, SVGPathElement* element, SVGPathSegList& result, PathParsingMode parsingMode)
188
bool SVGPathParserFactory::buildStringFromByteStream(
SVGPathByteStream
* stream, String& result, PathParsingMode parsingMode)
220
bool SVGPathParserFactory::buildSVGPathByteStreamFromString(const String& d, OwnPtr<
SVGPathByteStream
>& result, PathParsingMode parsingMode)
222
result =
SVGPathByteStream
::create();
235
bool SVGPathParserFactory::buildAnimatedSVGPathByteStream(
SVGPathByteStream
* fromStream,
SVGPathByteStream
* toStream, OwnPtr<SVGPathByteStream>& result, float progress
[
all
...]
SVGPathByteStreamBuilder.h
26
#include "
SVGPathByteStream
.h"
36
void setCurrentByteStream(
SVGPathByteStream
* byteStream) { m_byteStream = byteStream; }
92
SVGPathByteStream
* m_byteStream;
SVGPathByteStreamSource.cpp
27
SVGPathByteStreamSource::SVGPathByteStreamSource(
SVGPathByteStream
* stream)
SVGPathElement.h
30
#include "
SVGPathByteStream
.h"
93
SVGPathByteStream
* pathByteStream() const { return m_pathByteStream.get(); }
120
OwnPtr<
SVGPathByteStream
> m_pathByteStream;
SVGPathElement.cpp
54
, m_pathByteStream(
SVGPathByteStream
::create())
Completed in 46 milliseconds