HomeSort by relevance Sort by last modified time
    Searched full:greedy (Results 1 - 25 of 159) sorted by null

1 2 3 4 5 6 7

  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t019lexer.g 13 : 'return' (options {greedy=false;}:.)* ';'
22 : '/*' (options {greedy=false;} : . )* '*/'
26 : '"' (options {greedy=false;}: ESC | .)* '"'
30 : '\'' (options {greedy=false;}: ESC | .)* '\''
t020fuzzy.g 20 : 'return' (options {greedy=false;}:.)* ';'
48 : '/*' (options {greedy=false;} : . )* '*/'
53 : '//' (options {greedy=false;} : . )* '\n'
58 : '"' (options {greedy=false;}: ESC | .)* '"'
62 : '\'' (options {greedy=false;}: ESC | .)* '\''
t012lexerXML.g 39 fragment INTERNAL_DTD : '[' (options {greedy=false;} : .)* ']' ;
93 : '<!--' (options {greedy=false;} : .)* '-->'
97 : '<![CDATA[' (options {greedy=false;} : .)* ']]>'
110 ( options {greedy=true;} : LETTER | '0'..'9' | '.' | '-' | '_' | ':' )*
Python.g 100 : defparameter (options {greedy=true;}:COMMA defparameter)*
120 : fpdef (options {greedy=true;}:COMMA fpdef)* (COMMA)?
129 : small_stmt (options {greedy=true;}:SEMI small_stmt)* (SEMI)? NEWLINE
311 : atom (trailer)* (options {greedy=true;}:DOUBLESTAR factor)?
326 listmaker: test ( list_for | (options {greedy=true;}:COMMA test)* ) (COMMA)?
338 : subscript (options {greedy=true;}:COMMA subscript)* (COMMA)?
512 /** Match various string types. Note that greedy=false implies '''
517 ( '\'\'\'' (options {greedy=false;}:.)* '\'\'\''
518 | '"""' (options {greedy=false;}:.)* '"""'
  /external/antlr/antlr-3.4/runtime/Python/tests/
t019lexer.g 13 : 'return' (options {greedy=false;}:.)* ';'
22 : '/*' (options {greedy=false;} : . )* '*/'
26 : '"' (options {greedy=false;}: ESC | .)* '"'
30 : '\'' (options {greedy=false;}: ESC | .)* '\''
t020fuzzyLexer.g 21 : 'return' (options {greedy=false;}:.)* ';'
49 : '/*' (options {greedy=false;} : . )* '*/'
54 : '//' (options {greedy=false;} : . )* '\n'
59 : '"' (options {greedy=false;}: ESC | .)* '"'
63 : '\'' (options {greedy=false;}: ESC | .)* '\''
t012lexerXMLLexer.g 44 fragment INTERNAL_DTD : '[' (options {greedy=false;} : .)* ']' ;
98 : '<!--' (options {greedy=false;} : .)* '-->'
102 : '<![CDATA[' (options {greedy=false;} : .)* ']]>'
115 ( options {greedy=true;} : LETTER | '0'..'9' | '.' | '-' | '_' | ':' )*
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
Fuzzy.g 10 : 'return' (options {greedy=false;}:.)* ';'
38 : '/*' (options {greedy=false;} : . )* '*/'
43 : '//' (options {greedy=false;} : . )* '\n'
48 : '"' (options {greedy=false;}: ESC | .)* '"'
52 : '\'' (options {greedy=false;}: ESC | .)* '\''
  /external/llvm/test/CodeGen/ARM/
ldrd.ll 5 ; RUN: llc < %s -mtriple=thumbv7-apple-ios -mcpu=cortex-a8 -regalloc=greedy | FileCheck %s -check-prefix=GREEDY
44 ; GREEDY: @f
45 ; GREEDY: %bb
46 ; GREEDY: ldrd
47 ; GREEDY: str
  /sdk/eclipse/features/com.android.ide.eclipse.adt.package/
