Searched defs:shorthand (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSProperty.cpp58 static CSSPropertyID resolveToPhysicalProperty(TextDirection direction, WritingMode writingMode, LogicalBoxSide logicalSide, const StylePropertyShorthand& shorthand) argument
64 return shorthand.properties()[logicalSide];
71 return shorthand.properties()[LeftSide];
73 return shorthand.properties()[RightSide];
75 return shorthand.properties()[BottomSide];
77 return shorthand.properties()[TopSide];
85 return shorthand.properties()[TopSide];
87 return shorthand.properties()[BottomSide];
89 return shorthand.properties()[LeftSide];
91 return shorthand
[all...]
H A DStylePropertySet.cpp148 StylePropertyShorthand shorthand = shorthandForProperty(propertyID); local
149 if (!shorthand.length())
152 bool ret = removePropertiesInSet(shorthand.properties(), shorthand.length());
165 // FIXME: Return an equivalent shorthand when possible.
204 StylePropertyShorthand shorthand = shorthandForProperty(propertyID);
205 if (!shorthand.length())
208 for (unsigned i = 0; i < shorthand.length(); ++i) {
209 if (!propertyIsImportant(shorthand.properties()[i]))
245 StylePropertyShorthand shorthand local
[all...]
H A DCSSParser-in.cpp1336 // This property doesn't belong to a shorthand or is a CSS variable (which will be resolved later).
1588 const StylePropertyShorthand& shorthand = shorthandForProperty(propId); local
1589 unsigned shorthandLength = shorthand.length();
1597 const CSSPropertyID* longhands = shorthand.properties();
1714 // set using the shorthand, then for now overflow-x will default to auto, but once we implement
2542 /* shorthand properties */
2968 // invalid shorthand and we have to ignore it
3070 // The list of properties in the shorthand should be the same
3111 // invalid shorthand and we have to ignore it
3130 const StylePropertyShorthand& shorthand local
3270 parseShorthand(CSSPropertyID propId, const StylePropertyShorthand& shorthand, bool important) argument
4642 const StylePropertyShorthand& shorthand = shorthandForProperty(shorthandId); local
4674 const StylePropertyShorthand& shorthand = gridAreaShorthand(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/
H A DCSSPropertyAnimation.cpp765 ShorthandPropertyWrapper(CSSPropertyID property, const StylePropertyShorthand& shorthand) argument
768 for (unsigned i = 0; i < shorthand.length(); ++i) {
769 AnimationPropertyWrapperBase* wrapper = wrapperForProperty(shorthand.properties()[i]);
914 StylePropertyShorthand shorthand = shorthandForProperty(propertyID); local
915 if (shorthand.length() > 0)
916 addPropertyWrapper(propertyID, new ShorthandPropertyWrapper(propertyID, shorthand));
1087 // First we put the non-shorthand property wrappers into the map, so the shorthand-building
1097 // Now add the shorthand wrappers.
/external/kernel-headers/original/asm-x86/
H A Dapicdef_32.h259 shorthand : 2, member in struct:local_apic::__anon20125
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorCSSAgent.cpp1238 const StylePropertyShorthand& shorthand = shorthandForProperty(id); local
1239 if (!shorthand.length()) {
1244 for (unsigned j = 0; j < shorthand.length(); ++j) {
1245 CSSPropertyID longhandID = shorthand.properties()[j];

Completed in 408 milliseconds