/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/ |
predicate-bad-2.d | 1 #name: C6X bad predicates for architecture
|
predicate-bad-3.d | 1 #name: C6X bad predicates for instructions
|
predicate-bad-1.s | 1 # Test bad syntax for predicates.
|
insns-predicate.s | 1 # Test predicates.
|
insns-predicate.d | 2 #name: C6X predicates
|
predicate-bad-2.s | 1 # Test predicates allowed or disallowed depending on the architecture.
|
/frameworks/base/test-runner/src/android/test/suitebuilder/ |
TestSuiteBuilder.java | 40 * and predicates that must be satisfied. 46 private final Set<Predicate<TestMethod>> predicates = new HashSet<Predicate<TestMethod>>(); field in class:TestSuiteBuilder 116 * Exclude tests that fail to satisfy all of the given predicates. 118 * @param predicates Predicates to add to the list of requirements. 121 public TestSuiteBuilder addRequirements(List<Predicate<TestMethod>> predicates) { 122 this.predicates.addAll(predicates); 211 * Exclude tests that fail to satisfy all of the given predicates. If you call this method, you 214 * @param predicates Predicates to add to the list of requirements [all...] |
/external/droiddriver/src/io/appium/droiddriver/finders/ |
By.java | 40 return new MatchFinder(Predicates.attributeTrue(attribute)); 47 return new MatchFinder(Predicates.attributeFalse(attribute)); 61 return new MatchFinder(Predicates.attributeEquals(Attribute.RESOURCE_ID, resourceId)); 66 return new MatchFinder(Predicates.attributeEquals(Attribute.PACKAGE, name)); 71 return new MatchFinder(Predicates.attributeEquals(Attribute.TEXT, text)); 76 return new MatchFinder(Predicates.attributeMatches(Attribute.TEXT, regex)); 81 return new MatchFinder(Predicates.attributeContains(Attribute.TEXT, substring)); 86 return new MatchFinder(Predicates.attributeEquals(Attribute.CONTENT_DESC, contentDescription)); 91 return new MatchFinder(Predicates.attributeContains(Attribute.CONTENT_DESC, substring)); 96 return new MatchFinder(Predicates.attributeEquals(Attribute.CLASS, className)) 166 Predicate<? super UiElement>[] predicates = new Predicate[finders.length]; local [all...] |
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/ |
MatchOpTest.java | 98 private <T> void assertPredicates(List<T> source, Kind kind, Predicate<T>[] predicates, boolean... answers) { 99 for (int i = 0; i < predicates.length; i++) { 101 boolean match = this.<T>kinds().get(kind).apply(predicates[i]).apply(source.stream()); 102 assertEquals(answers[i], match, kind.toString() + predicates[i].toString()); 183 private void assertIntPredicates(Supplier<IntStream> source, Kind kind, IntPredicate[] predicates, boolean... answers) { 184 for (int i = 0; i < predicates.length; i++) { 186 boolean match = intKinds.get(kind).apply(predicates[i]).apply(source.get()); 187 assertEquals(answers[i], match, kind.toString() + predicates[i].toString()); 268 private void assertLongPredicates(Supplier<LongStream> source, Kind kind, LongPredicate[] predicates, boolean... answers) { 269 for (int i = 0; i < predicates.length; i++) [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/patterns/ |
StepPattern.java | 207 // * @param predicates List of expression objects. 209 // public void setPredicates(Expression[] predicates) 211 // m_predicates = predicates; 233 * NOTE: Ancestors tests with predicates are problematic, and will require 266 * Get the number of predicates for this match pattern step. 269 * @return the number of predicates for this match pattern step. 277 * Set the predicates for this match pattern step. 280 * @param predicates An array of expressions that define predicates 283 public void setPredicates(Expression[] predicates) [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/ |
Ruby.stg | 266 * imaginary rules created for syntactic predicates. As they 270 * predicates cannot be inlined into the invoking rule, they 820 * productions, we may have to evaluate some predicates for 823 dfaEdge(labelExpr, targetState, predicates) ::= << 824 if ( <labelExpr> )<if(predicates)> and ( <predicates> )<endif> 984 cyclicDFAEdge(labelExpr, targetStateNumber, edgeNumber, predicates) ::= << 985 if ( <labelExpr> )<if(predicates)> and ( <predicates> )<endif> 992 eotDFAEdge(targetStateNumber, edgeNumber, predicates) ::= < [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/languages/ |
en.stg | 242 <if(disabled)><\n>As a result, alternative(s) <disabled; separator=","> were disabled for that input<endif><if(hasPredicateBlockedByAction)><\n>Semantic predicates were present but were hidden by actions.<endif> 254 Input such as "<upon>" is insufficiently covered with predicates at locations: <altToLocations.keys:{alt|alt <alt>: <altToLocations.(alt):{loc| line <loc.line>:<loc.column> at <loc.text>}; separator=", ">}; separator=", "><if(hasPredicateBlockedByAction)><\n>Semantic predicates were present but were hidden by actions.<endif> 284 <if(disabled)><\n>As a result, token(s) <disabled; separator=","> were disabled for that input<endif><if(hasPredicateBlockedByAction)><\n>Semantic predicates were present but were hidden by actions.<endif> 292 [fatal] rule <ruleName> has non-LL(*) decision due to recursive rule invocations reachable from alts <alts; separator=",">. Resolve by left-factoring or using syntactic predicates or using backtrack=true option.
|
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
Compiler.java | 908 // list, from where predicates are counted. 939 * Compile a zero or more predicates for a given match pattern. 955 Expression[] predicates = new Expression[count]; local 957 compilePredicates(opPos, predicates); 959 return predicates; 966 * Count the number of predicates in the step. 970 * @return The number of predicates for this step. 990 * Compiles predicates in the step. 993 * @param predicates An empty pre-determined array of 998 private void compilePredicates(int opPos, Expression[] predicates) [all...] |
/prebuilts/tools/common/m2/repository/org/gebish/geb-core/0.9.3/ |
geb-core-0.9.3.jar | |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/ |
CPP.stg | 330 * rules created for syntactic predicates. As they never have return values 333 * As predicates cannot be inlined into the invoking rule, they need to 935 * have to evaluate some predicates for this edge. 937 dfaEdge(labelExpr, targetState, predicates) ::= << 938 if ( (<labelExpr>) <if(predicates)>&& (<predicates>)<endif>) 1109 cyclicDFAEdge(labelExpr, targetStateNumber, edgeNumber, predicates) ::= << 1111 if ( (<labelExpr>) <if(predicates)>&& (<predicates>)<endif>) 1121 eotDFAEdge(targetStateNumber,edgeNumber, predicates) ::= "goto s<targetStateNumber>; [all...] |
/external/autotest/server/cros/dynamic_suite/ |
suite.py | 520 def create_from_predicates(predicates, builds, board, devserver, 531 @param predicates: A list of callables that accept ControlData 556 return Suite(predicates, 590 def __init__(self, predicates, tag, builds, board, cf_getter, 602 @param predicates: A list of callables that accept ControlData 649 return all((f(test) for f in predicates)) [all...] |
dynamic_suite.py | 576 predicates=[predicate], name=spec.name,
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/ |
ActionScript.stg | 247 * rules created for syntactic predicates. As they never have return values 250 * As predicates cannot be inlined into the invoking rule, they need to 867 * have to evaluate some predicates for this edge. 869 dfaEdge(labelExpr, targetState, predicates) ::= << 870 if ( (<labelExpr>) <if(predicates)>&& (<predicates>)<endif>) { [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/ |
Java.stg | 297 * rules created for syntactic predicates. As they never have return values 300 * As predicates cannot be inlined into the invoking rule, they need to 943 * have to evaluate some predicates for this edge. 945 dfaEdge(labelExpr, targetState, predicates) ::= << 946 if ( (<labelExpr>) <if(predicates)>&& (<predicates>)<endif>) { [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/ |
Perl5.stg | 262 * rules created for syntactic predicates. As they never have return values 265 * As predicates cannot be inlined into the invoking rule, they need to 907 * have to evaluate some predicates for this edge. 909 dfaEdge(labelExpr, targetState, predicates) ::= << 910 if ( (<labelExpr>) <if(predicates)>&& (<predicates>)<endif>) { 1092 cyclicDFAEdge(labelExpr, targetStateNumber, edgeNumber, predicates) ::= << 1093 if ( (<labelExpr>) <if(predicates)>&& (<predicates>)<endif>) {s = <targetStateNumber>;}<\n> 1099 eotDFAEdge(targetStateNumber,edgeNumber, predicates) ::= < [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/ |
Python.stg | 330 * rules created for syntactic predicates. As they never have return values 333 * As predicates cannot be inlined into the invoking rule, they need to 1026 * have to evaluate some predicates for this edge. 1028 dfaEdge(labelExpr, targetState, predicates) ::= << 1029 if (<labelExpr>) <if(predicates)>and (<predicates>)<endif>: [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/ |
Scala.stg | 272 * rules created for syntactic predicates. As they never have return values 275 * As predicates cannot be inlined into the invoking rule, they need to 936 * have to evaluate some predicates for this edge. 938 dfaEdge(labelExpr, targetState, predicates) ::= << 939 if ( (<labelExpr>) <if(predicates)>&& (<predicates>)<endif>) { [all...] |
/external/v8/test/mjsunit/ |
number-is.js | 28 // Test number predicates that Harmony adds to the Number constructor:
|
/prebuilts/go/darwin-x86/src/go/token/ |
token.go | 6 // programming language and basic operations on tokens (printing, predicates). 293 // Predicates
|
/prebuilts/go/linux-x86/src/go/token/ |
token.go | 6 // programming language and basic operations on tokens (printing, predicates). 293 // Predicates
|