HomeSort by relevance Sort by last modified time
    Searched refs:createToken (Results 1 - 25 of 43) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonTreeAdaptor.h 45 - (id<ANTLRToken>)createToken:(NSInteger)tokenType Text:(NSString *)text;
46 - (id<ANTLRToken>)createToken:(id<ANTLRToken>)fromToken;
ANTLRBaseTreeAdaptor.h 166 * This is a variant of createToken where the new token is derived from
173 * override this method and any other createToken variant.
175 - (id<ANTLRToken>)createToken:(NSInteger)aTType Text:(NSString *)theText;
177 - (id<ANTLRToken>)createToken:(id<ANTLRToken>)aFromToken;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
BaseTreeAdaptor.java 183 fromToken = createToken(fromToken);
192 fromToken = createToken(fromToken);
200 Token fromToken = createToken(tokenType, text);
259 * override this method and any other createToken variant.
261 public abstract Token createToken(int tokenType, String text);
268 * This is a variant of createToken where the new token is derived from
275 * override this method and any other createToken variant.
277 public abstract Token createToken(Token fromToken);
CommonTreeAdaptor.java 65 * override this method and any other createToken variant.
67 public Token createToken(int tokenType, String text) {
76 * This is a variant of createToken where the new token is derived from
83 * override this method and any other createToken variant.
85 public Token createToken(Token fromToken) {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
BaseTreeAdaptor.js 144 fromToken = this.createToken(tokenType, text);
148 fromToken = this.createToken(fromToken);
155 fromToken = this.createToken(fromToken);
CommonTreeAdaptor.js 40 * override this method and any other createToken variant.
47 * This is a variant of createToken where the new token is derived from
54 * override this method and any other createToken variant.
56 createToken: function(fromToken) {
  /external/apache-http/src/org/apache/http/message/
BasicTokenIterator.java 195 this.currentToken = createToken(this.currentHeader, start, end);
220 protected String createToken(String value, int start, int end) {
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBaseTreeAdaptor.h 150 * This is a variant of createToken where the new token is derived from
157 * override this method and any other createToken variant.
159 - (id<ANTLRToken>)createToken:(NSInteger)aTType Text:(NSString *)theText;
161 - (id<ANTLRToken>)createToken:(id<ANTLRToken>)aFromToken;
ANTLRCommonTreeAdaptor.h 43 - (id<ANTLRToken>)createToken:(NSInteger)tokenType Text:(NSString *)text;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBaseTreeAdaptor.h 150 * This is a variant of createToken where the new token is derived from
157 * override this method and any other createToken variant.
159 - (id<ANTLRToken>)createToken:(NSInteger)aTType Text:(NSString *)theText;
161 - (id<ANTLRToken>)createToken:(id<ANTLRToken>)aFromToken;
ANTLRCommonTreeAdaptor.h 43 - (id<ANTLRToken>)createToken:(NSInteger)tokenType Text:(NSString *)text;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBaseTreeAdaptor.h 150 * This is a variant of createToken where the new token is derived from
157 * override this method and any other createToken variant.
159 - (id<ANTLRToken>)createToken:(NSInteger)aTType Text:(NSString *)theText;
161 - (id<ANTLRToken>)createToken:(id<ANTLRToken>)aFromToken;
ANTLRCommonTreeAdaptor.h 43 - (id<ANTLRToken>)createToken:(NSInteger)tokenType Text:(NSString *)text;
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3commontreeadaptor.c 49 static pANTLR3_COMMON_TOKEN createToken (pANTLR3_BASE_TREE_ADAPTOR adaptor, ANTLR3_UINT32 tokenType, pANTLR3_UINT8 text);
108 cta->baseAdaptor.createToken =
109 createToken;
288 * override this method and any other createToken variant.
291 createToken (pANTLR3_BASE_TREE_ADAPTOR adaptor, ANTLR3_UINT32 tokenType, pANTLR3_UINT8 text)
313 * This is a variant of createToken where the new token is derived from
320 * override this method and any other createToken variant.
antlr3basetreeadaptor.c 824 fromToken = adaptor->createToken(adaptor, tokenType, text);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTreeAdaptor.as 153 fromToken = createToken(fromToken);
219 * override this method and any other createToken variant.
230 * This is a variant of createToken where the new token is derived from
237 * override this method and any other createToken variant.
240 public function createToken(fromToken:Token):Token {
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3basetreeadaptor.h 119 pANTLR3_COMMON_TOKEN (*createToken) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, ANTLR3_UINT32 tokenType, pANTLR3_UINT8 text);
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
tree.py 433 This should invoke createToken(Token).
445 This should invoke createToken(int,String).
    [all...]
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 126 static std::unique_ptr<SystemZOperand> createToken(StringRef Str, SMLoc Loc) {
603 Operands.push_back(SystemZOperand::createToken(Name, NameLoc));
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas 215 /// This should invoke createToken(Token).
223 /// This should invoke createToken(Token).
232 /// This should invoke createToken(int,String).
651 /// override this method and any other createToken variant.
653 function CreateToken(const TokenType: Integer; const Text: String): IToken; overload;
661 /// This is a variant of createToken where the new token is derived from
668 /// override this method and any other createToken variant.
670 function CreateToken(const FromToken: IToken): IToken; overload;
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/
decentxml-1.3.jar 
  /prebuilts/tools/common/m2/repository/de/pdark/decentxml/1.3/
decentxml-1.3.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/testlibs/
httpcore-4.1.jar 
  /external/robolectric/lib/main/
httpcore-4.0.1.jar 
  /external/smack/asmack-master/lib/
httpcore-4.1.4.jar 

Completed in 1204 milliseconds

1 2