HomeSort by relevance Sort by last modified time
    Searched refs:ExpectedToken (Results 1 - 7 of 7) sorted by null

  /external/smali/smali/src/test/antlr3/org/jf/smali/
expectedTokensTestGrammar.g 83 public static class ExpectedToken {
87 public ExpectedToken(String tokenName, String tokenText) {
92 public ExpectedToken(String tokenName) {
98 private final ArrayList<ExpectedToken> expectedTokens = new ArrayList<ExpectedToken>();
100 public List<ExpectedToken> getExpectedTokens() {
148 expectedTokens.add(new ExpectedToken($TOKEN_NAME.getText(), $STRING_LITERAL.getText()));
152 expectedTokens.add(new ExpectedToken($TOKEN_NAME.getText()));
  /external/webkit/Source/WebKit/chromium/tests/
IDBKeyPathTest.cpp 38 IDBKeyPathElement ExpectedToken(const String& identifier, bool isIndexed, int index)
76 expected.append(ExpectedToken("foo", false, 0));
77 expected.append(ExpectedToken("bar", false, 0));
78 expected.append(ExpectedToken("zoo", false, 0));
86 expected.append(ExpectedToken("a", false, 0));
87 expected.append(ExpectedToken(String(), true, 34));
88 expected.append(ExpectedToken(String(), true, 20));
89 expected.append(ExpectedToken("foo", false, 0));
90 expected.append(ExpectedToken(String(), true, 2));
91 expected.append(ExpectedToken("bar", false, 0))
    [all...]
  /external/smali/smali/src/test/java/
LexerTest.java 35 import static org.jf.smali.expectedTokensTestGrammarParser.ExpectedToken;
150 List<ExpectedToken> expectedTokens = expectedTokensParser.getExpectedTokens();
181 ExpectedToken expectedToken = expectedTokens.get(expectedTokenIndex++);
182 if (!tokenTypesByName.containsKey(expectedToken.tokenName)) {
183 Assert.fail("Unknown token: " + expectedToken.tokenName);
185 int expectedTokenType = tokenTypesByName.get(expectedToken.tokenName);
189 expectedTokenIndex-1, expectedToken.tokenName, getTokenName(token.getType()), token.getText()));
192 if (expectedToken.tokenText != null) {
193 if (!expectedToken.tokenText.equals(token.getText()))
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTreeParser.h 59 ExpectedToken:(NSInteger) expectedTokenType
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTreeParser.h 59 ExpectedToken:(NSInteger) expectedTokenType
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTreeParser.h 59 ExpectedToken:(NSInteger) expectedTokenType
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeParser.h 59 ExpectedToken:(NSInteger) expectedTokenType

Completed in 1031 milliseconds