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

<<21222324252627282930>>

  /external/dnsmasq/contrib/dnslist/
dhcp.css 39 /* Any row but the first or second (overrides above rule) */
  /external/hamcrest/src/org/hamcrest/core/
IsNot.java 31 * Inverts the rule.
  /external/icu/icu4c/source/i18n/unicode/
plurrule.h 54 * default rule(other) is returned.
67 * are assigned the keyword "other" by the default rule.
71 * Each rule is examined in order, and the first keyword whose condition
73 * to n in the last rule. Thus its condition holds for 119, 219, 319...
86 * rules = rule (';' rule)*
87 * rule = keyword ':' condition
231 * @param description rule description
323 * Given a number, returns the keyword of the first rule that applies to
327 * @param number The number for which the rule has to be determined
    [all...]
upluralrules.h 26 * If none match, the default rule(other) is returned.
127 * Given a number, returns the keyword of the first rule that
130 * @param number The number for which the rule has to be determined.
131 * @param keyword The keyword of the rule that applies to number.
  /external/icu/icu4c/source/test/intltest/
ucaconf.h 43 RuleBasedCollator *UCA; // rule-based so rules are available
  /external/iptables/
INCOMPATIBILITIES 14 iptables-restore to ensure your dynamic rule changes continue to work.
  /external/jarjar/src/main/com/tonicsystems/jarjar/
