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

1 2 34 5 6 7 8

  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTree.as 266 public function hasAncestor(ttype:int):Boolean { return getAncestor(ttype)!=null; }
269 public function getAncestor(ttype:int):Tree {
273 if ( t.type==ttype ) return t;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BaseTree.cs 379 public virtual bool HasAncestor(int ttype) {
380 return GetAncestor(ttype) != null;
384 public virtual ITree GetAncestor(int ttype) {
388 if (t.Type == ttype)
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BaseTree.cs 455 public virtual bool HasAncestor( int ttype )
457 return GetAncestor( ttype ) != null;
461 public virtual ITree GetAncestor( int ttype )
467 if ( t.Type == ttype )
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBaseTree.h 73 - (id<ANTLRTree>)getAncestor:(NSInteger)ttype;
147 - (BOOL) hasAncestor:(NSInteger) ttype;
148 - (id<ANTLRTree>)getAncestor:(NSInteger)ttype;
ANTLRTreeWizard.h 116 - (ANTLRTreeWizard *)findFirst:(id<ANTLRTree>) t Type:(NSInteger)ttype;
118 - (void) visit:(id<ANTLRTree>)t Type:(NSInteger)ttype Visitor:(ANTLRVisitor *)visitor;
122 Type:(NSInteger)ttype
ANTLRBufferedTokenStream.h 93 - (NSMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex WithType:(NSInteger)ttype;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBaseTree.h 73 - (id<ANTLRTree>)getAncestor:(NSInteger)ttype;
147 - (BOOL) hasAncestor:(NSInteger) ttype;
148 - (id<ANTLRTree>)getAncestor:(NSInteger)ttype;
ANTLRTreeWizard.h 116 - (ANTLRTreeWizard *)findFirst:(id<ANTLRTree>) t Type:(NSInteger)ttype;
118 - (void) visit:(id<ANTLRTree>)t Type:(NSInteger)ttype Visitor:(ANTLRVisitor *)visitor;
122 Type:(NSInteger)ttype
ANTLRBufferedTokenStream.h 93 - (NSMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex WithType:(NSInteger)ttype;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBaseTree.h 73 - (id<ANTLRTree>)getAncestor:(NSInteger)ttype;
147 - (BOOL) hasAncestor:(NSInteger) ttype;
148 - (id<ANTLRTree>)getAncestor:(NSInteger)ttype;
ANTLRTreeWizard.h 116 - (ANTLRTreeWizard *)findFirst:(id<ANTLRTree>) t Type:(NSInteger)ttype;
118 - (void) visit:(id<ANTLRTree>)t Type:(NSInteger)ttype Visitor:(ANTLRVisitor *)visitor;
122 Type:(NSInteger)ttype
ANTLRBufferedTokenStream.h 93 - (NSMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex WithType:(NSInteger)ttype;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBaseTree.h 75 - (id<ANTLRBaseTree>)getAncestor:(NSInteger)ttype;
151 - (BOOL) hasAncestor:(NSInteger) ttype;
152 - (id<ANTLRBaseTree>)getAncestor:(NSInteger)ttype;
ANTLRTreeWizard.h 116 - (ANTLRTreeWizard *)findFirst:(ANTLRCommonTree *) t Type:(NSInteger)ttype;
118 - (void) visit:(ANTLRCommonTree *)t Type:(NSInteger)ttype Visitor:(ANTLRVisitor *)visitor;
122 Type:(NSInteger)ttype
ANTLRBufferedTokenStream.h 96 - (AMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex WithType:(NSInteger)ttype;
  /system/core/adb/
adb.h 282 atransport *acquire_one_transport(int state, transport_type ttype, const char* serial, char **error_out);
327 int handle_forward_request(const char* service, transport_type ttype, char* serial, int reply_fd);
415 int handle_host_request(char *service, transport_type ttype, char* serial, int reply_fd, asocket *s);
  /external/checkpolicy/test/
dispol.c 66 char *stype, *ttype, *tclass; local
68 ttype = p->p_type_val_to_name[key->target_type - 1];
70 if (stype && ttype)
71 fprintf(fp, "%s %s : %s ", stype, ttype, tclass);
74 else if (ttype)
75 fprintf(fp, "%u %s : %s ", key->source_type, ttype, tclass);
365 display_id(p, fp, SYM_TYPES, ft->ttype - 1, "");
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3commontoken.h 250 void (*setType)(struct ANTLR3_COMMON_TOKEN_struct * token, ANTLR3_UINT32 ttype);
antlr3commontreenodestream.h 280 void (*addNavigationNode) (struct ANTLR3_COMMON_TREE_NODE_STREAM_struct * ctns, ANTLR3_UINT32 ttype);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
Target.java 143 public String getTokenTypeAsTargetLabel(CodeGenerator generator, int ttype) {
144 String name = generator.grammar.getTokenDisplayName(ttype);
147 return String.valueOf(ttype);
  /bootable/recovery/minadbd/
adb.h 237 atransport *acquire_one_transport(int state, transport_type ttype, const char* serial, char **error_out);
422 int handle_host_request(char *service, transport_type ttype, char* serial, int reply_fd, asocket *s);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BufferedTokenStream.cs 319 public virtual List<IToken> GetTokens(int start, int stop, int ttype) {
320 return GetTokens(start, stop, BitSet.Of(ttype));
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BufferedTokenStream.cs 364 public virtual List<IToken> GetTokens(int start, int stop, int ttype)
366 return GetTokens(start, stop, BitSet.Of(ttype));
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimTokenStream.cs 234 public IList<SlimToken> GetTokens( int start, int stop, int ttype )
236 return GetTokens( start, stop, BitSet.Of( ttype ) );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BufferedTokenStream.java 227 public List getTokens(int start, int stop, int ttype) {
228 return getTokens(start,stop,BitSet.of(ttype));

Completed in 2893 milliseconds

1 2 34 5 6 7 8