HomeSort by relevance Sort by last modified time
    Searched full:rule (Results 626 - 650 of 4107) sorted by null

<<21222324252627282930>>

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangParser.m 42 #pragma mark Dynamic Rule Scopes
44 #pragma mark Rule Return Scopes start
165 //#pragma mark Rule return scopes start
168 #pragma mark Rule return scopes start
173 #pragma mark Dynamic Rule Scopes
290 // token+rule list labels
302 /* ASTParser rule.setErrorReturnValue */
348 description:@"rule type"] retain];
372 // rule labels: retval
374 // rule list labels:
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/script_formatter_worker/
ScriptFormatterWorker.js 220 var rule;
236 rule = {
244 rule = {
254 rule.selectorText = rule.selectorText.trim();
257 rule.selectorText += tokenValue;
262 rule.atRule = rule.atRule.trim();
263 rules.push(rule);
266 rule.atRule += tokenValue
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
xcode.py 207 # used for the Run All Tests target. support_targets are the action/rule
    [all...]
  /ndk/sources/host-tools/make-3.81/
SMakefile 127 rule.o implicit.o default.o variable.o expand.o function.o \
133 $(srcdir)rule.c $(srcdir)implicit.c $(srcdir)default.c \
140 $(srcdir)job.h $(srcdir)make.h $(srcdir)rule.h \
240 gettext.h filedef.h hash.h variable.h rule.h \
253 variable.h rule.h
285 gettext.h filedef.h hash.h rule.h dep.h debug.h \
306 job.h commands.h rule.h \
319 commands.h variable.h rule.h debug.h \
337 # .deps/rule.Po
338 rule.o rule.o: rule.c make.h config.h
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
StylesSidebarPane.js 49 addButton.title = WebInspector.UIString("New Style Rule");
526 var rule = pseudoElementCSSRules.rules[j];
527 styleRules.push({ style: rule.style, selectorText: rule.selectorText, media: rule.media, sourceURL: rule.resourceURL(), rule: rule, editable: !!(rule.style && rule.style.styleSheetId) })
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SVG/resources/
GearFlowers.svg     [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t054main.py 148 ['combined.py', '--rule', 'r'],
179 ['combined.py', '--rule', 'r'],
220 ['walker.py', '--rule', 'r', '--parser', 'T6Parser', '--parser-rule', 'r', '--lexer', 'T6Lexer'],
263 ['walker.py', '--rule', 'r', '--parser', 'T7Parser', '--parser-rule', 'r', '--lexer', 'T7Lexer'],
308 ['import.py', '--rule', 's'],
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/main/
main-scripts.rb 92 %w(--rule r --lexer-name MainForCombined::Lexer),
115 %w(--rule r --lexer-name ASTParserMain::Lexer),
151 %w(--rule r --parser-name TreeMain::Parser
152 --parser-rule r --lexer-name TreeMain::Lexer),
187 %w(--rule r --parser-name TreeRewriteMain::Parser
188 --parser-rule r --lexer-name TreeRewriteMain::Lexer),
219 %w(--rule s --lexer-name MainMaster::Lexer),
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLR.g 74 RULE;
123 import org.antlr.tool.Rule;
330 // if they want backtracking and it's not a lexer rule in combined grammar
338 Rule.getRuleType(currentRuleName) == Grammar.LEXER) &&
388 * ^(RULE[block,"rule"] ID["name"] {modifier} ARG["ARG"] RET["RET"] SCOPE["scope"] {block} EOR[EOBAST,"<end-of-rule>"])
390 GrammarAST rule = (GrammarAST)adaptor.create( RULE, block.getToken(), "rule" );
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
RandomPhrase.java 67 * grammar given a start rule. Return a list of token types.
83 // end of rule node
90 // move to node after state that invoked this rule
100 //System.out.println("call "+((RuleClosureTransition)t0).rule.name);
175 System.out.println("undefined start rule "+startRule);
221 System.err.println("Error walking "+grammarFileName+" rule "+startRule+" seed "+seed);
225 System.err.println("Exception walking "+grammarFileName+" rule "+startRule+" seed "+seed);
  /external/bison/data/xslt/
xml2xhtml.xsl 115 <xsl:if test="grammar/rules/rule[@usefulness='useless-in-parser']">
191 <xsl:variable name="set" select="rule[@usefulness='useless-in-grammar']"/>
194 <xsl:call-template name="style-rule-set">
195 <xsl:with-param name="rule-set" select="$set"/>
204 name="set" select="rules/rule[@usefulness='useless-in-parser']"
213 <xsl:call-template name="style-rule-set">
214 <xsl:with-param name="rule-set" select="$set"/>
228 <xsl:call-template name="style-rule-set">
230 name="rule-set" select="rules/rule[@usefulness!='useless-in-grammar']
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
dfa.c 58 if(s->rule)
59 fprintf(o, " accepts %u", s->rule->d.RuleOp.accept);
80 s->rule = NULL;
148 s->rule = NULL;
158 if(!s->rule || ((RegExp *)i->i.link)->d.RuleOp.accept < s->rule->d.RuleOp.accept)
159 s->rule = (RegExp *)i->i.link;
  /external/sepolicy/tools/
check_seapp.c 68 * hash table / line rule combination. This way a replacement
105 int lineno; /** Line number rule was encounter on */
110 rule_map *r; /** The rule map to store at that location */
155 * to a rule.
175 * rule map table entries, used for
337 * Prints a rule map back to a file
341 * The rule map to print
358 * Compare two rule maps for equality
360 * a rule map to check
362 * a rule map to chec
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
recognizers.py 59 # Track the set of token types that can follow any rule invocation.
80 # the stop token index for each rule. ruleMemo[ruleIndex] is
82 # get back the stop token for associated rule or MEMO_RULE_FAILED.
84 # This is only used if rule memoization is on (which it is by default).
98 # matching lexer rule(s). If you subclass to allow multiple token
206 This way any error in a rule will cause an exception and
207 immediate exit from rule. Rule would recover by resynchronizing
208 to the set of symbols that can follow rule ref.
389 msg = "rule " \
    [all...]
  /external/chromium_org/third_party/freetype/src/truetype/
ttsubpix.c 54 /* The rule structure is designed so that entirely new rules can easily */
57 /* The rule structures could also use some enhancement to handle ranges. */
754 /* Does font name match rule family? */
789 /* Does font style match rule style? */
823 const SPH_TweakRule* rule,
829 /* rule checks may be able to be optimized further */
833 ( is_member_of_family_class ( family, rule[i].family ) ) )
834 if ( rule[i].ppem == 0 ||
835 rule[i].ppem == ppem )
837 is_member_of_style_class ( style, rule[i].style )
    [all...]
  /external/freetype/src/truetype/
ttsubpix.c 54 /* The rule structure is designed so that entirely new rules can easily */
57 /* The rule structures could also use some enhancement to handle ranges. */
754 /* Does font name match rule family? */
789 /* Does font style match rule style? */
823 const SPH_TweakRule* rule,
829 /* rule checks may be able to be optimized further */
833 ( is_member_of_family_class ( family, rule[i].family ) ) )
834 if ( rule[i].ppem == 0 ||
835 rule[i].ppem == ppem )
837 is_member_of_style_class ( style, rule[i].style )
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
ttsubpix.c 54 /* The rule structure is designed so that entirely new rules can easily */
57 /* The rule structures could also use some enhancement to handle ranges. */
754 /* Does font name match rule family? */
789 /* Does font style match rule style? */
823 const SPH_TweakRule* rule,
829 /* rule checks may be able to be optimized further */
833 ( is_member_of_family_class ( family, rule[i].family ) ) )
834 if ( rule[i].ppem == 0 ||
835 rule[i].ppem == ppem )
837 is_member_of_style_class ( style, rule[i].style )
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
recognizers.rb 193 * simple rule tracing and debugging
234 # a special class for ever rule in AST parsers and such
238 # require additional custom members will have a rule-return
253 # all rule return structures.
258 # sets up and returns the generic rule return
456 "rule %s failed predicate: { %s }?" % [ e.rule_name, e.predicate_text ]
533 # Compute the error recovery set for the current rule. During
534 # rule invocation, the parser pushes the set of tokens that can
535 # follow that rule reference on the stack; this amounts to
536 # computing FIRST of what follows the rule reference in th
    [all...]
  /external/srec/tools/grxmlcompile/
