/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSProperty.cpp | 58 …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 …]
|
D | StylePropertySerializer.cpp | 334 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 …]
|
D | StylePropertySet.cpp | 176 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 …]
|
D | CSSShorthands.in | 2 // the appropriate code to handle them in core. First column is the shorthand name 3 // followed by the longhands associated to the shorthand.
|
D | CSSComputedStyleDeclaration.cpp | 2927 …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/ |
D | generate_supported_css.py | 67 shorthand = line[:line.index(" ")] 69 cssProperties[shorthand] = longhands
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/ |
D | StylePropertyShorthand.cpp.tmpl | 44 // Returns an empty list if the property is not a shorthand 71 {% for shorthand in shorthands %} 72 result->uncheckedAppend({{shorthand.camel_case_name}}Shorthand());
|
D | StylePropertyShorthand.h.tmpl | 74 // 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/ |
D | README | 16 error(146): Expr.g:10:10: invalid StringTemplate % shorthand syntax: '%memory'
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
D | CSSMetadata.js | 998 longhands: function(shorthand) argument 1000 return this._longhands[shorthand];
|
/external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/ |
D | T.g | 32 // From within rule body, you can use $decls shorthand
|
/external/chromium_org/third_party/WebKit/Source/core/css/parser/ |
D | CSSPropertyParser.cpp | 401 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/ |
D | StylesSidebarPane.js | 1379 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/ |
D | InspectorStyleSheet.cpp | 710 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/ |
D | en.stg | 191 "invalid StringTemplate % shorthand syntax: '<arg>'"
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | elementsPanel.css | 336 …margin-left: -22px; /* outdent the first line of longhand properties (in an expanded shorthand) to…
|
/external/icu/icu4c/source/data/lang/ |
D | en.txt | 581 Dupl{"Duployan shorthand"}
|
/external/chromium_org/third_party/yasm/source/patched-yasm/m4/ |
D | ax_create_stdint_h.m4 | 424 dnl /* (the shorthand "ILP" types always have a "P" part) */
|
/external/libmtp/m4/ |
D | stdint.m4 | 481 dnl /* (the shorthand "ILP" types always have a "P" part) */
|
/external/libexif/m4m/ |
D | stdint.m4 | 483 dnl /* (the shorthand "ILP" types always have a "P" part) */
|
/external/chromium_org/third_party/sqlite/src/test/ |
D | malloc3.test | 177 # A shorthand test to see if a transaction is active or not. The first
|
/external/llvm/docs/TableGen/ |
D | LangIntro.rst | 175 "#" (paste) is a shorthand for !strconcat. It may concatenate things that
|
/external/icu/icu4c/source/test/testdata/ |
D | rbbitst.txt | 676 # The Thai maiyamok character is a shorthand symbol that means "repeat the previous
|
/external/qemu/ |
D | qemu-options.hx | 1290 "-s shorthand for -gdb tcp::%s\n")
|
/external/antlr/antlr-3.4/runtime/C/ |
D | README | 180 reference. There is a nice shorthand in actions too:
|