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

1 2 3 45 6 7

  /system/core/adb/
adb.h 266 atransport *acquire_one_transport(int state, transport_type ttype, const char* serial, char **error_out);
465 int handle_host_request(char *service, transport_type ttype, char* serial, int reply_fd, asocket *s);
sockets.c 643 transport_type ttype = kTransportAny; local
700 ttype = kTransportUsb;
703 ttype = kTransportLocal;
706 ttype = kTransportAny;
720 if(handle_host_request(service, ttype, serial, s->peer->fd, s) == 0) {
adb.c 1159 int handle_host_request(char *service, transport_type ttype, char* serial, int reply_fd, asocket *s)
    [all...]
transport.c 741 atransport *acquire_one_transport(int state, transport_type ttype, const char* serial, char** error_out)
766 if (ttype == kTransportUsb && t->type == kTransportUsb) {
775 } else if (ttype == kTransportLocal && t->type == kTransportLocal) {
784 } else if (ttype == kTransportAny) {
  /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);
  /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/tool/src/main/java/org/antlr/tool/
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/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/Java/src/main/java/org/antlr/runtime/tree/
BufferedTreeNodeStream.java 189 protected void addNavigationNode(final int ttype) {
191 if ( ttype==Token.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/netbsd/resolv/
res_send.c 295 int n, ttype, tclass; local
303 ttype = ns_get16(cp); cp += INT16SZ;
305 if (ttype == type && tclass == class &&
345 int n, ttype, tclass; local
353 ttype = ns_get16(cp); cp += INT16SZ;
355 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...]
streams.py 761 def setTokenTypeChannel(self, ttype, channel):
764 to force all tokens of type ttype to be on channel. For example,
770 self.channelOverrideMap[ttype] = channel
773 def discardTokenType(self, ttype):
774 self.discardSet.add(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...]
  /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/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/libsepol/src/
expand.c 3093 type_datum_t *ttype = p->type_val_to_struct[k->target_type - 1]; local
3223 type_datum_t *ttype = p->type_val_to_struct[k->target_type - 1]; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
RemoteDebugEventSocketListener.java 86 public void setType(int ttype) {
87 this.type = ttype;
  /external/opencv/cxcore/src/
cxsumpixels.cpp 919 int ttype = sdepth == CV_8U ? CV_MAKETYPE(CV_32S,cn) : dst->type; local
    [all...]

Completed in 778 milliseconds

1 2 3 45 6 7