grxmldoc.cpp 92 m_NodeKeyWords.insert(make_pair("rule", NodeTypeRule));
135 //Print the root rule.
144 // We will create a new subgraph for each rule node.
364 m_RootRule = GETATTR("root"); // The root rule name
366 DEBUG_PRINT("Root rule = " + m_RootRule);
412 DEBUG_PRINT ( "---- Rule\n" );
419 // Rule name must be unique within scope of entire grammar.
420 // Put rule on stack - for context
423 // Check whether a ruleref placeholder exists for this rule.
427 // Rule is already declared; it must have been forward reference
957 std::string rule; local
    [all...]
  /external/chromium_org/chrome/browser/content_settings/
host_content_settings_map.cc 49 typedef std::vector<content_settings::Rule> Rules;
173 content_settings::Rule rule = rule_iterator->Next(); local
174 if (rule.primary_pattern == wildcard &&
175 rule.secondary_pattern == wildcard) {
176 return content_settings::ValueToContentSetting(rule.value.get());
512 const content_settings::Rule& rule = rule_iterator->Next(); local
519 rule.value.get() &&
520 rule.primary_pattern != ContentSettingsPattern::Wildcard())
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/declarative/
rules_registry_with_cache_unittest.cc 32 const char kRuleId[] = "rule";
73 std::vector<linked_ptr<RulesRegistry::Rule> > add_rules;
74 add_rules.push_back(make_linked_ptr(new RulesRegistry::Rule));
93 std::vector<linked_ptr<RulesRegistry::Rule> > get_rules;
148 // Check that nothing happens if a rule does not exist.
185 // Check that we get the correct rule and unknown rules are ignored.
189 std::vector<linked_ptr<RulesRegistry::Rule> > gotten_rules;
203 std::vector<linked_ptr<RulesRegistry::Rule> > gotten_rules;
331 // This test makes sure that rules are restored from the rule store
356 // 2. First run, adding a rule for the extension
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
tkt2822.test 40 # In the third rule, the expression must exactly match one
45 # Rule (3) is not in standard SQL - it is an SQLite extension,
46 # though one copied from PostgreSQL. The rule for compound
52 # Rule (2) was added by the changes ticket #2822. Prior to
53 # that changes, SQLite did not support rule (2), making it
55 # No body noticed because rule (3) has the same effect as
56 # rule (2) except in some obscure cases.
176 # Tests for rule (2).
178 # The "ORDER BY b" should match the column alias (rule 2), not the
179 # the t3.b value (rule 3).
    [all...]
  /external/kernel-headers/original/uapi/linux/netfilter/
