Home
last modified time | relevance | path

Searched refs:shorthand (Results 1 – 25 of 26) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSProperty.cpp58 …tion, WritingMode writingMode, LogicalBoxSide logicalSide, const StylePropertyShorthand& shorthand) in resolveToPhysicalProperty() argument
64 return shorthand.properties()[logicalSide]; in resolveToPhysicalProperty()
71 return shorthand.properties()[LeftSide]; in resolveToPhysicalProperty()
73 return shorthand.properties()[RightSide]; in resolveToPhysicalProperty()
75 return shorthand.properties()[BottomSide]; in resolveToPhysicalProperty()
77 return shorthand.properties()[TopSide]; in resolveToPhysicalProperty()
85 return shorthand.properties()[TopSide]; in resolveToPhysicalProperty()
87 return shorthand.properties()[BottomSide]; in resolveToPhysicalProperty()
89 return shorthand.properties()[LeftSide]; in resolveToPhysicalProperty()
91 return shorthand.properties()[RightSide]; in resolveToPhysicalProperty()
[all …]
DStylePropertySerializer.cpp334 String StylePropertySerializer::borderSpacingValue(const StylePropertyShorthand& shorthand) const in borderSpacingValue()
336 …RefPtrWillBeRawPtr<CSSValue> horizontalValue = m_propertySet.getPropertyCSSValue(shorthand.propert… in borderSpacingValue()
337 …RefPtrWillBeRawPtr<CSSValue> verticalValue = m_propertySet.getPropertyCSSValue(shorthand.propertie… in borderSpacingValue()
416 String StylePropertySerializer::get4Values(const StylePropertyShorthand& shorthand) const in get4Values()
419 int topValueIndex = m_propertySet.findPropertyIndex(shorthand.properties()[0]); in get4Values()
420 int rightValueIndex = m_propertySet.findPropertyIndex(shorthand.properties()[1]); in get4Values()
421 int bottomValueIndex = m_propertySet.findPropertyIndex(shorthand.properties()[2]); in get4Values()
422 int leftValueIndex = m_propertySet.findPropertyIndex(shorthand.properties()[3]); in get4Values()
470 String StylePropertySerializer::getLayeredShorthandValue(const StylePropertyShorthand& shorthand) c… in getLayeredShorthandValue()
474 const unsigned size = shorthand.length(); in getLayeredShorthandValue()
[all …]
DStylePropertySet.cpp176 StylePropertyShorthand shorthand = shorthandForProperty(propertyID); in removeShorthandProperty() local
177 if (!shorthand.length()) in removeShorthandProperty()
180 bool ret = removePropertiesInSet(shorthand.properties(), shorthand.length()); in removeShorthandProperty()
232 StylePropertyShorthand shorthand = shorthandForProperty(propertyID); in propertyIsImportant() local
233 if (!shorthand.length()) in propertyIsImportant()
236 for (unsigned i = 0; i < shorthand.length(); ++i) { in propertyIsImportant()
237 if (!propertyIsImportant(shorthand.properties()[i])) in propertyIsImportant()
273 StylePropertyShorthand shorthand = shorthandForProperty(propertyID); in setProperty() local
274 if (!shorthand.length()) { in setProperty()
279 removePropertiesInSet(shorthand.properties(), shorthand.length()); in setProperty()
[all …]
DCSSShorthands.in2 // the appropriate code to handle them in core. First column is the shorthand name
3 // followed by the longhands associated to the shorthand.
DCSSComputedStyleDeclaration.cpp2927 …ComputedStyleDeclaration::valuesForShorthandProperty(const StylePropertyShorthand& shorthand) const in valuesForShorthandProperty()
2930 for (size_t i = 0; i < shorthand.length(); ++i) { in valuesForShorthandProperty()
2931 …RefPtrWillBeRawPtr<CSSValue> value = getPropertyCSSValue(shorthand.properties()[i], DoNotUpdateLay… in valuesForShorthandProperty()
2937 …CSSComputedStyleDeclaration::valuesForSidesShorthand(const StylePropertyShorthand& shorthand) const in valuesForSidesShorthand()
2941 …RefPtrWillBeRawPtr<CSSValue> topValue = getPropertyCSSValue(shorthand.properties()[0], DoNotUpdate… in valuesForSidesShorthand()
2942 …RefPtrWillBeRawPtr<CSSValue> rightValue = getPropertyCSSValue(shorthand.properties()[1], DoNotUpda… in valuesForSidesShorthand()
2943 …RefPtrWillBeRawPtr<CSSValue> bottomValue = getPropertyCSSValue(shorthand.properties()[2], DoNotUpd… in valuesForSidesShorthand()
2944 …RefPtrWillBeRawPtr<CSSValue> leftValue = getPropertyCSSValue(shorthand.properties()[3], DoNotUpdat… in valuesForSidesShorthand()
2965 … CSSComputedStyleDeclaration::valuesForGridShorthand(const StylePropertyShorthand& shorthand) const in valuesForGridShorthand()
2968 for (size_t i = 0; i < shorthand.length(); ++i) { in valuesForGridShorthand()
[all …]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
Dgenerate_supported_css.py67 shorthand = line[:line.index(" ")]
69 cssProperties[shorthand] = longhands
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
DStylePropertyShorthand.cpp.tmpl44 // Returns an empty list if the property is not a shorthand
71 {% for shorthand in shorthands %}
72 result->uncheckedAppend({{shorthand.camel_case_name}}Shorthand());
DStylePropertyShorthand.h.tmpl74 // Returns an empty list if the property is not a shorthand, otherwise the list of longhands for pa…
77 // Returns an empty list if the property is not a shorthand.
/external/antlr/antlr-3.4/runtime/Perl5/
DREADME16 error(146): Expr.g:10:10: invalid StringTemplate % shorthand syntax: '%memory'
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DCSSMetadata.js998 longhands: function(shorthand) argument
1000 return this._longhands[shorthand];
/external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/
DT.g32 // From within rule body, you can use $decls shorthand
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
DCSSPropertyParser.cpp401 const StylePropertyShorthand& shorthand = shorthandForProperty(propId); in addExpandedPropertyForValue() local
402 unsigned shorthandLength = shorthand.length(); in addExpandedPropertyForValue()
410 const CSSPropertyID* longhands = shorthand.properties(); in addExpandedPropertyForValue()
1911 const StylePropertyShorthand& shorthand = parsingShorthandForProperty(propId); in parseTransitionShorthand() local
1912 ASSERT(numProperties == shorthand.length()); in parseTransitionShorthand()
1939 … if (RefPtrWillBeRawPtr<CSSValue> val = parseAnimationProperty(shorthand.properties()[i])) { in parseTransitionShorthand()
1952 …ASSERT(shorthand.properties()[3] == CSSPropertyTransitionProperty || shorthand.properties()[3] == … in parseTransitionShorthand()
1960 addPropertyWithPrefixingVariant(shorthand.properties()[i], values[i].release(), important); in parseTransitionShorthand()
2046 …rser::parseShorthand(CSSPropertyID propId, const StylePropertyShorthand& shorthand, bool important) in parseShorthand() argument
2059 for (unsigned propIndex = 0; !found && propIndex < shorthand.length(); ++propIndex) { in parseShorthand()
[all …]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
DStylesSidebarPane.js1379 var shorthand = shorthands[j];
1380 if (shorthand in generatedShorthands) {
1384 if (style.getLiveProperty(shorthand)) {
1388 if (!style.shorthandValue(shorthand)) {
1394 …nspector.CSSProperty(style, style.allProperties.length, shorthand, style.shorthandValue(shorthand)…
1398 generatedShorthands[shorthand] = shorthandProperty;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorStyleSheet.cpp710 String shorthand = m_style->getPropertyShorthand(name); in styleWithProperties() local
711 if (!shorthand.isEmpty()) { in styleWithProperties()
712 if (foundShorthands.add(shorthand).isNewEntry) { in styleWithProperties()
714 .setName(shorthand) in styleWithProperties()
715 .setValue(shorthandValue(shorthand)); in styleWithProperties()
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/languages/
Den.stg191 "invalid StringTemplate % shorthand syntax: '<arg>'"
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DelementsPanel.css336 …margin-left: -22px; /* outdent the first line of longhand properties (in an expanded shorthand) to…
/external/icu/icu4c/source/data/lang/
Den.txt581 Dupl{"Duployan shorthand"}
/external/chromium_org/third_party/yasm/source/patched-yasm/m4/
Dax_create_stdint_h.m4424 dnl /* (the shorthand "ILP" types always have a "P" part) */
/external/libmtp/m4/
Dstdint.m4481 dnl /* (the shorthand "ILP" types always have a "P" part) */
/external/libexif/m4m/
Dstdint.m4483 dnl /* (the shorthand "ILP" types always have a "P" part) */
/external/chromium_org/third_party/sqlite/src/test/
Dmalloc3.test177 # A shorthand test to see if a transaction is active or not. The first
/external/llvm/docs/TableGen/
DLangIntro.rst175 "#" (paste) is a shorthand for !strconcat. It may concatenate things that
/external/icu/icu4c/source/test/testdata/
Drbbitst.txt676 # The Thai maiyamok character is a shorthand symbol that means "repeat the previous
/external/qemu/
Dqemu-options.hx1290 "-s shorthand for -gdb tcp::%s\n")
/external/antlr/antlr-3.4/runtime/C/
DREADME180 reference. There is a nice shorthand in actions too:

12