p2.inf 6 requires.1.greedy=true
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
filter-mode.rb 33 : '"' (options {greedy=false;}: ESC | .)* '"'
37 : '\'' (options {greedy=false;}: ESC | .)* '\''
117 : 'return' (options {greedy=false;}:.)* ';'
153 : '/*' (options {greedy=false;} : . )* '*/'
160 : '//' (options {greedy=false;} : . )* '\n'
167 : '"' (options {greedy=false;}: ESC | .)* '"'
171 : '\'' (options {greedy=false;}: ESC | .)* '\''
xml.rb 46 fragment INTERNAL_DTD : '[' (options {greedy=false;} : .)* ']' ;
100 : '<!--' (options {greedy=false;} : .)* '-->'
104 : '<![CDATA[' (options {greedy=false;} : .)* ']]>'
117 ( options {greedy=true;} : LETTER | '0'..'9' | '.' | '-' | '_' | ':' )*
  /external/v8/test/mjsunit/regress/
regress-176.js 41 "non-zero length match with greedy ? in (?:)");
44 "non-zero length match with non-greedy ? in (?:), o forces backtrack");
47 "non-zero length match with non-greedy ? in (?:), zero length match causes backtrack");
  /external/kernel-headers/original/linux/
tegra_avp.h 29 int greedy; member in struct:tegra_avp_lib
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-105972.js 48 * The * operator is greedy, but *? is non-greedy: it will stop
64 * the string, so the non-greedy operator *? doesn't try to...
79 * the match will stop because the operator *? is non-greedy.
96 * the match will not stop since * is greedy. The match will
  /bionic/libc/kernel/common/linux/
tegra_avp.h 31 int greedy; member in struct:tegra_avp_lib
  /external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/antlr3/
TLexer.g 45 | '/*' ( options {greedy=false;} : . )* '*/' {skip();}
  /external/llvm/test/CodeGen/X86/
constant-pool-remat-0.ll 3 ; RUN: llc < %s -mtriple=x86_64-linux -regalloc=greedy | FileCheck %s
inline-asm-error.ll 3 ; RUN: not llc -march x86 -regalloc=greedy < %s 2> %t3
  /external/mockito/src/org/mockito/internal/verification/
Calls.java 46 return "Wanted invocations count (non-greedy): " + wantedCount;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
MemoryUtils.java 29 * other chips stake their claim, including GPUs, DSPs, cell radios, and any other greedy chips
  /external/protobuf/gtest/xcode/Scripts/
versiongenerate.py 43 # brackets(e.g. "[1.0.1]") between "AC_INIT(" and ")". Do not be greedy
44 # (*? is the non-greedy flag) since that would pull in everything between
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
StGUnit.g 140 ( options {greedy=false;}
152 ( options {greedy=false;}
166 ( options {greedy=false; k=3;}
  /libcore/luni/src/main/java/java/util/regex/
Pattern.java 124 * <p>Quantifiers are "greedy" by default, meaning that they will match the longest possible input
125 * sequence. There are also non-greedy quantifiers that match the shortest possible input sequence.
126 * They're same as the greedy ones but with a trailing {@code ?}:
128 * <tr> <td> *? </td> <td>Zero or more (non-greedy).</td> </tr>
129 * <tr> <td> ?? </td> <td>Zero or one (non-greedy).</td> </tr>
130 * <tr> <td> +? </td> <td>One or more (non-greedy).</td> </tr>
131 * <tr> <td> {<i>n</i>}? </td> <td>Exactly <i>n</i> (non-greedy).</td> </tr>
132 * <tr> <td> {<i>n,</i>}? </td> <td>At least <i>n</i> (non-greedy).</td> </tr>
133 * <tr> <td> {<i>n</i>,<i>m</i>}? </td> <td>At least <i>n</i> but not more than <i>m</i> (non-greedy).</td> </tr>
136 * backtracking. They're same as the greedy ones but with a trailing {@code +}
    [all...]
  /external/v8/test/mjsunit/
greedy.js 28 // Flags: --gc-greedy

Completed in 1098 milliseconds

1 2 3 4 5 6 7