MainProcessor.java 34 List<Rule> ruleList = new ArrayList<Rule>();
39 } else if (pattern instanceof Rule) {
40 ruleList.add((Rule) pattern);
Rule.java 19 public class Rule extends PatternElement
  /external/junit/src/org/junit/rules/
ExpectedException.java 14 * The ExpectedException Rule allows in-test specification of expected exception
20 * &#064;Rule
46 * @return a Rule that expects no exception to be thrown
47 * (identical to behavior without this Rule)
TestRule.java 20 * ways. {@link org.junit.Rule} annotates method-level
27 * {@link org.junit.Rule} in turn, and each may return a substitute or modified
28 * {@link Statement}, which is passed to the next {@link org.junit.Rule}, if any. For
46 * test-running rule.
Verifier.java 15 * &#064;Rule
  /external/libnl/src/
.gitignore 28 nl-rule-list
  /external/llvm/include/llvm/CodeGen/PBQP/
Solution.h 44 /// \brief Records a reduction via the R0 rule. Should be called from the
51 /// \brief Records a reduction via the R1 rule. Should be called from the
58 /// \brief Records a reduction via the R2 rule. Should be called from the
65 /// \brief Records a reduction via the RN rule. Should be called from the
  /external/llvm/lib/Support/Unix/
README.txt 13 As a rule, only those directories actually needing to be created should be
  /external/valgrind/main/memcheck/tests/x86/
espindola2.c 7 which is a spec rule for COPY-CondP. */
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
UiccCarrierPrivilegeRules.java 115 // Describes a single rule.
231 Rlog.d(LOG_TAG, "No matching rule found. Returning false.");
387 Rlog.e(LOG_TAG, "Skip unrecognized rule." + refArDo.value);
394 * Parses a single rule.
396 private static AccessRule parseRefArdo(String rule) {
397 Rlog.d(LOG_TAG, "Got rule: " + rule);
404 while (!rule.isEmpty()) {
405 if (rule.startsWith(TAG_REF_DO)) {
407 rule = refDo.parse(rule, false)
    [all...]
  /libcore/luni/src/main/java/java/math/
RoundingMode.java 30 * Rule: {@code x.round().abs() >= x.abs()}
37 * Rule: {@code x.round().abs() <= x.abs()}
46 * Rule: {@code x.round() >= x}
55 * Rule: {@code x.round() <= x}
  /ndk/sources/host-tools/make-3.81/
make.lnk 1 FROM LIB:cres.o "commands.o"+"job.o"+"dir.o"+"file.o"+"misc.o"+"main.o"+"read.o"+"remake.o"+"rule.o"+"implicit.o"+"default.o"+"variable.o"+"expand.o"+"function.o"+"vpath.o"+"version.o"+"ar.o"+"arscan.o"+"signame.o"+"remote-stub.o"+"getopt.o"+"getopt1.o"+"alloca.o"+"amiga.o"+"hash.o"+"strcache.o"
  /ndk/sources/host-tools/make-3.81/tests/scripts/targets/
FORCE 5 $details = "If the rule ...\n";
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/
HierarchyViewerPluginDirector.java 57 public boolean contains(ISchedulingRule rule) {
58 return rule == this;
62 public boolean isConflicting(ISchedulingRule rule) {
63 return rule == this;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
LinearLayoutRuleTest.java 49 IViewRule rule = new LinearLayoutRule(); local
59 DropFeedback feedback = rule.onDropEnter(targetNode, null/*targetView*/, elements);
64 feedback = rule.onDropMove(targetNode, elements, feedback, dropPoint);
97 rule.onDropped(targetNode, elements, feedback, dropPoint);
127 LinearLayoutRule rule = new LinearLayoutRule(); local
128 initialize(rule, "android.widget.LinearLayout");
132 rule.addContextMenuActions(contextMenu, node);
147 LinearLayoutRule rule = new LinearLayoutRule(); local
148 initialize(rule, "android.widget.LinearLayout");
154 rule.addContextMenuActions(contextMenu, node)
173 LinearLayoutRule rule = new LinearLayoutRule(); local
207 LinearLayoutRule rule = new LinearLayoutRule(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBaseRecognizer.m 425 msg = [NSString stringWithFormat:@"rule %@ failed predicate: { %@ }?", fpe.ruleName, fpe.predicate];
515 /* Compute the error recovery set for the current rule. During
516 * rule invocation, the parser pushes the set of tokens that can
517 * follow that rule reference on the stack; this amounts to
518 * computing FIRST of what follows the rule reference in the
519 * enclosing rule. This local follow set only includes tokens
520 * from within the rule; i.e., the FIRST computation done by
521 * ANTLR stops at the end of a rule.
526 * consistent with any of the alternatives for rule r. The best
528 * can legally follow a call to r *or* any rule that called r
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCParser.java 169 RewriteRuleSubtreeStream stream_functionHeader=new RewriteRuleSubtreeStream(adaptor,"rule functionHeader");
170 RewriteRuleSubtreeStream stream_block=new RewriteRuleSubtreeStream(adaptor,"rule block");
207 // rule labels: retval
209 // rule list labels:
212 RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,"rule retval",retval!=null?retval.tree:null);
252 // rule labels: retval
254 // rule list labels:
257 RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,"rule retval",retval!=null?retval.tree:null);
319 RewriteRuleSubtreeStream stream_declarator=new RewriteRuleSubtreeStream(adaptor,"rule declarator");
320 RewriteRuleSubtreeStream stream_type=new RewriteRuleSubtreeStream(adaptor,"rule type")
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/
TreeRewriteParser.m 74 #pragma mark Dynamic Rule Scopes
76 #pragma mark Rule return scopes start
200 * $ANTLR start rule
201 * /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/treerewrite/TreeRewrite.g:8:1: rule : INT subrule -> ^( subrule INT ) ;
203 - (TreeRewriteParser_rule_return *) rule
225 description:@"rule subrule"] retain];
243 // rule labels: retval
245 // rule list labels:
278 // token+rule list labels
297 /* $ANTLR end rule */
    [all...]
  /external/chromium_org/net/dns/
address_sorter_posix_unittest.cc 189 // Rule 1: Avoid unusable destinations.
197 // Rule 2: Prefer matching scope.
215 // Rule 3: Avoid deprecated addresses.
226 // Rule 4: Prefer home addresses.
236 // Rule 5: Prefer matching label.
253 // Rule 6: Prefer higher precedence.
265 // Rule 7: Prefer native transport.
275 // Rule 8: Prefer smaller scope.
277 // Matching scope. Should precede the others by Rule 2.
290 // Rule 9: Use longest matching prefix
    [all...]

Completed in 587 milliseconds

<<21222324252627282930>>