Home
last modified time | relevance | path

Searched refs:compareCSSValuePtr (Results 1 – 16 of 16) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSBasicShapes.cpp82 return compareCSSValuePtr(m_x, other.m_x) in equals()
83 && compareCSSValuePtr(m_y, other.m_y) in equals()
84 && compareCSSValuePtr(m_width, other.m_width) in equals()
85 && compareCSSValuePtr(m_height, other.m_height) in equals()
86 && compareCSSValuePtr(m_radiusX, other.m_radiusX) in equals()
87 && compareCSSValuePtr(m_radiusY, other.m_radiusY); in equals()
126 return compareCSSValuePtr(m_centerX, other.m_centerX) in equals()
127 && compareCSSValuePtr(m_centerY, other.m_centerY) in equals()
128 && compareCSSValuePtr(m_radius, other.m_radius); in equals()
161 return compareCSSValuePtr(m_centerX, other.m_centerX) in equals()
[all …]
DCSSFontValue.cpp69 return compareCSSValuePtr(style, other.style) in equals()
70 && compareCSSValuePtr(variant, other.variant) in equals()
71 && compareCSSValuePtr(weight, other.weight) in equals()
72 && compareCSSValuePtr(size, other.size) in equals()
73 && compareCSSValuePtr(lineHeight, other.lineHeight) in equals()
74 && compareCSSValuePtr(family, other.family); in equals()
DCSSShadowValue.cpp83 return compareCSSValuePtr(color, other.color) in equals()
84 && compareCSSValuePtr(x, other.x) in equals()
85 && compareCSSValuePtr(y, other.y) in equals()
86 && compareCSSValuePtr(blur, other.blur) in equals()
87 && compareCSSValuePtr(spread, other.spread) in equals()
88 && compareCSSValuePtr(style, other.style); in equals()
DCSSGradientValue.cpp708 && compareCSSValuePtr(m_firstX, other.m_firstX) in equals()
709 && compareCSSValuePtr(m_firstY, other.m_firstY) in equals()
710 && compareCSSValuePtr(m_secondX, other.m_secondX) in equals()
711 && compareCSSValuePtr(m_secondY, other.m_secondY) in equals()
718 return compareCSSValuePtr(m_angle, other.m_angle) && m_stops == other.m_stops; in equals()
725 …equalXandY = compareCSSValuePtr(m_firstX, other.m_firstX) && compareCSSValuePtr(m_firstY, other.m_… in equals()
727 equalXandY = compareCSSValuePtr(m_firstX, other.m_firstX) && !other.m_firstY; in equals()
729 equalXandY = compareCSSValuePtr(m_firstY, other.m_firstY) && !other.m_firstX; in equals()
1122 && compareCSSValuePtr(m_firstX, other.m_firstX) in equals()
1123 && compareCSSValuePtr(m_firstY, other.m_firstY) in equals()
[all …]
DRect.h44 return compareCSSValuePtr(m_top, other.m_top) in equals()
45 && compareCSSValuePtr(m_right, other.m_right) in equals()
46 && compareCSSValuePtr(m_left, other.m_left) in equals()
47 && compareCSSValuePtr(m_bottom, other.m_bottom); in equals()
DCSSReflectValue.cpp58 && compareCSSValuePtr(m_offset, other.m_offset) in equals()
59 && compareCSSValuePtr(m_mask, other.m_mask); in equals()
DCSSCrossfadeValue.cpp216 return compareCSSValuePtr(m_fromValue, other.m_fromValue) in equals()
217 && compareCSSValuePtr(m_toValue, other.m_toValue) in equals()
218 && compareCSSValuePtr(m_percentageValue, other.m_percentageValue); in equals()
DPair.h63 return compareCSSValuePtr(m_first, other.m_first) in equals()
64 && compareCSSValuePtr(m_second, other.m_second) in equals()
DCSSBorderImageSliceValue.cpp53 return m_fill == other.m_fill && compareCSSValuePtr(m_slices, other.m_slices); in equals()
DCSSFunctionValue.cpp62 return m_name == other.m_name && compareCSSValuePtr(m_args, other.m_args); in equals()
DCSSGradientValue.h58 return compareCSSValuePtr(m_color, other.m_color)
59 && compareCSSValuePtr(m_position, other.m_position);
DCSSCalculationValue.cpp158 return compareCSSValuePtr(m_expression, other.m_expression); in equals()
282 … return compareCSSValuePtr(m_value, static_cast<const CSSCalcPrimitiveValue&>(other).m_value); in equals()
481 return compareCSSValuePtr(m_leftSide, other.m_leftSide) in equals()
482 && compareCSSValuePtr(m_rightSide, other.m_rightSide) in equals()
DCSSCursorImageValue.cpp195 && compareCSSValuePtr(m_imageValue, other.m_imageValue); in equals()
DCSSValue.h244 inline bool compareCSSValuePtr(const RefPtr<CSSValueType>& first, const RefPtr<CSSValueType>& secon… in compareCSSValuePtr() function
DCSSComputedStyleDeclaration.cpp2806 … if (!compareCSSValuePtr<CSSValue>(value, getPropertyCSSValue(properties[i], DoNotUpdateLayout))) in getPropertyCSSValue()
3064 bool showLeft = !compareCSSValuePtr(rightValue, leftValue); in valuesForSidesShorthand()
3065 bool showBottom = !compareCSSValuePtr(topValue, bottomValue) || showLeft; in valuesForSidesShorthand()
3066 bool showRight = !compareCSSValuePtr(topValue, rightValue) || showBottom; in valuesForSidesShorthand()
/external/chromium_org/third_party/WebKit/Source/core/editing/
DEditingStyle.cpp281 return compareCSSValuePtr(value, styleValue); in valueIsPresentInStyle()