HomeSort by relevance Sort by last modified time
    Searched refs:rule (Results 101 - 125 of 1332) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
speech_rule_engine.js 6 * @fileoverview Implementation of the speech rule engine.
8 * The speech rule engine chooses and applies speech rules. Rules are chosen
9 * from a set of rule stores wrt. their applicability to a node in a particular
11 * recursively computing new nodes and applicable rules or, if no further rule
15 * Consequently the rule engine is parameterisable wrt. rule stores and
32 * The currently active speech rule store.
49 * Parameterizes the speech rule engine.
50 * @param {cvox.BaseRuleStore} store A speech rule store.
68 * Parameterizes the dynamic constraint annotation for the speech rule
    [all...]
math_simple_store.js 6 * @fileoverview Rule stores for the basic components of math expressions:
46 var rule = this.defineRule(
70 * Function creates a rule store in the compound store for a particular string,
72 * @param {string} name Name of the rule.
73 * @param {string} str String used as key to refer to the rule store
86 * Makes a speech rule for Unicode characters from its JSON representation.
96 * Makes a speech rule for Unicode characters from its JSON representation.
109 * Retrieves a rule for the given node if one exists.
112 * constraints. These are matched against properties of a rule.
113 * @return {cvox.SpeechRule} The speech rule if it exists
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
RunnerController.java 107 public void OnShowRuleResult(Rule rule) {
115 result.append("Testing result for rule: " + rule.getName());
118 for(TestCase testCase: rule.getTestCases()){
136 final Rule rule = suite.getRule(i); local
137 if(rule.getNotEmpty()) this.add(new TestGroupTreeNode(rule));
153 private Rule data
    [all...]
  /external/bison/src/
scan-code.h 62 * for the LHS symbol of the same rule.)
70 struct symbol_list *rule; member in struct:code_props
125 * - <tt>rule != NULL</tt>.
126 * - \c code is the untranslated action of the rule for which \c rule is the
128 * $2, etc referring to the values of the rule.
131 * - \c self has been overwritten to represent the specified rule action.
132 * - \c self does not claim responsibility for the memory of \c rule.
136 * - The caller frees \c rule.
139 location code_loc, struct symbol_list *rule,
    [all...]
derives.c 31 /* Linked list of rule numbers. */
35 rule *value;
38 rule ***derives;
49 rule **rp;
67 rule **q;
73 /* DELTS[RULE] -- There are NRULES rule number to attach to nterms.
75 indexed by rule numbers. */
scan-code.l 52 static void handle_action_dollar (symbol_list *rule, char *cp,
54 static void handle_action_at (symbol_list *rule, char *cp, location at_loc);
73 /* Whether in a rule or symbol action. Specifies the translation
202 handle_action_dollar (self->rule, yytext, *loc);
209 handle_action_at (self->rule, yytext, *loc);
472 _(", cannot be accessed from mid-rule action at $%d");
493 points to LHS ($$) of the current rule or midrule. */
500 parse_ref (char *cp, symbol_list *rule, int rule_length,
558 for (symbol_index = 0, l = rule; !symbol_list_null (l);
582 /* Check visibility from mid-rule actions. *
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSImportRule.h 35 static PassRefPtrWillBeRawPtr<CSSImportRule> create(StyleRuleImport* rule, CSSStyleSheet* sheet)
37 return adoptRefWillBeNoop(new CSSImportRule(rule, sheet));
CSSKeyframesRule.idl 35 void insertRule([Default=Undefined] optional DOMString rule);
CSSMediaRule.cpp 72 void CSSMediaRule::reattach(StyleRuleBase* rule)
74 CSSGroupingRule::reattach(rule);
CSSStyleRule.h 36 static PassRefPtrWillBeRawPtr<CSSStyleRule> create(StyleRule* rule, CSSStyleSheet* sheet)
38 return adoptRefWillBeNoop(new CSSStyleRule(rule, sheet));
CSSSupportsRule.idl 35 [RaisesException] unsigned long insertRule([Default=Undefined] optional DOMString rule,
CSSRuleList.h 90 template <class Rule>
93 static PassOwnPtrWillBeRawPtr<LiveCSSRuleList> create(Rule* rule)
95 return adoptPtrWillBeNoop(new LiveCSSRuleList(rule));
110 LiveCSSRuleList(Rule* rule) : m_rule(rule) { }
116 RawPtrWillBeMember<Rule> m_rule;
PageRuleCollector.cpp 110 StyleRulePage* rule = rules[i]; local
112 if (!checkPageSelectorComponents(rule->selector(), isLeftPage, isFirstPage, pageName))
115 // If the rule has no properties to apply, then ignore it.
116 const StylePropertySet& properties = rule->properties();
120 // Add this rule to our list of matched rules.
121 matchedRules.append(rule);
CSSFilterRule.cpp 79 void CSSFilterRule::reattach(StyleRuleBase* rule)
81 ASSERT(rule);
82 m_filterRule = toStyleRuleFilter(rule);
  /external/chromium_org/third_party/skia/src/svg/
SkSVGPolyline.cpp 20 SVG_LITERAL_ATTRIBUTE(clip-rule, f_clipRule),
21 SVG_LITERAL_ATTRIBUTE(fill-rule, f_fillRule),
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSToolFile.py 28 """Adds a rule to the tool file.
31 name: Name of the rule.
32 description: Description of the rule.
33 cmd: Command line of the rule.
34 additional_dependencies: other files which may trigger the rule.
35 outputs: outputs of the rule.
36 extensions: extensions handled by the rule.
38 rule = ['CustomBuildRule',
47 self.rules_section.append(rule)
  /external/skia/src/svg/
SkSVGPolyline.cpp 20 SVG_LITERAL_ATTRIBUTE(clip-rule, f_clipRule),
21 SVG_LITERAL_ATTRIBUTE(fill-rule, f_fillRule),
  /external/smack/src/org/jivesoftware/smack/packet/
PrivacyItem.java 21 * A privacy item acts a rule that when matched defines if a packet should be blocked or not.
38 /** rule hold the kind of communication ([jid|group|subscription]) it will allow or block and
45 private PrivacyRule rule; field in class:PrivacyItem
259 return rule;
262 private void setRule(PrivacyRule rule) {
263 this.rule = rule;
308 * Privacy Rule represents the kind of action to apply.
315 * Type defines if the rule is based on JIDs, roster groups or presence subscription types.
345 PrivacyRule rule = new PrivacyRule(); local
    [all...]
  /build/core/
sdk_font.mk 47 # Define a macro to create rule for addititional fonts that we want to include
51 define sdk-extra-font-rule
63 $(eval $(call sdk-extra-font-rule,NanumGothic.ttf,external/naver-fonts/NanumGothic.ttf))
64 $(eval $(call sdk-extra-font-rule,DroidSansFallback.ttf,frameworks/base/data/fonts/DroidSansFallbackFull.ttf))
66 sdk-extra-font-rule :=
  /cts/tools/selinux/
SELinuxNeverallowTestFrame.py 103 + "neverallow rule:\\n" + neverallowRule + "\\n" + errorString,
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
filter.rb 50 def memoize( rule, start_index, success )
51 super( rule, start_index, success ) if @state.backtracking > 1
54 def already_parsed_rule?( rule )
55 @state.backtracking > 1 ? super( rule ) : false
  /external/chromium_org/chrome/tools/convert_dict/
aff_reader.h 27 // rule string will be specified literally in the .dic file. This must be
63 // command. The input rule may be modified arbitrarily by the function.
64 int AddAffixGroup(std::string* rule); // Returns the new affix group ID.
65 void AddAffix(std::string* rule); // SFX/PFX
66 void AddReplacement(std::string* rule);
67 // void HandleFlag(std::string* rule);
  /external/jarjar/src/main/com/tonicsystems/jarjar/
RulesFileParser.java 55 if (type.equals("rule")) {
58 Rule rule = new Rule(); local
59 rule.setResult(parts[2]);
60 element = rule;
  /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...]

Completed in 2435 milliseconds

1 2 3 45 6 7 8 91011>>