Searched defs:to (Results 126 - 150 of 758) sorted by path

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGNumber.cpp15 * contributors may be used to endorse or promote products derived from
99 void SVGNumber::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDuration, SVGElement*) argument
104 RefPtr<SVGNumber> toNumber = toSVGNumber(to);
H A DSVGNumberList.cpp16 * along with this library; see the file COPYING.LIB. If not, write to
100 // No call to |clear()| here. SVG policy is to use valid items before error.
140 float SVGNumberList::calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement*) argument
H A DSVGNumberOptionalNumber.cpp15 * contributors may be used to endorse or promote products derived from
90 void SVGNumberOptionalNumber::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDuration, SVGElement*) argument
95 RefPtr<SVGNumberOptionalNumber> toNumber = toSVGNumberOptionalNumber(to);
H A DSVGPathBlender.cpp15 * along with this library; see the file COPYING.LIB. If not, write to
46 float SVGPathBlender::blendAnimatedDimensonalFloat(float from, float to, FloatBlendMode blendMode) argument
50 return from + to * m_addTypesCount;
54 return blend(from, to, m_progress);
59 // Transform toY to the coordinate mode of fromY
60 float animValue = blend(from, m_fromMode == AbsoluteCoordinates ? to + toValue : to - toValue, m_progress);
65 // Transform the animated point to the coordinate mode, needed for the current progress.
82 // Transform toPoint to the coordinate mode of fromPoint
94 // Transform the animated point to th
291 unsigned short to = toType; local
[all...]
H A DSVGPathSegList.cpp18 * along with this library; see the file COPYING.LIB. If not, write to
178 const RefPtr<SVGPathSegList> to = toSVGPathSegList(toValue); local
181 const SVGPathByteStream* toStream = to->byteStream();
185 // If no 'to' value is given, nothing to animate.
194 // If the 'from' value is given and it's length doesn't match the 'to' value list length, fallback to a discrete animation.
230 float SVGPathSegList::calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement*) argument
H A DSVGPoint.cpp15 * contributors may be used to endorse or promote products derived from
131 float SVGPoint::calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement* contextElement) argument
H A DSVGPointList.cpp16 * along with this library; see the file COPYING.LIB. If not, write to
89 // ',' requires the list to be continued
163 float SVGPointList::calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement*) argument
H A DSVGRect.cpp17 * along with this library; see the file COPYING.LIB. If not, write to
147 float SVGRect::calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement* contextElement) argument
H A DSVGString.cpp15 * along with this library; see the file COPYING.LIB. If not, write to
32 void SVGString::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase>, SVGElement*) argument
37 String toString = toSVGString(to)->m_value;
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathNodeSet.cpp59 static void sortBlock(unsigned from, unsigned to, WillBeHeapVector<NodeSetVector>& parentMatrix, bool mayContainAttributeNodes) argument
61 // Should not call this function with less that two nodes to sort.
62 ASSERT(from + 1 < to);
64 for (unsigned i = from; i < to; ++i) {
79 for (unsigned i = from + 1; i < to; ++i) {
93 // document order. Find it and move it to the beginning.
94 for (unsigned i = from; i < to; ++i) {
97 if (from + 2 < to)
98 sortBlock(from + 1, to, parentMatrix, mayContainAttributeNodes);
106 // the children of the element. The namespace nodes are defined to occu
256 unsigned to = m_nodes.size() - 1; local
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DAnimationUtilities.h38 inline int blend(int from, int to, double progress) argument
40 return lround(from + (to - from) * progress);
45 inline T blend(T from, T to, double progress) argument
48 return clampTo<T>(round(to > from ? from + (to - from) * progress : from - (from - to) * progress));
51 inline double blend(double from, double to, double progress) argument
53 return from + (to - from) * progress;
56 inline float blend(float from, float to, double progress) argument
58 return static_cast<float>(from + (to
61 blend(LayoutUnit from, LayoutUnit to, double progress) argument
66 blend(const IntPoint& from, const IntPoint& to, double progress) argument
71 blend(const FloatPoint& from, const FloatPoint& to, double progress) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFont.cpp18 * along with this library; see the file COPYING.LIB. If not, write to
80 // Our FontData don't have to be checked, since checking the font description will be fine.
96 // FIXME: It is pretty crazy that we are willing to just poke into a RefPtr, but it ends up
99 // won't stick around long enough to get you in trouble). Still, this is pretty disgusting,
109 // except if the 'force' argument is set to true (in which case it will use a fallback
116 if (codePathToUse != ComplexPath && fontDescription().typesettingFeatures() && (runInfo.from || runInfo.to != runInfo.run.length()))
132 if (codePathToUse != ComplexPath && fontDescription().typesettingFeatures() && (runInfo.from || runInfo.to != runInfo.run.length()))
210 // FIXME: Some logic in common with Font::drawText. Would be nice to
217 if (codePathToUse != ComplexPath && fontDescription().typesettingFeatures() && (runInfo.from || runInfo.to != runInfo.run.length()))
242 FloatRect Font::selectionRectForText(const TextRun& run, const FloatPoint& point, int h, int from, int to, boo argument
850 selectionRectForSimpleText(const TextRun& run, const FloatPoint& point, int h, int from, int to, bool accountForGlyphBounds) const argument
[all...]
H A DGlyphPageTreeNode.cpp14 * its contributors may be used to endorse or promote products derived
158 // Fill in a buffer with the entire "page" of characters that we want to look up glyphs for.
215 // Now that we have a buffer full of characters, we want to get back an array
218 // Success is not guaranteed. For example, Times fails to fill page 260, giving glyph data
231 // all this casting is to ensure all the parameters to min and max have the same type,
232 // to avoid ambiguous template parameter errors on Windows
234 int to = 1 + min(static_cast<int>(range.to()) - static_cast<int>(start), static_cast<int>(GlyphPage::size) - 1); local
235 if (from >= static_cast<int>(GlyphPage::size) || to <
[all...]
H A DGlyphPageTreeNodeTest.cpp24 static PassRefPtr<TestSimpleFontData> create(UChar32 from, UChar32 to) argument
26 return adoptRef(new TestSimpleFontData(nullptr, from, to));
29 static PassRefPtr<TestSimpleFontData> createUnloaded(UChar32 from, UChar32 to) argument
31 return adoptRef(new TestSimpleFontData(TestCustomFontData::create(), from, to));
35 TestSimpleFontData(PassRefPtr<CustomFontData> customData, UChar32 from, UChar32 to) argument
38 , m_to(to)
H A DSegmentedFontData.h38 FontDataRange(UChar32 from, UChar32 to, PassRefPtr<SimpleFontData> fontData) argument
40 , m_to(to)
46 UChar32 to() const { return m_to; } function in struct:blink::FontDataRange
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
H A DHarfBuzzShaper.cpp16 * contributors may be used to endorse or promote products derived from
291 // Sum up advances that belong to a character.
327 // For RTL, we need to return the right side boundary of the character.
421 // setPadding sets a number of pixels to be distributed across the TextRun.
422 // WebKit uses this to justify text.
430 // If we have padding to distribute, then we try to give an equal
431 // amount to each space. The last space gets the smaller amount, if
447 void HarfBuzzShaper::setDrawRange(int from, int to)
450 ASSERT_WITH_SECURITY_IMPLICATION(to <
1107 selectionRect(const FloatPoint& point, int height, int from, int to) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
H A DOpenTypeVerticalData.cpp407 // Load hhea and hmtx to get x-component of vertical origins.
468 // VORG is preferred way to calculate vertical origin than vmtx,
563 Glyph to = map.get(glyphData.glyph); local
564 if (to)
565 glyphPage->setGlyphDataForIndex(index, to, font);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DColor.h69 // Color is currently limited to 32bit RGBA, perhaps some day we'll support better colors
85 // Returns the color serialized according to HTML5
89 // Returns the color serialized according to CSSOM
153 inline Color blend(const Color& from, const Color& to, double progress, bool blendPremultiplied = true) argument
156 // Contrary to the name, RGBA32 actually stores ARGB, so we can initialize Color directly from premultipliedARGBFromColor().
159 Color premultTo = to.alpha() ? premultipliedARGBFromColor(to) : 0;
169 return Color(blend(from.red(), to.red(), progress),
170 blend(from.green(), to.green(), progress),
171 blend(from.blue(), to
[all...]
H A DGraphicsContext.cpp113 // FIXME: Do some tests to determine how many states are typically used, and allocate
409 // we should switch to using color filter chains (Skia work in progress).
503 // We want the bounds offset mapped to (0, 0), such that the display list content
814 // Create the pattern we'll use to draw the underline.
877 // We use a 2-pixel-high misspelling indicator because that seems to be
902 // Make sure to draw only complete dots.
954 // Round to nearest pixel to match text and other content.
1026 ASSERT((runInfo.from == 0) && (runInfo.to == run.length()));
1032 // to BidiResolve
1060 drawHighlightForText(const Font& font, const TextRun& run, const FloatPoint& point, int h, const Color& backgroundColor, int from, int to) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFilterOperation.cpp34 PassRefPtr<FilterOperation> FilterOperation::blend(const FilterOperation* from, const FilterOperation* to, double progress) argument
36 ASSERT(from || to);
37 if (to)
38 return to->blend(from, progress);
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DBidiResolver.h16 * along with this library; see the file COPYING.LIB. If not, write to
64 // When ignoring spaces, this needs to be called for objects that need line boxes such as RenderInlines or
65 // hard line breaks to ensure that they're not ignored.
82 // Check to see if our last midpoint is a start point beyond the line break. If so,
108 // The goal is to reuse the line state across multiple
127 // be cached and then used to restart bidi resolution at that position.
251 // FIXME: This used to be part of deleteRuns() but was a layering violation.
271 // pass in some sort of Traits object which knows how to create runs for appending.
277 // to abreviations used in UBA spec: http://unicode.org/reports/tr9/#BD7
278 Iterator m_sor; // Points to th
418 raiseExplicitEmbeddingLevel(BidiRunList<Run>& runs, WTF::Unicode::Direction from, WTF::Unicode::Direction to) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DInterpolatedTransformOperation.h15 * contributors may be used to endorse or promote products derived from
42 static PassRefPtr<InterpolatedTransformOperation> create(const TransformOperations& from, const TransformOperations& to, double progress) argument
44 return adoptRef(new InterpolatedTransformOperation(from, to, progress));
62 return from.dependsOnBoxSize() || to.dependsOnBoxSize();
65 InterpolatedTransformOperation(const TransformOperations& from, const TransformOperations& to, double progress) argument
67 , to(to)
72 const TransformOperations to; member in class:blink::InterpolatedTransformOperation
H A DRotateTransformOperation.cpp16 * along with this library; see the file COPYING.LIB. If not, write to
39 bool RotateTransformOperation::shareSameAxis(const RotateTransformOperation* from, const RotateTransformOperation* to, FloatPoint3D* axis, double* fromAngle, double* toAngle) argument
45 if (!from && !to)
49 bool toZero = !to || to->axis().isZero();
55 *axis = to->axis();
56 *toAngle = to->angle();
67 FloatPoint3D toAxis = to->axis();
79 *toAngle = to->angle();
132 // Convert that to Axi
[all...]
H A DTransformOperationsTest.cpp47 const TransformOperations& to,
54 EXPECT_TRUE(to.blendedBoundsForBox(box, from, minProgress, maxProgress, &bounds));
62 TransformOperations operations = from.blend(to, t);
209 // If the normal is off-plane, we can have up to 6 exrema (min/max in each
229 // we revert to matrix interpolation for which inflated bounds cannot be
276 // Zeros in the components of the axis osf rotation turned out to be tricky to
278 // axes to ensure sane behavior.
46 EmpiricallyTestBounds(const TransformOperations& from, const TransformOperations& to, const double& minProgress, const double& maxProgress) argument

Completed in 410 milliseconds

1234567891011>>