/external/junit/src/main/java/org/junit/experimental/categories/ |
D | Categories.java | 97 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/ |
D | SkPEGTest.cpp | 229 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/ |
D | antlr3lexer.h | 163 void (*matchAny) (struct ANTLR3_LEXER_struct * lexer); member
|
D | antlr3baserecognizer.h | 125 void (*matchAny) (struct ANTLR3_BASE_RECOGNIZER_struct * recognizer); member
|
/external/antlr/runtime/ObjC/Framework/ |
D | TreeParser.h | 66 - (void) matchAny:(id<IntStream>)ignore;
|
D | Lexer.h | 71 - (void) matchAny;
|
D | BaseRecognizer.h | 105 - (void) matchAny:(id<IntStream>)anInput;
|
D | TreeParser.m | 119 - (void) matchAny:(id<IntStream>)ignore
|
D | Lexer.m | 247 - (void) matchAny
|
/external/antlr/runtime/C/src/ |
D | antlr3lexer.c | 52 static void matchAny (pANTLR3_LEXER lexer); 139 lexer->matchAny = matchAny; in antlr3LexerNew() 850 matchAny (pANTLR3_LEXER lexer) in matchAny() function
|
D | antlr3baserecognizer.c | 55 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/ |
D | antlr3lexer.hpp | 211 void matchAny();
|
D | antlr3baserecognizer.hpp | 109 void matchAny();
|
D | antlr3parser.inl | 331 return this->get_rec()->matchAny();
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/ |
D | TreeParser.js | 53 matchAny: function(ignore) { // ignore stream, copy of this.input method
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | TreeParser.java | 105 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/ |
D | Lexer.java | 196 public void matchAny() { in matchAny() method in Lexer
|
D | BaseRecognizer.java | 120 public void matchAny(IntStream input) { in matchAny() method in BaseRecognizer
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/ |
D | Lexer.js | 157 matchAny: function() {
|
D | BaseRecognizer.js | 129 matchAny: function(input) { method in org.antlr.runtime.BaseRecognizer
|
/external/antlr/runtime/Python3/antlr3/ |
D | recognizers.py | 224 def matchAny(self): member in BaseRecognizer 1189 def matchAny(self): member in Lexer
|
/external/antlr/runtime/Python/antlr3/ |
D | recognizers.py | 225 def matchAny(self, input): member in BaseRecognizer 1214 def matchAny(self): member in Lexer
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
D | TreeParser.as | 83 public function matchAny(ignore:IntStream):void { // ignore stream, copy of this.input
|
/external/antlr/runtime/ObjC/Framework/examples/fuzzy/ |
D | Fuzzy.m | 246 [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/ |
D | Lexer.as | 173 public function matchAny():void { method in org.antlr.runtime.Lexer
|