/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);
|
/external/droiddriver/src/com/google/android/droiddriver/finders/ |
By.java | 37 return new MatchFinder(Predicates.attributeTrue(attribute)); 44 return new MatchFinder(Predicates.attributeFalse(attribute)); 49 return new MatchFinder(Predicates.attributeEquals(Attribute.RESOURCE_ID, resourceId)); 54 return new MatchFinder(Predicates.attributeEquals(Attribute.PACKAGE, name)); 59 return new MatchFinder(Predicates.attributeEquals(Attribute.TEXT, text)); 64 return new MatchFinder(Predicates.attributeMatches(Attribute.TEXT, regex)); 69 return new MatchFinder(Predicates.attributeContains(Attribute.TEXT, substring)); 74 return new MatchFinder(Predicates.attributeEquals(Attribute.CONTENT_DESC, contentDescription)); 79 return new MatchFinder(Predicates.attributeContains(Attribute.CONTENT_DESC, substring)); 84 return new MatchFinder(Predicates.attributeEquals(Attribute.CLASS, className)) 154 Predicate<? super UiElement>[] predicates = new Predicate[finders.length]; local [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/chromium_org/third_party/WebKit/Source/core/xml/ |
XPathPath.cpp | 40 Filter::Filter(PassOwnPtrWillBeRawPtr<Expression> expr, WillBeHeapVector<OwnPtrWillBeMember<Predicate> >& predicates) 43 m_predicates.swap(predicates);
|
XPathStep.cpp | 48 Step::Step(Axis axis, const NodeTest& nodeTest, WillBeHeapVector<OwnPtrWillBeMember<Predicate> >& predicates) 52 m_predicates.swap(predicates); 68 // Evaluate predicates as part of node test if possible to avoid building 72 // This optimization can be applied to predicates that are not context node 135 // Check predicates that couldn't be merged into node test. 169 // Evaluate NodeTest without considering merged predicates. 248 // predicates that do not depend on it. 257 // predicates) is applied. 379 // Still need to check merged predicates.
|
/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/chromium_org/v8/test/mjsunit/ |
number-is.js | 28 // Test number predicates that Harmony adds to the Number constructor:
|
/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/chromium_org/third_party/WebKit/Source/devtools/front_end/main/ |
OverridesView.js | 128 * @param {!Array.<function():boolean>=} predicates 130 WebInspector.OverridesView.Tab = function(id, name, settings, predicates) 136 this._predicates = predicates || [];
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/ |
C.stg | [all...] |
/external/libunwind/src/ia64/ |
Gparser.c | 961 unw_word_t predicates = c->pr; 972 sr->pr_val = predicates; 959 unw_word_t predicates = c->pr; local
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
dom_predicates.js | 6 * @fileoverview A bunch of predicates that take as input an array of
|
/external/libunwind/doc/ |
libunwind-ia64.tex | 148 ``move predicates'' instruction, the registers are mapped as if
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/ |
FlexAntTasks.jar | |