/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | RuleSet.cpp | 191 RuleData::RuleData(StyleRule* rule, unsigned selectorIndex, unsigned position, AddRuleFlags addRule… in RuleData() argument 193 , m_selectorIndex(selectorIndex) in RuleData() 206 ASSERT(m_selectorIndex == selectorIndex); in RuleData() 235 …features.siblingRules.append(RuleFeature(ruleData.rule(), ruleData.selectorIndex(), ruleData.hasDo… in collectFeaturesFromRuleData() 237 …features.uncommonAttributeRules.append(RuleFeature(ruleData.rule(), ruleData.selectorIndex(), rule… in collectFeaturesFromRuleData() 299 void RuleSet::addRule(StyleRule* rule, unsigned selectorIndex, AddRuleFlags addRuleFlags) in addRule() argument 301 RuleData ruleData(rule, selectorIndex, m_ruleCount++, addRuleFlags); in addRule() 368 …for (size_t selectorIndex = 0; selectorIndex != kNotFound; selectorIndex = selectorList.indexOfNex… in addChildRules() local 369 if (selectorList.hasCombinatorCrossingTreeBoundaryAt(selectorIndex)) { in addChildRules() 370 … m_treeBoundaryCrossingRules.append(MinimalRuleData(styleRule, selectorIndex, addRuleFlags)); in addChildRules() [all …]
|
D | RuleFeature.h | 36 RuleFeature(StyleRule* rule, unsigned selectorIndex, bool hasDocumentSecurityOrigin) in RuleFeature() 38 , selectorIndex(selectorIndex) in RuleFeature() 43 unsigned selectorIndex; member
|
D | TreeBoundaryCrossingRules.cpp | 37 void TreeBoundaryCrossingRules::addRule(StyleRule* rule, size_t selectorIndex, ContainerNode* scopi… in addRule() argument 40 … m_treeBoundaryCrossingRuleSetMap.get(scopingNode)->addRule(rule, selectorIndex, addRuleFlags); in addRule() 43 ruleSetForScope->addRule(rule, selectorIndex, addRuleFlags); in addRule()
|
D | StyleInvalidationAnalysis.cpp | 83 …for (size_t selectorIndex = 0; selectorIndex != kNotFound; selectorIndex = selectorList.indexOfNex… in hasDistributedRule() local 84 if (selectorList.hasShadowDistributedAt(selectorIndex)) in hasDistributedRule()
|
D | RuleSet.h | 55 MinimalRuleData(StyleRule* rule, unsigned selectorIndex, AddRuleFlags flags) in MinimalRuleData() 57 , m_selectorIndex(selectorIndex) in MinimalRuleData() 70 RuleData(StyleRule*, unsigned selectorIndex, unsigned position, AddRuleFlags); 75 unsigned selectorIndex() const { return m_selectorIndex; } in selectorIndex() function 127 void addRule(StyleRule*, unsigned selectorIndex, AddRuleFlags);
|
D | TreeBoundaryCrossingRules.h | 40 void addRule(StyleRule*, size_t selectorIndex, ContainerNode* scopingNode, AddRuleFlags);
|
/external/icu4c/common/ |
D | messagepattern.cpp | 796 int32_t selectorIndex=index; in parsePluralOrSelectStyle() local 797 if(UMSGPAT_ARG_TYPE_HAS_PLURAL_STYLE(argType) && msg.charAt(selectorIndex)==u_equal) { in parsePluralOrSelectStyle() 800 int32_t length=index-selectorIndex; in parsePluralOrSelectStyle() 807 setParseError(parseError, selectorIndex); // Argument selector too long. in parsePluralOrSelectStyle() 811 addPart(UMSGPAT_PART_TYPE_ARG_SELECTOR, selectorIndex, length, 0, errorCode); in parsePluralOrSelectStyle() 812 parseDouble(selectorIndex+1, index, FALSE, in parsePluralOrSelectStyle() 816 int32_t length=index-selectorIndex; in parsePluralOrSelectStyle() 824 0==msg.compare(selectorIndex, 7, kOffsetColon, 0, 7) in parsePluralOrSelectStyle() 856 setParseError(parseError, selectorIndex); // Argument selector too long. in parsePluralOrSelectStyle() 860 addPart(UMSGPAT_PART_TYPE_ARG_SELECTOR, selectorIndex, length, 0, errorCode); in parsePluralOrSelectStyle() [all …]
|
/external/icu4c/i18n/ |
D | choicfmt.cpp | 450 int32_t selectorIndex = pattern.getPatternIndex(partIndex++); in findSubMessage() local 451 UChar boundaryChar = pattern.getPatternString().charAt(selectorIndex); in findSubMessage()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | CSSStyleModel.js | 1061 lineNumberInSource: function(selectorIndex) argument 1063 var selector = this.selectors[selectorIndex]; 1074 columnNumberInSource: function(selectorIndex) argument 1076 var selector = this.selectors[selectorIndex];
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | StyleResolver.cpp | 309 …ruleSet->addRule(rules[i].rule, rules[i].selectorIndex, rules[i].hasDocumentSecurityOrigin ? RuleH… in makeRuleSet()
|