Searched refs:valueAsString (Results 1 - 25 of 30) sorted by relevance

12

/external/webkit/Source/WebCore/svg/
H A DSVGNumberList.h35 String valueAsString() const;
43 static String toString(const SVGNumberList& type) { return type.valueAsString(); }
H A DSVGLengthList.h35 String valueAsString() const;
43 static String toString(const SVGLengthList& type) { return type.valueAsString(); }
H A DSVGTransformList.h41 String valueAsString() const;
47 static String toString(const SVGTransformList& type) { return type.valueAsString(); }
H A DSVGAngle.h52 String valueAsString() const;
65 static String toString(const SVGAngle& type) { return type.valueAsString(); }
H A DSVGPathSegList.cpp34 String SVGPathSegList::valueAsString() const function in class:WebCore::SVGPathSegList
H A DSVGLengthList.cpp57 String SVGLengthList::valueAsString() const function in class:WebCore::SVGLengthList
66 builder.append(at(i).valueAsString());
H A DSVGTransformList.cpp64 String SVGTransformList::valueAsString() const function in class:WebCore::SVGTransformList
72 builder.append(at(i).valueAsString());
H A DSVGPointList.h37 String valueAsString() const;
H A DSVGStringList.h46 String valueAsString() const;
H A DSVGLength.h71 SVGLength(SVGLengthMode mode = LengthModeOther, const String& valueAsString = String());
88 String valueAsString() const;
124 static String toString(const SVGLength& type) { return type.valueAsString(); }
H A DSVGNumberList.cpp47 String SVGNumberList::valueAsString() const function in class:WebCore::SVGNumberList
H A DSVGPathSegList.h41 String valueAsString() const;
H A DSVGAngle.idl37 attribute [ConvertNullToNullString] DOMString valueAsString
H A DSVGPreserveAspectRatio.h82 String valueAsString() const;
92 static String toString(const SVGPreserveAspectRatio& type) { return type.valueAsString(); }
H A DSVGLength.idl45 attribute [ConvertNullToNullString, StrictTypeChecking] DOMString valueAsString
H A DSVGTests.cpp132 AtomicString value(m_requiredFeatures.value.valueAsString());
140 AtomicString value(m_requiredExtensions.value.valueAsString());
148 AtomicString value(m_systemLanguage.value.valueAsString());
H A DSVGPointList.cpp32 String SVGPointList::valueAsString() const function in class:WebCore::SVGPointList
H A DSVGStringList.cpp66 String SVGStringList::valueAsString() const function in class:WebCore::SVGStringList
H A DSVGTransform.h69 String valueAsString() const;
H A DSVGPolyElement.cpp128 SVGAnimatedPropertySynchronizer<true>::synchronize(this, SVGNames::pointsAttr, m_points.value.valueAsString());
H A DSVGLength.cpp125 SVGLength::SVGLength(SVGLengthMode mode, const String& valueAsString) argument
130 setValueAsString(valueAsString, ec);
275 String SVGLength::valueAsString() const function in class:WebCore::SVGLength
H A DSVGAngle.cpp112 String SVGAngle::valueAsString() const function in class:WebCore::SVGAngle
H A DSVGTransform.cpp132 String SVGTransform::valueAsString() const function in class:WebCore::SVGTransform
/external/webkit/Tools/DumpRenderTree/gtk/
H A DLayoutTestControllerGtk.cpp760 GOwnPtr<gchar> valueAsString(JSStringCopyUTF8CString(value));
784 DumpRenderTreeSupportGtk::setLinksIncludedInFocusChain(!g_ascii_strcasecmp(valueAsString.get(), "true") || !g_ascii_strcasecmp(valueAsString.get(), "1"));
799 g_object_set(settings, propertyName, valueAsString.get(), NULL);
801 g_object_set(G_OBJECT(settings), propertyName, !g_ascii_strcasecmp(valueAsString.get(), "true")
802 || !g_ascii_strcasecmp(valueAsString.get(), "1"), NULL);
804 g_object_set(G_OBJECT(settings), propertyName, atoi(valueAsString.get()), NULL);
806 gfloat newValue = g_ascii_strtod(valueAsString.get(), 0);
/external/webkit/Source/JavaScriptCore/API/tests/
H A Dtestapi.c75 JSStringRef valueAsString = JSValueToStringCopy(context, value, NULL); local
77 size_t jsSize = JSStringGetMaximumUTF8CStringSize(valueAsString);
79 JSStringGetUTF8CString(valueAsString, jsBuffer, jsSize);
95 JSStringRelease(valueAsString);
100 JSStringRef valueAsString = JSValueToStringCopy(context, value, NULL); local
102 size_t jsLength = JSStringGetLength(valueAsString);
103 const JSChar* jsBuffer = JSStringGetCharactersPtr(valueAsString);
124 JSStringRelease(valueAsString);

Completed in 372 milliseconds

12