Searched refs:match (Results 1 - 25 of 2033) sorted by path

1234567891011>>

/external/ant-glob/src/org/apache/tools/ant/types/selectors/
H A DSelectorUtils.java70 * @param pattern The pattern to match against. Must not be
72 * @param str The path to match, as a String. Must not be
90 * @param pattern The pattern to match against. Must not be
92 * @param str The path to match, as a String. Must not be
125 * @param patDirs The tokenized pattern to match against. Must not be
127 * @param strDirs The tokenized path to match. Must not be
148 if (!match(patDir, strDirs[strIdxStart], isCaseSensitive)) {
179 * @param pattern The pattern to match against. Must not be
181 * @param str The path to match, as a String. Must not be
200 * @param pattern The pattern to match agains
339 public static boolean match(String pattern, String str) { method in class:SelectorUtils
360 public static boolean match(String pattern, String str, method in class:SelectorUtils
[all...]
/external/antlr/antlr-3.4/gunit-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
H A DGUnitExecuteMojo.java141 boolean match = ANTLR_GROUP_ID.equals( artifact.getGroupId() )
143 if ( match ) {
195 // otherwise, lets make sure they match...
200 " which did not match Antlr version used by plugin [" + pluginAntlrVersion.toString() + "]"
221 " which did not match Antlr version used by plugin [" + pluginAntlrVersion.toString() + "]"
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as65 //System.out.println("match "+((TokenStream)input).LT(1));
143 * To get out of recovery mode, the parser must successfully match
150 * 5. next match() will reset errorRecovery mode
257 msg = "required (...)+ loop did not match anything at input "+
281 * an error and next valid token match
327 * token that the match() routine could not recover from.
419 * with the successful match exits errorRecovery mode).
533 * and LA(2) as if we were doing a normal match(), which advances the
546 * and it will be trying to match the ')' at this point in the
551 * match() wil
[all...]
H A DLexer.as32 * uses simplified match() and error recovery mechanisms in the interest
62 /** Return a token from this source; i.e., match a token on the char
92 // match() routine has already called recover()
177 public function match(c:int):void { function
258 msg = "required (...)+ loop did not match anything at character "+getCharErrorDisplay(e.c);
298 /** Lexers can normally match any char in it's vocabulary after matching
H A DRecognizerSharedState.as33 * has failed to match. Reset to false upon valid token match.
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3baserecognizer.h105 /// match is not found and the default implementation will also
119 void * (*match) (struct ANTLR3_BASE_RECOGNIZER_struct * recognizer, member in struct:ANTLR3_BASE_RECOGNIZER_struct
155 * To get out of recovery mode, the parser must successfully match
162 * 5. next match() will reset errorRecovery mode
175 /// an error and next valid token match
184 * be from a mismatched token that the (*match)() could not recover from.
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3baserecognizer.c54 static void * match (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow);
169 recognizer->match = match;
415 match( pANTLR3_BASE_RECOGNIZER recognizer, function
443 ANTLR3_FPRINTF(stderr, "Base recognizer function 'match' called by unknown parser type - provide override for this function\n");
459 recognizer->state->failed = ANTLR3_FALSE; // The match was a success
709 /// To get out of recovery mode, the parser must successfully match
716 /// 5. next match() will reset errorRecovery mode
853 /// with the successful match exits errorRecovery mode).
1221 ANTLR3_FPRINTF(stderr, " : cannot match t
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Tree.Tests.pas1826 // to match text--check structure only.
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas927 /// match subtrees against it.
977 /// For all subtrees that match the pattern, execute the visit action.
992 /// the pattern is malformed or the tree does not match.
995 /// If a node specifies a text arg in pattern, then that must match
1029 /// Compare t1 and t2; return true if token types/text, structure match exactly.
1030 /// The trees are examined in their entirety so that (A B) does not match
2369 raise EArgumentException.Create('parents don''t match; expected '
2373 raise EArgumentException.Create('child indexes don''t match; expected '
H A DAntlr.Runtime.pas553 /// has failed to match. Reset to false upon valid token match.
909 /// an error and next valid token match
4392 Result := 'required (...)+ loop did not match anyting at input '
5413 Result := 'required (...)+ loop did not match anything at character '
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DBaseRecognizer.java100 public Object match(IntStream input, int ttype, BitSet follow) method in class:BaseRecognizer
103 //System.out.println("match "+((TokenStream)input).LT(1));
165 * To get out of recovery mode, the parser must successfully match
172 * 5. next match() will reset errorRecovery mode
278 msg = "required (...)+ loop did not match anything at input "+
302 * an error and next valid token match
351 * token that the match() routine could not recover from.
443 * with the successful match exits errorRecovery mode).
565 * and LA(2) as if we were doing a normal match(), which advances the
578 * and it will be trying to match th
[all...]
H A DLexer.java32 * uses simplified match() and error recovery mechanisms in the interest
69 /** Return a token from this source; i.e., match a token on the char
104 // match() routine has already called recover()
168 public void match(String s) throws MismatchedTokenException { method in class:Lexer
191 public void match(int c) throws MismatchedTokenException { method in class:Lexer
284 msg = "required (...)+ loop did not match anything at character "+getCharErrorDisplay(e.c);
324 /** Lexers can normally match any char in it's vocabulary after matching
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/
H A Dantlr.js179 m=ua.match(/AppleWebKit\/([^\s]*)/);
187 m=ua.match(/NokiaN[^\/]*/);
193 m=ua.match(/AdobeAIR\/([^\s]*)/);
202 m=ua.match(/Opera[\s\/]([^\s]*)/);
205 m=ua.match(/Opera Mini[^;]*/);
210 m=ua.match(/MSIE\s([^;]*)/);
214 m=ua.match(/Gecko\/([^\s]*)/);
217 m=ua.match(/rv:([^\s\)]*)/);
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DBaseRecognizer.js103 * @param {org.antlr.runtime.IntStream} input input stream to match against.
104 * @param {Number} ttype input type to match.
109 match: function(input, ttype, follow) {
127 * @param {org.antlr.runtime.IntStream} input input stream to match against.
137 * @param {org.antlr.runtime.IntStream} input input stream to match against.
148 * @param {org.antlr.runtime.IntStream} input input stream to match against.
187 * @param {org.antlr.runtime.IntStream} input input stream to match against.
188 * @param {Number} ttype input type to match.
205 * To get out of recovery mode, the parser must successfully match
212 * <li>next match() wil
[all...]
H A DLexer.js3 * uses simplified match() and error recovery mechanisms in the interest
34 /** Return a token from this source; i.e., match a token on the char
123 match: function(s) {
229 msg = "required (...)+ loop did not match anything at character "+this.getCharErrorDisplay(e.c);
266 /** Lexers can normally match any char in it's vocabulary after matching
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRBaseRecognizer.h113 - (id) match:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRBaseRecognizer.h113 - (id) match:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRBaseRecognizer.h113 - (id) match:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DACBTree.h89 - (NSInteger)searchnode:(id)key match:(BOOL)match;
H A DANTLRBaseRecognizer.h105 - (id) match:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
H A DSimpleCParser.m457 [self match:input TokenType:11 Follow:FOLLOW_11_in_declaration62];
538 [self match:input TokenType:11 Follow:FOLLOW_11_in_variable103];
572 [self match:input TokenType:ID Follow:FOLLOW_ID_in_declarator122];
622 ID3=(ANTLRCommonToken *)[self match:input TokenType:ID Follow:FOLLOW_ID_in_functionHeader153];
624 [self match:input TokenType:7 Follow:FOLLOW_7_in_functionHeader155];
657 [self match:input TokenType:10 Follow:FOLLOW_10_in_functionHeader163];
683 [self match:input TokenType:8 Follow:FOLLOW_8_in_functionHeader173];
810 [self match:input TokenType:19 Follow:FOLLOW_19_in_block286];
880 [self match:input TokenType:20 Follow:FOLLOW_20_in_block326];
987 [self match
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
H A DCombinedParser.m183 [self match:input TokenType:ID Follow:FOLLOW_ID_in_identifier35]; /* element() */
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
H A DTParser.m244 [self match:input TokenType:ID Follow:FOLLOW_ID_in_identifier66];
296 [self match:input TokenType:7 Follow:FOLLOW_7_in_enumAsKeyword89];
333 [self match:input TokenType:7 Follow:FOLLOW_7_in_enumAsID100];

Completed in 9031 milliseconds

1234567891011>>