/external/icu/icu4c/source/i18n/ |
D | nfrule.cpp | 36 , ruleText() in NFRule() 120 rule1->ruleText = description; in makeRules() 181 rule2->ruleText.setTo(sbuf); in makeRules() 193 rule1->ruleText.setTo(sbuf); in makeRules() 411 return NFSubstitution::makeSubstitution(ruleText.length(), this, predecessor, in extractSubstitution() 417 if (ruleText.indexOf(gGreaterGreaterGreater, 3, 0) == subStart) { in extractSubstitution() 423 UChar c = ruleText.charAt(subStart); in extractSubstitution() 424 subEnd = ruleText.indexOf(c, subStart + 1); in extractSubstitution() 426 …if (c == gLessThan && subEnd != -1 && subEnd < ruleText.length() - 1 && ruleText.charAt(subEnd+1) … in extractSubstitution() 439 return NFSubstitution::makeSubstitution(ruleText.length(), this, predecessor, in extractSubstitution() [all …]
|
D | nfrule.h | 98 UnicodeString ruleText; variable
|
/external/chromium_org/third_party/icu/source/i18n/ |
D | nfrule.cpp | 35 , ruleText() in NFRule() 119 rule1->ruleText = description; in makeRules() 180 rule2->ruleText.setTo(sbuf); in makeRules() 192 rule1->ruleText.setTo(sbuf); in makeRules() 410 return NFSubstitution::makeSubstitution(ruleText.length(), this, predecessor, in extractSubstitution() 416 if (ruleText.indexOf(gGreaterGreaterGreater, 3, 0) == subStart) { in extractSubstitution() 422 UChar c = ruleText.charAt(subStart); in extractSubstitution() 423 subEnd = ruleText.indexOf(c, subStart + 1); in extractSubstitution() 425 …if (c == gLessThan && subEnd != -1 && subEnd < ruleText.length() - 1 && ruleText.charAt(subEnd+1) … in extractSubstitution() 438 return NFSubstitution::makeSubstitution(ruleText.length(), this, predecessor, in extractSubstitution() [all …]
|
D | nfrule.h | 98 UnicodeString ruleText; variable
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorStyleSheet.h | 202 CSSStyleRule* addRule(const String& ruleText, const SourceRange& location, ExceptionState&); 234 …CSSStyleRule* insertCSSOMRuleInStyleSheet(const SourceRange&, const String& ruleText, ExceptionSta… 235 …rtCSSOMRuleInMediaRule(CSSMediaRule*, const SourceRange&, const String& ruleText, ExceptionState&); 236 …CSSStyleRule* insertCSSOMRuleBySourceRange(const SourceRange&, const String& ruleText, ExceptionSt… 237 bool verifyRuleText(const String& ruleText);
|
D | InspectorStyleSheet.cpp | 1056 …sertCSSOMRuleInStyleSheet(const SourceRange& sourceRange, const String& ruleText, ExceptionState& … in insertCSSOMRuleInStyleSheet() argument 1059 m_pageStyleSheet->insertRule(ruleText, index, exceptionState); in insertCSSOMRuleInStyleSheet() 1064 …exceptionState.throwDOMException(SyntaxError, "The rule '" + ruleText + "' could not be added in s… in insertCSSOMRuleInStyleSheet() 1070 …(CSSMediaRule* mediaRule, const SourceRange& sourceRange, const String& ruleText, ExceptionState& … in insertCSSOMRuleInMediaRule() argument 1073 mediaRule->insertRule(ruleText, index, exceptionState); in insertCSSOMRuleInMediaRule() 1078 …exceptionState.throwDOMException(SyntaxError, "The rule '" + ruleText + "' could not be added in m… in insertCSSOMRuleInMediaRule() 1084 …ertCSSOMRuleBySourceRange(const SourceRange& sourceRange, const String& ruleText, ExceptionState& … in insertCSSOMRuleBySourceRange() argument 1102 return insertCSSOMRuleInStyleSheet(sourceRange, ruleText, exceptionState); in insertCSSOMRuleBySourceRange() 1108 …return insertCSSOMRuleInMediaRule(toCSSMediaRule(rule.get()), sourceRange, ruleText, exceptionStat… in insertCSSOMRuleBySourceRange() 1111 bool InspectorStyleSheet::verifyRuleText(const String& ruleText) in verifyRuleText() argument [all …]
|
D | InspectorCSSAgent.h | 139 …virtual void addRule(ErrorString*, const String& styleSheetId, const String& ruleText, const RefPt…
|
D | InspectorCSSAgent.cpp | 327 …AddRuleAction(InspectorStyleSheet* styleSheet, const String& ruleText, const SourceRange& location) in AddRuleAction() argument 330 , m_ruleText(ruleText) in AddRuleAction() 947 …ule(ErrorString* errorString, const String& styleSheetId, const String& ruleText, const RefPtr<JSO… in addRule() argument 957 …ction> action = adoptRefWillBeNoop(new AddRuleAction(inspectorStyleSheet, ruleText, ruleLocation)); in addRule()
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSTestHelper.h | 53 void addCSSRules(const char* ruleText);
|
D | CSSKeyframesRule.cpp | 121 void CSSKeyframesRule::insertRule(const String& ruleText) in insertRule() argument 127 …eyframe = CSSParser::parseKeyframeRule(context, styleSheet ? styleSheet->contents() : 0, ruleText); in insertRule()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
D | CSSStyleModel.js | 369 addRule: function(styleSheetId, node, ruleText, ruleLocation, successCallback, failureCallback) argument 372 this._agent.addRule(styleSheetId, ruleText, ruleLocation, callback.bind(this));
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
D | Grammar.java | 882 public GrammarAST parseArtificialRule(String ruleText) { in parseArtificialRule() argument 883 ANTLRLexer lexer = new ANTLRLexer(new ANTLRStringStream(ruleText)); in parseArtificialRule() 1613 String ruleText = buf.toString(); in defineLexerRuleFoundInParser() local 1617 lexerGrammarST.add("rules", ruleText); in defineLexerRuleFoundInParser()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/ |
D | StylesSidebarPane.js | 2128 var ruleTextLines = ruleText.split("\n"); 2149 var ruleText = this._rulePrefix() + newContent + " {}"; 2150 …cssModel.addRule(this._styleSheetId, this._parentPane._node, ruleText, this._ruleLocation, success…
|