OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:matchAny
(Results
1 - 25
of
40
) sorted by null
1
2
/external/antlr/antlr-3.4/runtime/C/include/
antlr3lexer.h
163
void (*
matchAny
) (struct ANTLR3_LEXER_struct * lexer);
antlr3baserecognizer.h
125
void (*
matchAny
) (struct ANTLR3_BASE_RECOGNIZER_struct * recognizer);
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTreeParser.h
66
- (void)
matchAny
:(id<ANTLRIntStream>)ignore;
ANTLRLexer.h
71
- (void)
matchAny
;
ANTLRBaseRecognizer.h
114
- (void)
matchAny
:(id<ANTLRIntStream>)anInput;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTreeParser.h
66
- (void)
matchAny
:(id<ANTLRIntStream>)ignore;
ANTLRLexer.h
71
- (void)
matchAny
;
ANTLRBaseRecognizer.h
114
- (void)
matchAny
:(id<ANTLRIntStream>)anInput;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTreeParser.h
66
- (void)
matchAny
:(id<ANTLRIntStream>)ignore;
ANTLRLexer.h
71
- (void)
matchAny
;
ANTLRBaseRecognizer.h
114
- (void)
matchAny
:(id<ANTLRIntStream>)anInput;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeParser.h
66
- (void)
matchAny
:(id<ANTLRIntStream>)ignore;
ANTLRLexer.h
71
- (void)
matchAny
;
ANTLRBaseRecognizer.h
106
- (void)
matchAny
:(id<ANTLRIntStream>)anInput;
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeParser.as
83
public function
matchAny
(ignore:IntStream):void { // ignore stream, copy of this.input
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
TreeParser.js
53
matchAny
: function(ignore) { // ignore stream, copy of this.input
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
Lexer.as
173
public function
matchAny
():void {
/external/antlr/antlr-3.4/runtime/C/src/
antlr3lexer.c
52
static void
matchAny
(pANTLR3_LEXER lexer);
139
lexer->
matchAny
=
matchAny
;
849
matchAny
(pANTLR3_LEXER lexer)
antlr3baserecognizer.c
55
static void
matchAny
(pANTLR3_BASE_RECOGNIZER recognizer);
170
recognizer->
matchAny
=
matchAny
;
489
matchAny
(pANTLR3_BASE_RECOGNIZER recognizer)
515
ANTLR3_FPRINTF(stderr, "Base recognizer function '
matchAny
' called by unknown parser type - provide override for this function\n");
[
all
...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
Lexer.java
187
public void
matchAny
() {
BaseRecognizer.java
120
public void
matchAny
(IntStream input) {
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeParser.java
100
public void
matchAny
(IntStream ignore) { // ignore stream, copy of input
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
Lexer.js
157
matchAny
: function() {
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
Fuzzy.m
235
[self
matchAny
]; if ( state.failed ) return ;
1196
[self
matchAny
]; if ( state.failed ) return ;
1267
[self
matchAny
]; if ( state.failed ) return ;
[
all
...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/
Fuzzy.m
491
[self
matchAny
]; if ( state.failed == YES ) return ;
[
all
...]
Completed in 116 milliseconds
1
2