Home
last modified time | relevance | path

Searched refs:greedy (Results 1 – 25 of 73) sorted by relevance

123

/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
DFuzzy.g10 : 'return' (options {greedy=false;}:.)* ';'
38 : '/*' (options {greedy=false;} : . )* '*/'
43 : '//' (options {greedy=false;} : . )* '\n'
48 : '"' (options {greedy=false;}: ESC | .)* '"'
52 : '\'' (options {greedy=false;}: ESC | .)* '\''
DFuzzy.m213 // Fuzzy.g:10:2: ( 'return' ( options {greedy=false; } : . )* ';' ) // ruleBlockSingleAlt
214 // Fuzzy.g:10:4: 'return' ( options {greedy=false; } : . )* ';' // alt
1166 // Fuzzy.g:38:5: ( '/*' ( options {greedy=false; } : . )* '*/' ) // ruleBlockSingleAlt
1167 // Fuzzy.g:38:9: '/*' ( options {greedy=false; } : . )* '*/' // alt
1245 // Fuzzy.g:43:5: ( '//' ( options {greedy=false; } : . )* '\\n' ) // ruleBlockSingleAlt
1246 // Fuzzy.g:43:9: '//' ( options {greedy=false; } : . )* '\\n' // alt
1315 // Fuzzy.g:48:2: ( '\"' ( options {greedy=false; } : ESC | . )* '\"' ) // ruleBlockSingleAlt
1316 // Fuzzy.g:48:4: '\"' ( options {greedy=false; } : ESC | . )* '\"' // alt
1405 … // Fuzzy.g:52:2: ( '\\'' ( options {greedy=false; } : ESC | . )* '\\'' ) // ruleBlockSingleAlt
1406 // Fuzzy.g:52:4: '\\'' ( options {greedy=false; } : ESC | . )* '\\'' // alt
/external/antlr/antlr-3.4/runtime/Python/tests/
Dt019lexer.g13 : 'return' (options {greedy=false;}:.)* ';'
22 : '/*' (options {greedy=false;} : . )* '*/'
26 : '"' (options {greedy=false;}: ESC | .)* '"'
30 : '\'' (options {greedy=false;}: ESC | .)* '\''
Dt020fuzzyLexer.g21 : 'return' (options {greedy=false;}:.)* ';'
49 : '/*' (options {greedy=false;} : . )* '*/'
54 : '//' (options {greedy=false;} : . )* '\n'
59 : '"' (options {greedy=false;}: ESC | .)* '"'
63 : '\'' (options {greedy=false;}: ESC | .)* '\''
Dt012lexerXMLLexer.g44 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/JavaScript/tests/functional/
Dt019lexer.g13 : 'return' (options {greedy=false;}:.)* ';'
22 : '/*' (options {greedy=false;} : . )* '*/'
26 : '"' (options {greedy=false;}: ESC | .)* '"'
30 : '\'' (options {greedy=false;}: ESC | .)* '\''
Dt020fuzzy.g20 : 'return' (options {greedy=false;}:.)* ';'
48 : '/*' (options {greedy=false;} : . )* '*/'
53 : '//' (options {greedy=false;} : . )* '\n'
58 : '"' (options {greedy=false;}: ESC | .)* '"'
62 : '\'' (options {greedy=false;}: ESC | .)* '\''
Dt012lexerXML.g39 fragment INTERNAL_DTD : '[' (options {greedy=false;} : .)* ']' ;
93 : '<!--' (options {greedy=false;} : .)* '-->'
97 : '<![CDATA[' (options {greedy=false;} : .)* ']]>'
110 ( options {greedy=true;} : LETTER | '0'..'9' | '.' | '-' | '_' | ':' )*
DPython.g100 : 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/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
DStGUnit.g140 ( options {greedy=false;}
152 ( options {greedy=false;}
166 ( options {greedy=false; k=3;}
/external/llvm/test/CodeGen/X86/
Dregalloc-spill-at-ehpad.ll1 ; RUN: llc -regalloc=greedy -mtriple=x86_64-pc-windows-msvc < %s -o - | FileCheck %s
3 ; This test checks for proper handling of a condition where the greedy register
Dragreedy-last-chance-recoloring.ll1 ; RUN: llc -regalloc=greedy -relocation-model=pic < %s 2>&1 | FileCheck %s
7 ; XXX: not llc -regalloc=greedy -relocation-model=pic -lcr-max-depth=0 < %s 2>&1 | FileCheck %s --…
10 ; XXX: not llc -regalloc=greedy -relocation-model=pic -lcr-max-interf=1 < %s 2>&1 | FileCheck %s -…
13 ; RUN: llc -regalloc=greedy -relocation-model=pic -lcr-max-interf=1 -lcr-max-depth=0 -exhaustive-re…
Dconstant-pool-remat-0.ll3 ; RUN: llc < %s -mtriple=x86_64-linux -regalloc=greedy | FileCheck %s
Dinline-asm-error.ll3 ; RUN: not llc -march x86 -regalloc=greedy < %s 2> %t3
Dins_split_regalloc.ll1 ; RUN: llc -O1 -regalloc=greedy -mtriple=x86_64-apple-macosx -march x86-64 < %s -o - | FileCheck %s
D2008-09-18-inline-asm-2.ll3 ; RUN: llc < %s -march=x86 -regalloc=greedy -no-integrated-as | FileCheck %s
/external/swiftshader/third_party/LLVM/test/CodeGen/ARM/
Dstr_pre-2.ll4 ; The greedy register allocator uses a single CSR here, invalidating the test.
Dcrash-greedy.ll1 ; RUN: llc < %s -regalloc=greedy -mcpu=cortex-a8 -relocation-model=pic -disable-fp-elim -verify-mac…
3 ; ARM tests that crash or fail with the greedy register allocator.
/external/swiftshader/third_party/LLVM/test/CodeGen/Blackfin/
D2009-08-04-LowerExtract-Live.ll2 ; RUN: llc < %s -march=bfin -join-liveintervals=0 -verify-machineinstrs -regalloc=greedy
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
Dconstant-pool-remat-0.ll2 ; RUN: llc < %s -mtriple=x86_64-linux -regalloc=greedy | FileCheck %s
Dinline-asm-error.ll3 ; RUN: not llc -march x86 -regalloc=greedy < %s 2> %t3
D2008-09-18-inline-asm-2.ll4 ; RUN: llc < %s -march=x86 -regalloc=greedy | FileCheck %s
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/antlr3/
DTLexer.g45 | '/*' ( options {greedy=false;} : . )* '*/' {skip();}
/external/llvm/test/CodeGen/AArch64/GlobalISel/
Darm64-regbankselect.mir2 # RUN: llc -O0 -run-pass=regbankselect -global-isel %s -regbankselect-greedy -o - 2>&1 | FileCheck …
239 # Check that the greedy mode is able to switch the
284 # Check that the greedy mode is able to switch the
/external/llvm/test/CodeGen/ARM/
Dcrash-greedy.ll1 ; RUN: llc < %s -regalloc=greedy -mcpu=cortex-a8 -relocation-model=pic -disable-fp-elim -verify-mac…
3 ; ARM tests that crash or fail with the greedy register allocator.

123