/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 | 400 String StylePropertySerializer::borderSpacingValue(const StylePropertyShorthand& shorthand) const in borderSpacingValue() 402 RefPtr<CSSValue> horizontalValue = m_propertySet.getPropertyCSSValue(shorthand.properties()[0]); in borderSpacingValue() 403 RefPtr<CSSValue> verticalValue = m_propertySet.getPropertyCSSValue(shorthand.properties()[1]); in borderSpacingValue() 482 String StylePropertySerializer::get4Values(const StylePropertyShorthand& shorthand) const in get4Values() 485 int topValueIndex = m_propertySet.findPropertyIndex(shorthand.properties()[0]); in get4Values() 486 int rightValueIndex = m_propertySet.findPropertyIndex(shorthand.properties()[1]); in get4Values() 487 int bottomValueIndex = m_propertySet.findPropertyIndex(shorthand.properties()[2]); in get4Values() 488 int leftValueIndex = m_propertySet.findPropertyIndex(shorthand.properties()[3]); in get4Values() 536 String StylePropertySerializer::getLayeredShorthandValue(const StylePropertyShorthand& shorthand) c… in getLayeredShorthandValue() 540 const unsigned size = shorthand.length(); in getLayeredShorthandValue() [all …]
|
D | StylePropertySet.cpp | 148 StylePropertyShorthand shorthand = shorthandForProperty(propertyID); in removeShorthandProperty() local 149 if (!shorthand.length()) in removeShorthandProperty() 152 bool ret = removePropertiesInSet(shorthand.properties(), shorthand.length()); in removeShorthandProperty() 204 StylePropertyShorthand shorthand = shorthandForProperty(propertyID); in propertyIsImportant() local 205 if (!shorthand.length()) in propertyIsImportant() 208 for (unsigned i = 0; i < shorthand.length(); ++i) { in propertyIsImportant() 209 if (!propertyIsImportant(shorthand.properties()[i])) in propertyIsImportant() 245 StylePropertyShorthand shorthand = shorthandForProperty(propertyID); in setProperty() local 246 if (!shorthand.length()) { in setProperty() 251 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 | 3041 …ComputedStyleDeclaration::valuesForShorthandProperty(const StylePropertyShorthand& shorthand) const in valuesForShorthandProperty() 3044 for (size_t i = 0; i < shorthand.length(); ++i) { in valuesForShorthandProperty() 3045 RefPtr<CSSValue> value = getPropertyCSSValue(shorthand.properties()[i], DoNotUpdateLayout); in valuesForShorthandProperty() 3051 …CSSComputedStyleDeclaration::valuesForSidesShorthand(const StylePropertyShorthand& shorthand) const in valuesForSidesShorthand() 3055 RefPtr<CSSValue> topValue = getPropertyCSSValue(shorthand.properties()[0], DoNotUpdateLayout); in valuesForSidesShorthand() 3056 RefPtr<CSSValue> rightValue = getPropertyCSSValue(shorthand.properties()[1], DoNotUpdateLayout); in valuesForSidesShorthand() 3057 … RefPtr<CSSValue> bottomValue = getPropertyCSSValue(shorthand.properties()[2], DoNotUpdateLayout); in valuesForSidesShorthand() 3058 RefPtr<CSSValue> leftValue = getPropertyCSSValue(shorthand.properties()[3], DoNotUpdateLayout); in valuesForSidesShorthand() 3079 … CSSComputedStyleDeclaration::valuesForGridShorthand(const StylePropertyShorthand& shorthand) const in valuesForGridShorthand() 3082 for (size_t i = 0; i < shorthand.length(); ++i) { in valuesForGridShorthand() [all …]
|
D | CSSParser-in.cpp | 1588 const StylePropertyShorthand& shorthand = shorthandForProperty(propId); in addExpandedPropertyForValue() local 1589 unsigned shorthandLength = shorthand.length(); in addExpandedPropertyForValue() 1597 const CSSPropertyID* longhands = shorthand.properties(); in addExpandedPropertyForValue() 3130 const StylePropertyShorthand& shorthand = shorthandForProperty(propId); in parseTransitionShorthand() local 3131 ASSERT(numProperties == shorthand.length()); in parseTransitionShorthand() 3159 if (parseAnimationProperty(shorthand.properties()[i], val, context)) { in parseTransitionShorthand() 3184 addPropertyWithPrefixingVariant(shorthand.properties()[i], values[i].release(), important); in parseTransitionShorthand() 3270 bool CSSParser::parseShorthand(CSSPropertyID propId, const StylePropertyShorthand& shorthand, bool … in parseShorthand() argument 3283 for (unsigned propIndex = 0; !found && propIndex < shorthand.length(); ++propIndex) { in parseShorthand() 3284 … if (!propertyFound[propIndex] && parseValue(shorthand.properties()[propIndex], important)) { in parseShorthand() [all …]
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/ |
D | StylePropertyShorthand.cpp.tmpl | 45 // Returns an empty list if the property is not a shorthand 73 {% for shorthand in shorthands -%} 74 result->uncheckedAppend({{ shorthand.camel_case_name }}Shorthand()); 78 {% for shorthand in shorthands -%} 79 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/ |
D | CSSMetadata.js | 966 longhands: function(shorthand) argument 968 return this._longhands[shorthand];
|
D | StylesSidebarPane.js | 1253 var shorthand = shorthands[j]; 1254 if (shorthand in generatedShorthands) { 1258 if (style.getLiveProperty(shorthand)) { 1262 if (!style.shorthandValue(shorthand)) { 1268 …nspector.CSSProperty(style, style.allProperties.length, shorthand, style.shorthandValue(shorthand)… 1272 generatedShorthands[shorthand] = shorthandProperty;
|
D | elementsPanel.css | 324 …margin-left: -22px; /* outdent the first line of longhand properties (in an expanded shorthand) to…
|
/external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/ |
D | T.g | 32 // From within rule body, you can use $decls shorthand
|
/external/libvpx/libvpx/examples/includes/PHP-SmartyPants-1.5.1e/ |
D | PHP SmartyPants Readme.txt | 172 typewriter shorthand for dashes: `--` (dash dash) for en-dashes, 176 Same as smarty_pants="2", but inverts the shorthand for dashes: `--` 212 shorthand: (dash dash) for en-dashes, (dash dash dash) for 217 typewriter shorthand: (dash dash) for em-dashes, (dash dash dash)
|
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/ |
D | CSSPropertyAnimation.cpp | 765 ShorthandPropertyWrapper(CSSPropertyID property, const StylePropertyShorthand& shorthand) in ShorthandPropertyWrapper() argument 768 for (unsigned i = 0; i < shorthand.length(); ++i) { in ShorthandPropertyWrapper() 769 AnimationPropertyWrapperBase* wrapper = wrapperForProperty(shorthand.properties()[i]); in ShorthandPropertyWrapper() 914 StylePropertyShorthand shorthand = shorthandForProperty(propertyID); in addShorthandProperties() local 915 if (shorthand.length() > 0) in addShorthandProperties() 916 addPropertyWrapper(propertyID, new ShorthandPropertyWrapper(propertyID, shorthand)); in addShorthandProperties()
|
/external/kernel-headers/original/asm-x86/ |
D | apicdef_32.h | 259 shorthand : 2, member
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorStyleSheet.cpp | 776 String shorthand = m_style->getPropertyShorthand(name); in styleWithProperties() local 777 if (!shorthand.isEmpty()) { in styleWithProperties() 778 if (foundShorthands.add(shorthand).isNewEntry) { in styleWithProperties() 780 .setName(shorthand) in styleWithProperties() 781 .setValue(shorthandValue(shorthand)); in styleWithProperties()
|
D | InspectorCSSAgent.cpp | 1238 const StylePropertyShorthand& shorthand = shorthandForProperty(id); in getSupportedCSSProperties() local 1239 if (!shorthand.length()) { in getSupportedCSSProperties() 1244 for (unsigned j = 0; j < shorthand.length(); ++j) { in getSupportedCSSProperties() 1245 CSSPropertyID longhandID = shorthand.properties()[j]; in getSupportedCSSProperties()
|
/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/icu4c/data/lang/ |
D | en.txt | 643 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/libexif/m4m/ |
D | stdint.m4 | 483 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/libvpx/libvpx/nestegg/m4/ |
D | ax_create_stdint_h.m4 | 444 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
|