Searched defs:Type (Results 1 - 25 of 887) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DRemoteDebugEventSocketListener.cs97 public int Type { property in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
220 public override int Type { property in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyTree
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DBaseTree.cs119 public abstract int Type { property in class:Antlr.Runtime.Tree.BaseTree
153 if (child.Type == type)
388 if (t.Type == ttype)
H A DCommonErrorNode.cs48 stop.Type != TokenTypes.EndOfFile)) {
73 if (((IToken)stop).Type == TokenTypes.EndOfFile) {
89 public override int Type { property in class:Antlr.Runtime.Tree.CommonErrorNode
H A DCommonTree.cs172 public override int Type { property in class:Antlr.Runtime.Tree.CommonTree
177 return token.Type;
218 if (Type == TokenTypes.Invalid) {
H A DITree.cs140 int Type { property in interface:Antlr.Runtime.Tree.ITree
H A DParseTree.cs76 public override int Type { property in class:Antlr.Runtime.Tree.ParseTree
92 if (t.Type == TokenTypes.EndOfFile) {
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DClassicToken.cs60 type = oldToken.Type;
87 public int Type { property in class:Antlr.Runtime.ClassicToken
H A DCommonToken.cs87 type = oldToken.Type;
124 public int Type { property in class:Antlr.Runtime.CommonToken
H A DIToken.cs42 int Type { property in interface:Antlr.Runtime.IToken
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DRemoteDebugEventSocketListener.cs106 public int Type property in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
267 public override int Type property in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyTree
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimToken.cs66 public int Type property in struct:Antlr.Runtime.SlimToken
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DClassicToken.cs64 type = oldToken.Type;
96 public int Type property in class:Antlr.Runtime.ClassicToken
H A DCommonToken.cs94 type = oldToken.Type;
134 public int Type property in class:Antlr.Runtime.CommonToken
H A DIToken.cs45 int Type property in interface:Antlr.Runtime.IToken
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DBaseTree.cs143 public abstract int Type property in class:Antlr.Runtime.Tree.BaseTree
184 if ( child.Type == type )
467 if ( t.Type == ttype )
H A DCommonErrorNode.cs51 stop.Type != TokenTypes.EndOfFile ) )
82 if ( ( (IToken)stop ).Type == TokenTypes.EndOfFile )
104 public override int Type property in class:Antlr.Runtime.Tree.CommonErrorNode
H A DCommonTree.cs223 public override int Type property in class:Antlr.Runtime.Tree.CommonTree
230 return Token.Type;
287 if (Type == TokenTypes.Invalid)
H A DITree.cs148 int Type property in interface:Antlr.Runtime.Tree.ITree
H A DParseTree.cs88 public override int Type property in class:Antlr.Runtime.Tree.ParseTree
110 if ( t.Type == TokenTypes.EndOfFile )
/external/bluetooth/bluedroid/gki/common/
H A Dgki_common.h65 UINT8 Type; member in struct:_buffer_hdr
/external/ceres-solver/google3/
H A Djet_traits.h0 // Type traits for google3's custom MathUtil traits class. This is needed to
28 typedef ceres::Jet<T, N> Type; typedef in struct:MathLimits
32 static const Type kPosMin;
33 static const Type kPosMax;
34 static const Type kMin;
35 static const Type kMax;
36 static const Type kNegMin;
37 static const Type kNegMax;
40 static const Type kEpsilon;
41 static const Type kStdErro
[all...]
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Dtokenizer.py25 Type = tokens.TokenType variable
37 non-matched text when in the given mode. Defaults to Type.NORMAL.
48 non-matched text when in the given mode. Defaults to Type.NORMAL.
106 self.__AddToken(self._CreateToken('', Type.BLANK_LINE, line, line_number))
161 type = Type.NORMAL
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Decmalintrules.py56 Type = javascripttokens.JavaScriptTokenType variable
122 elif token.type in (Type.IDENTIFIER, Type.NORMAL):
177 'Prefer "?Type" to "Type|null": "%s"' % type, token)
187 flag.type_start_token.type != Type.DOC_START_BRACE or
188 flag.type_end_token.type != Type.DOC_END_BRACE):
190 'Type must always be surrounded by curly braces.', token)
262 if type == Type.PARAMETERS:
276 elif (type == Type
[all...]
H A Derror_fixer.py33 Type = javascripttokens.JavaScriptTokenType variable
104 if iterator.type == Type.DOC_START_BRACE or iterator.string.isspace():
123 if iterator.type == Type.DOC_END_BRACE or iterator.string.isspace():
136 semicolon_token = Token(';', Type.SEMICOLON, token.line,
209 end_quote = tokenutil.Search(token, Type.DOUBLE_QUOTE_STRING_END)
212 "'", Type.SINGLE_QUOTE_STRING_START, token.line, token.line_number)
214 "'", Type.SINGLE_QUOTE_STRING_START, end_quote.line,
227 if start_token.type != Type.DOC_START_BRACE:
236 new_token = Token('{', Type.DOC_START_BRACE, start_token.line,
243 if end_token.type != Type
[all...]
H A Dindentation.py38 Type = javascripttokens.JavaScriptTokenType variable
93 Type.START_PAREN, Type.START_PARAMETERS)
145 if token_type == Type.END_PAREN:
146 self._PopTo(Type.START_PAREN)
148 elif token_type == Type.END_PARAMETERS:
149 self._PopTo(Type.START_PARAMETERS)
151 elif token_type == Type.END_BRACKET:
152 self._PopTo(Type.START_BRACKET)
154 elif token_type == Type
[all...]

Completed in 419 milliseconds

1234567891011>>