/prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.6/ |
commons-codec-1.6.jar | |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
PluralRules.java | 64 * keyword "other" by the default rule. 71 * This illustrates that the same keyword can be defined multiple times. Each rule is examined in order, and the first 72 * keyword whose condition passes is the one returned. Also notes that a modulus is applied to n in the last rule. Thus 89 * rules = rule (';' rule)* 90 * rule = keyword ':' condition 324 * for values to which no other form in the rule applies. It 371 private static final Rule DEFAULT_RULE = new Rule("other", NO_CONSTRAINT, null, null); 375 * @param description the rule description 1471 Rule rule = parseRule(rules[i].trim()); local 1726 Rule rule = it.next(); local [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
PluralRules.java | 63 * keyword "other" by the default rule. 70 * This illustrates that the same keyword can be defined multiple times. Each rule is examined in order, and the first 71 * keyword whose condition passes is the one returned. Also notes that a modulus is applied to n in the last rule. Thus 88 * rules = rule (';' rule)* 89 * rule = keyword ':' condition 320 * for values to which no other form in the rule applies. It 372 private static final Rule DEFAULT_RULE = new Rule("other", NO_CONSTRAINT, null, null); 376 * @param description the rule description 1425 Rule rule = parseRule(rules[i].trim()); local 1680 Rule rule = it.next(); local [all...] |
/external/messageformat/java/com/ibm/icu/simple/ |
PluralRules.java | 60 * keyword "other" by the default rule. 67 * This illustrates that the same keyword can be defined multiple times. Each rule is examined in order, and the first 68 * keyword whose condition passes is the one returned. Also notes that a modulus is applied to n in the last rule. Thus 85 * rules = rule (';' rule)* 86 * rule = keyword ':' condition 308 * for values to which no other form in the rule applies. It 360 private static final Rule DEFAULT_RULE = new Rule("other", NO_CONSTRAINT, null, null); 364 * @param description the rule description 1416 Rule rule = parseRule(rules[i].trim()); local 1671 Rule rule = it.next(); local [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
SerializedGrammar.java | 47 class Rule { 50 public Rule(String name, Block block) { 115 Rule r = readRule(in); 121 protected Rule readRule(DataInputStream in) throws IOException { 123 if ( R!='R' ) throw new IOException("missing R on start of rule"); 125 System.out.println("rule: "+name); 129 if ( period!='.' ) throw new IOException("missing . on end of rule"); 130 return new Rule(name, b); 160 //System.out.println("read rule "+gr.getRuleName(ruleIndex));
|
/external/llvm/lib/CodeGen/MIRParser/ |
MILexer.cpp | 277 static Cursor maybeLexIndex(Cursor C, MIToken &Token, StringRef Rule, 279 if (!C.remaining().startswith(Rule) || !isdigit(C.peek(Rule.size()))) 282 C.advance(Rule.size()); 290 static Cursor maybeLexIndexAndName(Cursor C, MIToken &Token, StringRef Rule, 292 if (!C.remaining().startswith(Rule) || !isdigit(C.peek(Rule.size()))) 295 C.advance(Rule.size()); 300 unsigned StringOffset = Rule.size() + Number.size(); 332 const StringRef Rule = "%ir-block." [all...] |
/external/vogar/test/vogar/target/ |
TestRunnerTest.java | 22 import org.junit.Rule; 39 @Rule public InterceptOutputStreams ios = new InterceptOutputStreams(Stream.OUT); 41 @Rule public TestRunnerRule testRunnerRule = new TestRunnerRule();
|
/developers/samples/android/ui/window/MultiWindowPlayground/Application/src/androidTest/java/ |
LaunchTests.java | 20 import org.junit.Rule; 24 import android.support.test.rule.ActivityTestRule; 39 @Rule
|
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
DefineGrammarItemsWalker.g | 78 // form is (header ... ) ( grammar ID (scope ...) ... ( rule ... ) ( rule ... ) ... ) 85 if ( p.getChild( i ).getType() != RULE ) 89 //Console.Out.WriteLine( "rule " + ruleName + " prev=" + prev.getText() ); 90 if (Rule.getRuleType(ruleName) == Grammar.LEXER) { 91 // remove lexer rule 100 Rule r = grammar.getRule( currentRuleName ); 203 : (rule | ^(PREC_RULE .*))+ 206 rule 211 Rule r = null [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
NFAState.java | 32 import org.antlr.tool.Rule; 81 /** What rule do we live in? */ 82 public Rule enclosingRule; 86 * For example, "start of alt 1 of rule a".
|
/external/caliper/caliper/src/test/java/com/google/caliper/config/ |
LoggingConfigLoaderTest.java | 30 import org.junit.Rule; 55 @Rule public TemporaryFolder folder = new TemporaryFolder();
|
/external/dagger2/compiler/src/test/java/dagger/internal/codegen/ |
BindingFieldTest.java | 33 import org.junit.Rule; 45 @Rule public CompilationRule compilationRule = new CompilationRule();
|
/external/icu/android_icu4j/cts-coverage/src/main/tests/android/icu/cts/coverage/text/ |
DateIntervalFormatTest.java | 27 import org.junit.Rule; 39 @Rule
|
/external/webrtc/webrtc/base/ |
firewallsocketserver.h | 22 // This SocketServer shim simulates a rule-based firewall server. 78 struct Rule { 85 std::vector<Rule> rules_;
|
/frameworks/base/core/tests/coretests/src/android/view/ |
ViewCaptureTest.java | 23 import android.support.test.rule.ActivityTestRule; 31 import org.junit.Rule; 48 @Rule
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
WifiCertManagerTest.java | 30 import org.junit.Rule; 49 @Rule public TemporaryFolder mTempFolder = new TemporaryFolder();
|
/frameworks/support/v4/tests/java/android/support/v4/app/ |
NestedFragmentRestoreTest.java | 22 import android.support.test.rule.ActivityTestRule; 29 import org.junit.Rule; 43 @Rule
|
/prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.10/ |
commons-codec-1.10.jar | |
/prebuilts/tools/common/offline-m2/commons-codec/commons-codec/1.10/ |
commons-codec-1.10.jar | |
/prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.9/ |
commons-codec-1.9.jar | |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
GrammarReport2.java | 65 Rule enclosingRule = d.dfa.decisionNFAStartState.enclosingRule;
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/rules/ |
log_url.py | 19 from rules import rule namespace 22 class LogUrl(rule.Rule): 36 """Returns True if the name matches this rule.""" 43 return_value: the prior log_url rule's return_value (if any).
|
/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/ |
full_test.py | 45 flags.FLAGS.jslint_error = error_check.Rule.ALL
|
/external/junit/src/org/junit/rules/ |
TemporaryFolder.java | 6 import org.junit.Rule; 9 * The TemporaryFolder Rule allows creation of files and folders that are 15 * @Rule 100 * by the {@link Rule}
|
/external/jacoco/org.jacoco.ant/src/org/jacoco/ant/ |
ReportTask.java | 50 import org.jacoco.report.check.Rule; 350 private final List<Rule> rules = new ArrayList<Rule>(); 356 * Creates and adds a new rule. 358 * @return new rule 360 public Rule createRule() { 361 final Rule rule = new Rule(); local 362 rules.add(rule); [all...] |