HomeSort by relevance Sort by last modified time
    Searched refs:ttype (Results 26 - 50 of 156) sorted by null

12 3 4 5 6 7

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRMap.h 76 - (ANTLRMapElement *)getName:(NSInteger)ttype;
79 - (void)putName:(NSString *)name TType:(NSInteger)ttype;
ANTLRBaseRecognizer.h 113 - (id) match:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow;
115 - (BOOL) mismatchIsUnwantedToken:(id<ANTLRIntStream>)anInput TokenType:(NSInteger) ttype;
139 TokenType:(NSInteger)ttype
153 - (void) consumeUntilTType:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype;
ANTLRTree.h 40 /** Is there is a node above with token type ttype? */
41 - (BOOL) hasAncestor:(NSInteger)ttype;
44 - (id<ANTLRTree>) getAncestor:(NSInteger) ttype;
ANTLRHashMap.h 88 - (ANTLRMapElement *)getNameInList:(NSInteger)ttype;
89 - (void)putNode:(NSString *)name TokenType:(NSInteger)ttype;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRMap.h 76 - (ANTLRMapElement *)getName:(NSInteger)ttype;
79 - (void)putName:(NSString *)name TType:(NSInteger)ttype;
ANTLRBaseRecognizer.h 113 - (id) match:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow;
115 - (BOOL) mismatchIsUnwantedToken:(id<ANTLRIntStream>)anInput TokenType:(NSInteger) ttype;
139 TokenType:(NSInteger)ttype
153 - (void) consumeUntilTType:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype;
ANTLRTree.h 40 /** Is there is a node above with token type ttype? */
41 - (BOOL) hasAncestor:(NSInteger)ttype;
44 - (id<ANTLRTree>) getAncestor:(NSInteger) ttype;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRMap.h 76 - (ANTLRMapElement *)getName:(NSInteger)ttype;
79 - (void)putName:(NSString *)name TType:(NSInteger)ttype;
ANTLRBaseRecognizer.h 113 - (id) match:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow;
115 - (BOOL) mismatchIsUnwantedToken:(id<ANTLRIntStream>)anInput TokenType:(NSInteger) ttype;
139 TokenType:(NSInteger)ttype
153 - (void) consumeUntilTType:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype;
ANTLRTree.h 40 /** Is there is a node above with token type ttype? */
41 - (BOOL) hasAncestor:(NSInteger)ttype;
44 - (id<ANTLRTree>) getAncestor:(NSInteger) ttype;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRMap.h 76 - (ANTLRMapElement *)getName:(NSInteger)ttype;
79 - (void)putName:(NSString *)name TType:(NSInteger)ttype;
ANTLRTree.h 46 /** Is there is a node above with token type ttype? */
47 - (BOOL) hasAncestor:(NSInteger)ttype;
50 - (id<ANTLRTree>) getAncestor:(NSInteger) ttype;
ANTLRBaseRecognizer.h 105 - (id) match:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow;
107 - (BOOL) mismatchIsUnwantedToken:(id<ANTLRIntStream>)anInput TokenType:(NSInteger) ttype;
131 TokenType:(NSInteger)ttype
145 - (void) consumeUntilTType:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype;
ANTLRDebugTreeParser.h 49 tokenType:(ANTLRTokenType)ttype
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
ObjCTarget.java 82 public String getTokenTypeAsTargetLabel(CodeGenerator generator, int ttype) {
83 String name = generator.grammar.getTokenDisplayName(ttype);
86 return String.valueOf(ttype);
90 //return super.getTokenTypeAsTargetLabel(generator, ttype);
91 //return this.getTokenTextAndTypeAsTargetLabel(generator, null, ttype);
ActionScriptTarget.java 45 int ttype) {
48 if (ttype >= 0 && ttype <= 3) {
49 return String.valueOf(ttype);
52 String name = generator.grammar.getTokenDisplayName(ttype);
56 return String.valueOf(ttype);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarAST.java 386 public GrammarAST findFirstType(int ttype) {
388 if ( this.getType()==ttype ) {
394 if ( child.getType()==ttype ) {
401 public List<GrammarAST> findAllType(int ttype) {
403 _findAllType(ttype, nodes);
407 public void _findAllType(int ttype, List<GrammarAST> nodes) {
409 if ( this.getType()==ttype ) nodes.add(this);
413 child._findAllType(ttype, nodes);
492 int ttype = child.getType(); local
493 if (ttype == ANTLRParser.REWRITES || ttype == ANTLRParser.REWRITE || ttype==ANTLRParser.ACTION)
    [all...]
GrammarSerializerFoo.java 163 int ttype = g.getTokenType(t.getText()); local
164 out.writeShort(ttype);
176 int ttype = g.getTokenType(t.getText()); local
177 out.writeShort(ttype);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BaseRecognizer.cs 117 * Match current input symbol against ttype. Attempt
131 public virtual object Match(IIntStream input, int ttype, BitSet follow) {
134 if (input.LA(1) == ttype) {
144 matchedSymbol = RecoverFromMismatchedToken(input, ttype, follow);
155 public virtual bool MismatchIsUnwantedToken(IIntStream input, int ttype) {
156 return input.LA(2) == ttype;
599 * ttype then it is ok to "insert" the missing token, else throw
616 protected virtual object RecoverFromMismatchedToken(IIntStream input, int ttype, BitSet follow) {
619 if (MismatchIsUnwantedToken(input, ttype)) {
620 e = new UnwantedTokenException(ttype, input, TokenNames)
    [all...]
LegacyCommonTokenStream.cs 203 * to force all tokens of type ttype to be on channel. For example,
209 public virtual void SetTokenTypeChannel(int ttype, int channel) {
213 channelOverrideMap[ttype] = channel;
216 public virtual void DiscardTokenType(int ttype) {
220 discardSet.Add(ttype, ttype);
276 public virtual IList<IToken> GetTokens(int start, int stop, int ttype) {
277 return GetTokens(start, stop, BitSet.Of(ttype));
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BaseRecognizer.cs 127 * Match current input symbol against ttype. Attempt
141 public virtual object Match( IIntStream input, int ttype, BitSet follow )
145 if ( input.LA( 1 ) == ttype )
157 matchedSymbol = RecoverFromMismatchedToken( input, ttype, follow );
169 public virtual bool MismatchIsUnwantedToken( IIntStream input, int ttype )
171 return input.LA( 2 ) == ttype;
678 * ttype then it is ok to "insert" the missing token, else throw
695 protected virtual object RecoverFromMismatchedToken( IIntStream input, int ttype, BitSet follow )
699 if ( MismatchIsUnwantedToken( input, ttype ) )
701 e = new UnwantedTokenException( ttype, input, TokenNames )
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
SerializedGrammar.java 78 int ttype; field in class:SerializedGrammar.TokenRef
79 public TokenRef(int ttype) { this.ttype = ttype; }
80 public String toString() { return String.valueOf(ttype); }
153 int ttype = in.readShort(); local
154 alt.add(new TokenRef(ttype));
155 //System.out.println("read token "+gr.getTokenDisplayName(ttype));
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
CommonTokenStream.pm 140 my ($self, $ttype, $channel) = @_;
146 $self->channel_override_map->{$ttype} = $channel;
150 my ($self, $ttype) = @_;
156 $self->discard_set->{$ttype} = 1;
180 my $ttype = $args->{ttype};
181 $types = ANTLR::Runtime::BitSet->of($ttype);
  /external/libsepol/src/
assertion.c 33 unsigned int stype, unsigned int ttype,
42 avkey.target_type = ttype + 1;
65 p->p_type_val_to_name[ttype],
72 p->p_type_val_to_name[ttype],
  /system/core/adb/
commandline.c 40 static int do_cmd(transport_type ttype, char* serial, char *cmd, ...);
357 static void format_host_command(char* buffer, size_t buflen, const char* command, transport_type ttype, const char* serial)
363 if (ttype == kTransportUsb)
365 else if (ttype == kTransportLocal)
449 static void status_window(transport_type ttype, const char* serial)
465 format_host_command(command, sizeof command, "get-state", ttype, serial);
916 transport_type ttype = kTransportAny; local
984 ttype = kTransportUsb;
986 ttype = kTransportLocal;
995 adb_set_transport(ttype, serial)
    [all...]

Completed in 1048 milliseconds

12 3 4 5 6 7