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

1 2

  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/
LeftRecursiveRules.stg 64 ( options {backtrack=false;}
65 : ( options {backtrack=false;}
74 options {backtrack=true;}
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
backtracking.rb 9 grammar Backtrack;
12 backtrack=true;
46 * manual predicate here so that we don't backtrack over
50 * Remember: the goal is to avoid backtrack like the plague
238 lexer = Backtrack::Lexer.new( 'int a;' )
239 parser = Backtrack::Parser.new lexer
nuances.rb 134 options { backtrack=true; }
  /external/icu4c/layout/
ContextualSubstSubtables.h 34 le_bool backtrack = FALSE);
38 const ClassDefinitionTable *classDefinitionTable, le_bool backtrack = FALSE);
42 GlyphIterator *glyphIterator, const char *offsetBase, le_bool backtrack = FALSE);
ContextualSubstSubtables.cpp 51 GlyphIterator *glyphIterator, le_bool backtrack)
56 if (backtrack) {
82 le_bool backtrack)
87 if (backtrack) {
119 GlyphIterator *glyphIterator, const char *offsetBase, le_bool backtrack)
124 if (backtrack) {
  /packages/apps/Email/src/org/apache/commons/io/
FilenameUtils.java 1155 Stack<int[]> backtrack = new Stack<int[]>(); local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarReport.java 107 String backtrack = (String) g.getOption("backtrack"); local
108 if ( backtrack==null ) {
109 backtrack = "false";
111 data.grammarLevelBacktrack = backtrack;
283 buf.append("Number of decisions that backtrack: ");
372 buf.append("Grammar option backtrack: ");
Grammar.java 206 add("backtrack");
219 add("backtrack");
232 add("backtrack");
242 add("k"); add("backtrack"); add("memoize"); add("rewrite");
254 new HashSet() {{add("k"); add("greedy"); add("backtrack"); add("memoize");}};
376 /** At least one backtrack=true in rule or decision or grammar. */
682 // filter => backtrack=true
686 Object backtrack = (String)getOption("backtrack"); local
689 if ( backtrack!=null && !backtrack.toString().equals("true") )
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
event-hub.rb 33 def backtrack( level ) method in class:ANTLR3.Debug.EventHub
35 listener.backtrack( level )
  /external/v8/src/
jsregexp.cc 638 // push backtrack code location
640 // backtrack code location:
646 // <push affected registers on backtrack stack>
648 // push backtrack code location
650 // backtrack code location:
652 // <pop backtrack location from stack and go to it>
659 // <pop backtrack location from stack and go to it>
685 // then need to backtrack to a point where it can match "foo". The naive
705 // current position offset, an optional backtrack code location on the top of
706 // the virtualized backtrack stack and some register changes. When a node i
2467 Label* backtrack = trace->backtrack(); local
    [all...]
jsregexp.h 1283 Label* backtrack() { return backtrack_; } function in class:v8::internal::Trace
    [all...]
  /external/v8/test/mjsunit/
regexp-UC16.js 39 "backref-UC16-backtrack");
regexp.js 327 assertTrue(/x(?:...|(...))\1x/i.test("xabcABCx"), "backref-ASCII-backtrack");
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
debug.rb 217 def backtrack method in class:ANTLR3.Debug.ParserEvents
464 # any backtrack), this informs the debugger that stream should be
479 def backtrack( level ) method in class:ANTLR3.Debug.EventListener
685 :add_child, :backtrack, :become_root, :begin_backtrack,
recognizers.rb 839 def backtrack method in class:ANTLR3
854 backtrack { send name }
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/template-output/
template-output.rb 235 backtrack=true;
  /external/v8/test/cctest/
test-regexp.cc 886 Label backtrack; local
890 m.PushBacktrack(&backtrack);
893 m.Bind(&backtrack);
1139 Label backtrack; local
    [all...]
  /external/webkit/Source/JavaScriptCore/yarr/
YarrJIT.cpp 945 // If we have a stack offset backtrack destination, use it directly
950 // If we have a backtrack label, connect the datalabel to it directly.
    [all...]
YarrInterpreter.cpp 72 static inline void appendParenthesesDisjunctionContext(BackTrackInfoParentheses* backTrack, ParenthesesDisjunctionContext* context)
74 context->next = backTrack->lastContext;
75 backTrack->lastContext = context;
76 ++backTrack->matchAmount;
79 static inline void popParenthesesDisjunctionContext(BackTrackInfoParentheses* backTrack)
81 ASSERT(backTrack->matchAmount);
82 ASSERT(backTrack->lastContext);
83 backTrack->lastContext = backTrack->lastContext->next;
84 --backTrack->matchAmount
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
ANTLRv3.g 357 options {backtrack=true;}
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLRv3.g 361 options {backtrack=true;}
TreeToNFAConverter.g 797 options { backtrack = true; }
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/languages/
en.stg 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/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
construction.rb 307 options { backtrack=true; k=1; }
  /external/regex-re2/
Makefile 117 obj/re2/testing/backtrack.o\

Completed in 427 milliseconds

1 2