Home
last modified time | relevance | path

Searched refs:matchAny (Results 1 – 25 of 43) sorted by relevance

12

/external/junit/src/main/java/org/junit/experimental/categories/
DCategories.java97 boolean matchAny() default true; in matchAny() method
112 boolean matchAny() default true; in matchAny() method
121 public static CategoryFilter include(boolean matchAny, Class<?>... categories) { in include() argument
122 return new CategoryFilter(matchAny, categories, true, null); in include()
133 public static CategoryFilter exclude(boolean matchAny, Class<?>... categories) { in exclude() argument
134 return new CategoryFilter(true, null, matchAny, categories); in exclude()
329 return annotation == null || annotation.matchAny(); in isAnyIncluded()
339 return annotation == null || annotation.matchAny(); in isAnyExcluded()
/external/skqp/tests/
DSkPEGTest.cpp229 const auto matchAny = Any<LIT<'f', 'o', 'o'>>::Match(gTests[i].fInput); in test_AnySome() local
230 REPORTER_ASSERT(r, matchAny); in test_AnySome()
231 REPORTER_ASSERT(r, matchAny->fValues.count() == gTests[i].fCount); in test_AnySome()
/external/antlr/runtime/C/include/
Dantlr3lexer.h163 void (*matchAny) (struct ANTLR3_LEXER_struct * lexer); member
Dantlr3baserecognizer.h125 void (*matchAny) (struct ANTLR3_BASE_RECOGNIZER_struct * recognizer); member
/external/antlr/runtime/ObjC/Framework/
DTreeParser.h66 - (void) matchAny:(id<IntStream>)ignore;
DLexer.h71 - (void) matchAny;
DBaseRecognizer.h105 - (void) matchAny:(id<IntStream>)anInput;
DTreeParser.m119 - (void) matchAny:(id<IntStream>)ignore
DLexer.m247 - (void) matchAny
/external/antlr/runtime/C/src/
Dantlr3lexer.c52 static void matchAny (pANTLR3_LEXER lexer);
139 lexer->matchAny = matchAny; in antlr3LexerNew()
850 matchAny (pANTLR3_LEXER lexer) in matchAny() function
Dantlr3baserecognizer.c55 static void matchAny (pANTLR3_BASE_RECOGNIZER recognizer);
170 recognizer->matchAny = matchAny; in antlr3BaseRecognizerNew()
489 matchAny(pANTLR3_BASE_RECOGNIZER recognizer) in matchAny() function
/external/antlr/runtime/Cpp/include/
Dantlr3lexer.hpp211 void matchAny();
Dantlr3baserecognizer.hpp109 void matchAny();
Dantlr3parser.inl331 return this->get_rec()->matchAny();
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/
DTreeParser.js53 matchAny: function(ignore) { // ignore stream, copy of this.input method
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
DTreeParser.java105 public void matchAny(IntStream ignore) { // ignore stream, copy of input in matchAny() method in TreeParser
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
DLexer.java196 public void matchAny() { in matchAny() method in Lexer
DBaseRecognizer.java120 public void matchAny(IntStream input) { in matchAny() method in BaseRecognizer
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/
DLexer.js157 matchAny: function() {
DBaseRecognizer.js129 matchAny: function(input) { method in org.antlr.runtime.BaseRecognizer
/external/antlr/runtime/Python3/antlr3/
Drecognizers.py224 def matchAny(self): member in BaseRecognizer
1189 def matchAny(self): member in Lexer
/external/antlr/runtime/Python/antlr3/
Drecognizers.py225 def matchAny(self, input): member in BaseRecognizer
1214 def matchAny(self): member in Lexer
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DTreeParser.as83 public function matchAny(ignore:IntStream):void { // ignore stream, copy of this.input
/external/antlr/runtime/ObjC/Framework/examples/fuzzy/
DFuzzy.m246 [self matchAny]; if ( state.failed ) return ;
1299 [self matchAny]; if ( state.failed ) return ;
1375 [self matchAny]; if ( state.failed ) return ;
1477 [self matchAny]; if ( state.failed ) return ;
1573 [self matchAny]; if ( state.failed ) return ;
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
DLexer.as173 public function matchAny():void { method in org.antlr.runtime.Lexer

12