nf_tables.h 19 * @NFT_CONTINUE: continue evaluation of the current rule
20 * @NFT_BREAK: terminate evaluation of the current rule
44 * @NFT_MSG_NEWRULE: create a new rule (enum nft_rule_attributes)
45 * @NFT_MSG_GETRULE: get a rule (enum nft_rule_attributes)
46 * @NFT_MSG_DELRULE: delete a rule (enum nft_rule_attributes)
151 * enum nft_rule_attributes - nf_tables rule netlink attributes
153 * @NFTA_RULE_TABLE: name of the table containing the rule (NLA_STRING)
154 * @NFTA_RULE_CHAIN: name of the chain containing the rule (NLA_STRING)
155 * @NFTA_RULE_HANDLE: numeric handle of the rule (NLA_U64)
157 * @NFTA_RULE_COMPAT: compatibility specifications of the rule (NLA_NESTED: nft_rule_compat_attributes
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRDebugEventListener.h 35 /** The parser has just entered a rule. No decision has been made about
46 /** This is the last thing executed before leaving a rule. It is
49 * not caught in this rule). This implies an "exitAlt" event.
126 * Upon error, the stack of enter rule/subrule must be properly unwound.
147 * The sequence for this rule (with no viable alt in the subrule) for
203 * trigger this upon entry to the first rule (the ruleLevel is used to
209 * remote debugging listeners that it's time to quit. When the rule
210 * invocation level goes to zero at the end of a rule, we are done
259 * only when the current subrule (or rule) subtree is
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRDebugEventListener.h 35 /** The parser has just entered a rule. No decision has been made about
46 /** This is the last thing executed before leaving a rule. It is
49 * not caught in this rule). This implies an "exitAlt" event.
126 * Upon error, the stack of enter rule/subrule must be properly unwound.
147 * The sequence for this rule (with no viable alt in the subrule) for
203 * trigger this upon entry to the first rule (the ruleLevel is used to
209 * remote debugging listeners that it's time to quit. When the rule
210 * invocation level goes to zero at the end of a rule, we are done
259 * only when the current subrule (or rule) subtree is

Completed in 2018 milliseconds

<<21222324252627282930>>