OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:conversionData
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
CSSToStyleMap.cpp
598
static BorderImageLength toBorderImageLength(CSSPrimitiveValue& value, const CSSToLengthConversionData&
conversionData
)
605
return value.computeLength<Length>(
conversionData
);
618
const CSSToLengthConversionData&
conversionData
= cssToLengthConversionData().copyWithAdjustedZoom(zoom);
620
toBorderImageLength(*slices->top(),
conversionData
),
621
toBorderImageLength(*slices->right(),
conversionData
),
622
toBorderImageLength(*slices->bottom(),
conversionData
),
623
toBorderImageLength(*slices->left(),
conversionData
));
FilterOperationResolver.cpp
366
const CSSToLengthConversionData&
conversionData
= unadjustedConversionData.copyWithAdjustedZoom(zoomFactor);
465
stdDeviation = firstValue->convertToLength<FixedConversion | PercentConversion>(
conversionData
);
481
IntPoint location(item->x->computeLength<int>(
conversionData
), item->y->computeLength<int>(
conversionData
));
482
int blur = item->blur ? item->blur->computeLength<int>(
conversionData
) : 0;
Completed in 26 milliseconds