HomeSort by relevance Sort by last modified time
    Searched refs:getToken (Results 76 - 100 of 202) sorted by null

1 2 34 5 6 7 8 9

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBufferedTokenStream.h 80 - (id<ANTLRToken>) getToken:(NSInteger) i;
ANTLRCommonTree.h 68 - (ANTLRCommonToken *) getToken;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBufferedTokenStream.h 83 - (id<ANTLRToken>) getToken:(NSInteger) i;
ANTLRBaseTreeAdaptor.h 122 - (id<ANTLRToken>)getToken:(ANTLRCommonTree *)t;
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
CodeGenTreeWalker.g 617 int i = ((CommonToken)$s.getToken()).getTokenIndex();
845 int i = ((CommonToken)n.getToken()).getTokenIndex();
960 ((GrammarAST)$start).getToken(),
1007 int i = ((CommonToken)r.getToken()).getTokenIndex();
1020 ((GrammarAST)($t)).getToken(),
1060 int i = ((CommonToken)$t.getToken()).getTokenIndex();
1075 int i = ((CommonToken)$t.getToken()).getTokenIndex();
1101 int i = ((CommonToken)$c.getToken()).getTokenIndex();
1109 int i = ((CommonToken)$s.getToken()).getTokenIndex();
    [all...]
ANTLRv3.g 319 $ebnf.tree.getToken().setLine(firstToken.getLine());
320 $ebnf.tree.getToken().setCharPositionInLine(firstToken.getCharPositionInLine());
402 $rewrite_tree_ebnf.tree.getToken().setLine(firstToken.getLine());
403 $rewrite_tree_ebnf.tree.getToken().setCharPositionInLine(firstToken.getCharPositionInLine());
  /external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
GAEChannelClient.java 128 @JavascriptInterface public String getToken() {
  /external/deqp/executor/
xeXMLParser.cpp 403 Token curToken = m_tokenizer.getToken();
409 curToken = m_tokenizer.getToken();
559 DE_ASSERT(m_state == STATE_ENTITY && m_tokenizer.getToken() == TOKEN_ENTITY);
xeXMLParser.hpp 94 Token getToken (void) const { return m_curToken; }
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
ANTLRv3.g 290 $ebnf.tree.getToken().setLine(firstToken.getLine());
291 $ebnf.tree.getToken().setCharPositionInLine(firstToken.getCharPositionInLine());
398 $rewrite_tree_ebnf.tree.getToken().setLine(firstToken.getLine());
399 $rewrite_tree_ebnf.tree.getToken().setCharPositionInLine(firstToken.getCharPositionInLine());
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeAdaptor.as 187 function getToken(t:Object):Token;
TreeParser.as 132 e.token = adaptor.getToken(e.node);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTreeAdaptor.java 176 public Token getToken(Object t) {
177 return adaptor.getToken(t);
  /frameworks/native/libs/binder/
IAppOpsService.cpp 105 virtual sp<IBinder> getToken(const sp<IBinder>& clientToken) {
185 sp<IBinder> token = getToken(clientToken);
  /external/chromium_org/third_party/icu/source/tools/genrb/
parse.c 102 When getToken is called, the current pointer is moved to the next slot and the
105 survive a call to getToken, ie.
109 getToken(&value, NULL, status);
110 getToken(NULL, NULL, status); bad - value is now a different string
153 getToken(ParseState* state, struct UString **tokenValue, struct UString* comment, uint32_t *linenumber, UErrorCode *status)
181 /* printf("getToken, returning %s\n", tokenNames[result]); */
224 enum ETokenType token = getToken(state, tokenValue, comment, &line, status);
581 /* create the string now - tokenValue doesn't survive a call to getToken (and therefore
613 /* create the string now - tokenValue doesn't survive a call to getToken (and therefore
822 token = getToken(state, &tokenValue, &comment, &line, status)
    [all...]
  /external/icu/icu4c/source/tools/genrb/
parse.cpp 122 When getToken is called, the current pointer is moved to the next slot and the
125 survive a call to getToken, ie.
129 getToken(&value, NULL, status);
130 getToken(NULL, NULL, status); bad - value is now a different string
173 getToken(ParseState* state, struct UString **tokenValue, struct UString* comment, uint32_t *linenumber, UErrorCode *status)
201 /* printf("getToken, returning %s\n", tokenNames[result]); */
244 enum ETokenType token = getToken(state, tokenValue, comment, &line, status);
600 /* create the string now - tokenValue doesn't survive a call to getToken (and therefore
632 /* create the string now - tokenValue doesn't survive a call to getToken (and therefore
888 token = getToken(state, &tokenValue, &comment, &line, status)
    [all...]
  /external/doclava/src/com/google/doclava/apicheck/
ApiFile.java 71 String token = tokenizer.getToken();
592 final String token = getToken(parenIsSep);
600 public String getToken() throws ApiParseException {
601 return getToken(true);
604 public String getToken(boolean parenIsSep) throws ApiParseException {
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
SoftKeyboard.java 126 mInputMethodManager.shouldOfferSwitchingToNextInputMethod(getToken());
642 private IBinder getToken() {
655 mInputMethodManager.switchToNextInputMethod(getToken(), false /* onlyCurrentIme */);
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3basetreeadaptor.h 121 pANTLR3_COMMON_TOKEN (*getToken) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * t);
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3treeparser.c 239 token = node->getToken(node);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
TreeParser.js 105 e.token = adaptor.getToken(e.node);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
AttributeScope.java 151 nameAST.getToken(),
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
OpMap.java 94 public Object getToken(int pos)
  /external/llvm/include/llvm/ADT/
StringExtras.h 121 /// getToken - This function extracts one token from source, ignoring any
127 std::pair<StringRef, StringRef> getToken(StringRef Source,
  /external/llvm/lib/Support/
LockFileManager.cpp 46 std::tie(Hostname, PIDStr) = getToken(MB->getBuffer(), " ");

Completed in 953 milliseconds

1 2 34 5 6 7 8 9