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

1 2 3 45 6 7 8

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeParser.java 131 int ttype,
135 throw new MismatchedTreeNodeException(ttype, (TreeNodeStream)input);
BufferedTreeNodeStream.java 189 protected void addNavigationNode(final int ttype) {
191 if ( ttype==Token.DOWN ) {
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
RandomPhrase.java 201 int ttype = ttypeI.intValue(); local
202 String ttypeDisplayName = parser.getTokenDisplayName(ttype);
Grammar.java     [all...]
LeftRecursiveRuleAnalyzer.java 62 int ttype = g.getTokenType(t.getText()); local
63 tokenToPrec.put(ttype, alt);
Rule.java 326 int ttype = grammar.getTokenType(tokenName); local
327 String label = grammar.generator.getTokenTypeAsTargetLabel(ttype);
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3tokenstream.c 42 static void setTokenTypeChannel (pANTLR3_COMMON_TOKEN_STREAM cts, ANTLR3_UINT32 ttype, ANTLR3_UINT32 channel);
43 static void discardTokenType (pANTLR3_COMMON_TOKEN_STREAM cts, ANTLR3_INT32 ttype);
660 * to force all tokens of type ttype to be on channel. For example,
666 setTokenTypeChannel (pANTLR3_COMMON_TOKEN_STREAM tokenStream, ANTLR3_UINT32 ttype, ANTLR3_UINT32 channel)
676 tokenStream->channelOverrides->put(tokenStream->channelOverrides, ttype, ANTLR3_FUNC_PTR((ANTLR3_UINT32)channel + 1), NULL);
680 discardTokenType (pANTLR3_COMMON_TOKEN_STREAM tokenStream, ANTLR3_INT32 ttype)
690 tokenStream->discardSet->put(tokenStream->discardSet, ttype, ANTLR3_FUNC_PTR((ANTLR3_UINT32)ttype + 1), NULL);
antlr3commontoken.c 73 antlr3CommonTokenNew(ANTLR3_UINT32 ttype)
83 token->setType(token, ttype);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgitb.py 84 for ttype, token, start, end, line in tokenize.generate_tokens(reader):
85 if ttype == tokenize.NEWLINE: break
86 if ttype == tokenize.NAME and token not in keyword.kwlist:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgitb.py 84 for ttype, token, start, end, line in tokenize.generate_tokens(reader):
85 if ttype == tokenize.NEWLINE: break
86 if ttype == tokenize.NAME and token not in keyword.kwlist:
  /bootable/recovery/minadbd/
transport.c 597 atransport *acquire_one_transport(int state, transport_type ttype, const char* serial, char** error_out)
622 if (ttype == kTransportUsb && t->type == kTransportUsb) {
631 } else if (ttype == kTransportLocal && t->type == kTransportLocal) {
640 } else if (ttype == kTransportAny) {
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonTreeNodeStream.as 175 protected function addNavigationNode(ttype:int):void {
177 if ( ttype==TokenConstants.DOWN ) {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonTreeNodeStream.js 133 addNavigationNode: function(ttype) {
135 if ( ttype===org.antlr.runtime.Token.DOWN ) {
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
RubyTarget.java 419 public String getTokenTypeAsTargetLabel( CodeGenerator generator, int ttype )
421 String name = generator.grammar.getTokenDisplayName( ttype );
424 return generator.grammar.computeTokenNameFromLiteral( ttype, name );
  /bionic/libc/dns/resolv/
res_send.c 296 int n, ttype, tclass; local
304 ttype = ns_get16(cp); cp += INT16SZ;
306 if (ttype == type && tclass == class &&
346 int n, ttype, tclass; local
354 ttype = ns_get16(cp); cp += INT16SZ;
356 if (!res_nameinquery(tname, ttype, tclass, buf2, eom2))
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
tree.py 133 def hasAncestor(self, ttype):
138 def getAncestor(self, ttype):
889 def hasAncestor(self, ttype):
891 return self.getAncestor(ttype) is not None
893 def getAncestor(self, ttype):
897 if t.getType() == ttype:
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
CodeGenTreeWalker.g 803 int ttype=0;
806 ttype = Grammar.getCharValueFromGrammarCharLiteral($assign_c.text);
810 ttype = grammar.getTokenType($assign_c.text);
812 elements = grammar.complement(ttype);
816 int ttype=0;
823 ttype = grammar.getTokenType($assign_s.text);
825 elements = grammar.complement(ttype);
829 int ttype = grammar.getTokenType($assign_t.text);
830 elements = grammar.complement(ttype);
    [all...]
  /system/core/adb/
adb.c     [all...]
sockets.c 708 transport_type ttype = kTransportAny; local
765 ttype = kTransportUsb;
768 ttype = kTransportLocal;
771 ttype = kTransportAny;
785 if(handle_host_request(service, ttype, serial, s->peer->fd, s) == 0) {
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
hetero-nodes.rb 196 ttype, @x, @y, @z = args
197 token = ANTLR3::CommonToken.new(ttype, nil, '')
199 ttype, token, @x = args
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTrees.java 45 public V(int ttype, int x) { this.x=x; token=new CommonToken(ttype); }
46 public V(int ttype, Token t, int x) { token=t; this.x=x;}
  /external/sepolicy/tools/
sepolicy-analyze.c 347 struct type_datum *stype, *ttype, *stype2, *ttype2; local
362 ttype = policydb->type_val_to_struct[k->target_type - 1];
363 attrib1 = stype->flavor || ttype->flavor;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BufferedTreeNodeStream.cs 297 protected virtual void AddNavigationNode(int ttype) {
299 if (ttype == TokenTypes.Down) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BufferedTreeNodeStream.cs 342 protected virtual void AddNavigationNode( int ttype )
345 if ( ttype == TokenTypes.Down )
  /external/chromium_org/third_party/skia/third_party/lua/src/
luac.c 254 switch (ttype(o))
269 printf("? type=%d",ttype(o));

Completed in 1443 milliseconds

1 2 3 45 6 7 8