HomeSort by relevance Sort by last modified time
    Searched refs:predicates (Results 1 - 25 of 32) sorted by null

1 2

  /external/openssl/crypto/rc4/asm/
rc4-ia64.pl 672 $predicates = 1;
674 &emit_body (\$code, \$bypass, $iteration++, $predicates);
675 $predicates = ($predicates << 1) | 1;
684 &emit_body (\$code, \$bypass, $iteration++, $predicates);
693 $predicates <<= 1;
694 &emit_body (\$code, \$bypass, $iteration++, $predicates);
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestSuiteBuilder.java 42 * and predicates that must be satisfied.
48 private final Set<Predicate<TestMethod>> predicates = new HashSet<Predicate<TestMethod>>(); field in class:TestSuiteBuilder
118 * Exclude tests that fail to satisfy all of the given predicates.
120 * @param predicates Predicates to add to the list of requirements.
123 public TestSuiteBuilder addRequirements(List<Predicate<TestMethod>> predicates) {
124 this.predicates.addAll(predicates);
213 * Exclude tests that fail to satisfy all of the given predicates. If you call this method, you
216 * @param predicates Predicates to add to the list of requirements
    [all...]
  /external/webkit/Source/WebCore/xml/
XPathPath.cpp 41 Filter::Filter(Expression* expr, const Vector<Predicate*>& predicates)
42 : m_expr(expr), m_predicates(predicates)
XPathStep.h 75 // When possible, we merge some or all predicates with node test for better performance.
79 Step(Axis, const NodeTest& nodeTest, const Vector<Predicate*>& predicates = Vector<Predicate*>());
XPathStep.cpp 44 Step::Step(Axis axis, const NodeTest& nodeTest, const Vector<Predicate*>& predicates)
47 , m_predicates(predicates)
59 // Evaluate predicates as part of node test if possible to avoid building unnecessary NodeSets.
61 // This optimization can be applied to predicates that are not context node list sensitive, or to first predicate that is only context position sensitive, e.g. foo[position() mod 2 = 0].
121 // Check predicates that couldn't be merged into node test.
155 // Evaluate NodeTest without considering merged predicates.
227 // No need to set context size - we only get here when evaluating predicates that do not depend on it.
235 // Result nodes are ordered in axis order. Node test (including merged predicates) is applied.
340 if (nodeMatches(n.get(), AttributeAxis, m_nodeTest)) // Still need to check merged predicates.
  /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...]
  /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/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/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
CSharp2.stg 420 * rules created for syntactic predicates. As they never have return values
423 * As predicates cannot be inlined into the invoking rule, they need to
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
CSharp3.stg 402 * rules created for syntactic predicates. As they never have return values
405 * As predicates cannot be inlined into the invoking rule, they need to
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
Delphi.stg 70 * synpreds (): syntactic predicates
497 * rules created for syntactic predicates. As they never have return values
500 * As predicates cannot be inlined into the invoking rule, they need to
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ObjC.stg 764 * rules created for syntactic predicates. As they never have return values
767 * As predicates cannot be inlined into the invoking rule, they need to
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
C.stg     [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas     [all...]
Antlr.Runtime.pas 364 /// When walking ahead with cyclic DFA for syntactic predicates, we
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 

Completed in 550 milliseconds

1 2