| /external/chromium_org/third_party/WebKit/Source/core/css/ | 
| MediaValuesDynamic.cpp | 32 bool MediaValuesDynamic::computeLength(double value, CSSPrimitiveValue::UnitType type, int& result) const 34     return MediaValues::computeLength(value,
 42 bool MediaValuesDynamic::computeLength(double value, CSSPrimitiveValue::UnitType type, double& result) const
 44     return MediaValues::computeLength(value,
 
 | 
| MediaValuesDynamic.h | 19     virtual bool computeLength(double value, CSSPrimitiveValue::UnitType, int& result) const OVERRIDE; 20     virtual bool computeLength(double value, CSSPrimitiveValue::UnitType, double& result) const OVERRIDE;
 
 | 
| MediaValues.h | 41     static bool computeLength(double value, CSSPrimitiveValue::UnitType type, unsigned defaultFontSize, unsigned viewportWidth, unsigned viewportHeight, T& result) 49     virtual bool computeLength(double value, CSSPrimitiveValue::UnitType, int& result) const = 0;
 50     virtual bool computeLength(double value, CSSPrimitiveValue::UnitType, double& result) const = 0;
 
 | 
| MediaValuesCached.h | 56     virtual bool computeLength(double value, CSSPrimitiveValue::UnitType, int& result) const OVERRIDE; 57     virtual bool computeLength(double value, CSSPrimitiveValue::UnitType, double& result) const OVERRIDE;
 
 | 
| MediaValuesCached.cpp | 79 bool MediaValuesCached::computeLength(double value, CSSPrimitiveValue::UnitType type, int& result) const 81     return MediaValues::computeLength(value, type, m_data.defaultFontSize, m_data.viewportWidth, m_data.viewportHeight, result);
 84 bool MediaValuesCached::computeLength(double value, CSSPrimitiveValue::UnitType type, double& result) const
 86     return MediaValues::computeLength(value, type, m_data.defaultFontSize, m_data.viewportWidth, m_data.viewportHeight, result);
 
 | 
| MediaValuesTest.cpp | 49         bool success = MediaValues::computeLength(testCases[i].value, 
 | 
| MediaQueryEvaluator.cpp | 331 static bool computeLength(const MediaQueryExpValue& value, const MediaValues& mediaValues, int& result) 342         return mediaValues.computeLength(value.value, value.unit, result);
 350         return computeLength(value, mediaValues, length) && compareValue(static_cast<int>(mediaValues.deviceHeight()), length, op);
 361         return computeLength(value, mediaValues, length) && compareValue(static_cast<int>(mediaValues.deviceWidth()), length, op);
 373         return computeLength(value, mediaValues, length) && compareValue(height, length, op);
 384         return computeLength(value, mediaValues, length) && compareValue(width, length, op);
 
 | 
| CSSPrimitiveValue.cpp | 554 template<> int CSSPrimitiveValue::computeLength(const CSSToLengthConversionData& conversionData) 559 template<> unsigned CSSPrimitiveValue::computeLength(const CSSToLengthConversionData& conversionData)
 564 template<> Length CSSPrimitiveValue::computeLength(const CSSToLengthConversionData& conversionData)
 569 template<> short CSSPrimitiveValue::computeLength(const CSSToLengthConversionData& conversionData)
 574 template<> unsigned short CSSPrimitiveValue::computeLength(const CSSToLengthConversionData& conversionData)
 579 template<> float CSSPrimitiveValue::computeLength(const CSSToLengthConversionData& conversionData)
 584 template<> double CSSPrimitiveValue::computeLength(const CSSToLengthConversionData& conversionData)
 591     // The logic in this function is duplicated in MediaValues::computeLength
 592     // because MediaValues::computeLength needs nearly identical logic, but we haven't found a way to make
 [all...]
 | 
| CSSGradientValue.cpp | 190                     length = stop.m_position->computeLength<float>(conversionData); 419     return value->computeLength<float>(conversionData);
 [all...]
 | 
| CSSPrimitiveValue.h | 301     template<typename T> T computeLength(const CSSToLengthConversionData&); 
 | 
| CSSCalculationValue.cpp | 211             value.pixels += m_value->computeLength<float>(conversionData) * multiplier; 234             return m_value->computeLength<double>(conversionData);
 
 | 
| /external/chromium_org/third_party/WebKit/Source/core/css/resolver/ | 
| StyleBuilderConverter.h | 77     return toCSSPrimitiveValue(value)->computeLength<T>(state.cssToLengthConversionData()); 94         T result = primitiveValue->computeLength<T>(state.cssToLengthConversionData());
 96             T originalLength = primitiveValue->computeLength<T>(state.cssToLengthConversionData().copyWithAdjustedZoom(1.0));
 
 | 
| FilterOperationResolver.cpp | 193             IntPoint location(item->x->computeLength<int>(conversionData), item->y->computeLength<int>(conversionData)); 194             int blur = item->blur ? item->blur->computeLength<int>(conversionData) : 0;
 
 | 
| StyleBuilderConverter.cpp | 387         float x = item->x->computeLength<float>(state.cssToLengthConversionData()); 388         float y = item->y->computeLength<float>(state.cssToLengthConversionData());
 389         float blur = item->blur ? item->blur->computeLength<float>(state.cssToLengthConversionData()) : 0;
 390         float spread = item->spread ? item->spread->computeLength<float>(state.cssToLengthConversionData()) : 0;
 407     return primitiveValue->computeLength<float>(state.cssToLengthConversionData());
 451         return CSSPrimitiveValue::create(multiplier / 48, CSSPrimitiveValue::CSS_EMS)->computeLength<float>(state.cssToLengthConversionData());
 453     return primitiveValue->computeLength<float>(state.cssToLengthConversionData());
 
 | 
| TransformBuilder.cpp | 186                 tz = firstValue->computeLength<double>(conversionData); 194                         tz = thirdValue->computeLength<double>(conversionData);
 298                 p = firstValue->computeLength<double>(conversionData);
 
 | 
| StyleBuilderCustom.cpp | 388         lineHeight = primitiveValue->computeLength<Length>(state.cssToLengthConversionData().copyWithAdjustedZoom(multiplier)); 539             width = first->computeLength<Length>(state.cssToLengthConversionData().copyWithAdjustedZoom(1.0));
 540             height = second->computeLength<Length>(state.cssToLengthConversionData().copyWithAdjustedZoom(1.0));
 558             width = height = primitiveValue->computeLength<Length>(state.cssToLengthConversionData().copyWithAdjustedZoom(1.0));
 [all...]
 | 
| CSSToStyleMap.cpp | 538         return value.computeLength<Length>(conversionData); 
 | 
| FontBuilder.cpp | 332                 size = primitiveValue->computeLength<float>(conversionData); 
 | 
| /cts/tests/tests/renderscript/src/android/renderscript/cts/ | 
| TestLength.java | 71             CoreMathVerifier.computeLength(args, target); 137             CoreMathVerifier.computeLength(args, target);
 200             CoreMathVerifier.computeLength(args, target);
 263             CoreMathVerifier.computeLength(args, target);
 
 | 
| CoreMathVerifier.java | [all...] | 
| /external/chromium_org/third_party/WebKit/Source/core/css/parser/ | 
| SizesAttributeParser.cpp | 35         if ((m_mediaValues->computeLength(startToken->numericValue(), startToken->unitType(), length)) && (length > 0)) { 
 | 
| SizesCalcParser.cpp | 68     if (!m_mediaValues->computeLength(token.numericValue(), token.unitType(), result)) 
 | 
| /prebuilts/tools/common/eclipse/ | 
| org.eclipse.equinox.common_3.4.0.v20080421-2006.jar |  | 
| /external/chromium_org/third_party/WebKit/Source/core/inspector/ | 
| InspectorCSSAgent.cpp | [all...] | 
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ | 
| org.eclipse.equinox.common_3.6.0.v20100503.jar |  |