OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:diagonalLengthSquared
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatSize.cpp
50
return sqrtf(
diagonalLengthSquared
());
FloatSize.h
98
float
diagonalLengthSquared
() const
IntPoint.h
159
return ((*this) - point).
diagonalLengthSquared
();
IntSize.h
107
int
diagonalLengthSquared
() const
IntRect.h
151
int distanceSquaredToPoint(const IntPoint& p) const { return differenceToPoint(p).
diagonalLengthSquared
(); }
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLengthContext.cpp
175
return value / sqrtf(viewportSize.
diagonalLengthSquared
() / 2) * 100;
196
return value * sqrtf(viewportSize.
diagonalLengthSquared
() / 2);
/external/chromium_org/third_party/WebKit/Source/core/page/
TouchAdjustment.cpp
348
float radiusSquared = 0.25f * (touchRect.size().
diagonalLengthSquared
());
Completed in 217 milliseconds