Home
last modified time | relevance | path

Searched refs:m_token (Results 1 – 14 of 14) sorted by relevance

/external/pdfium/xfa/fxfa/fm2js/
Dcxfa_fmparser.cpp33 m_token = m_lexer->NextToken(); in Parse()
52 m_token = m_lexer->NextToken(); in NextToken()
53 while (!HasError() && m_token.m_type == TOKreserver) in NextToken()
54 m_token = m_lexer->NextToken(); in NextToken()
62 if (m_token.m_type != op) { in CheckThenNext()
81 if (m_token.m_type == TOKeof || m_token.m_type == TOKendfunc || in ParseExpressionList()
82 m_token.m_type == TOKendif || m_token.m_type == TOKelseif || in ParseExpressionList()
83 m_token.m_type == TOKelse || m_token.m_type == TOKendwhile || in ParseExpressionList()
84 m_token.m_type == TOKendfor || m_token.m_type == TOKend || in ParseExpressionList()
85 m_token.m_type == TOKendfunc || m_token.m_type == TOKreserver) { in ParseExpressionList()
[all …]
Dcxfa_fmparser.h61 CXFA_FMToken m_token; variable
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
DXPathParser.java54 transient String m_token; field in XPathParser
131 if (null != m_token) in initXPath()
135 while (null != m_token) in initXPath()
137 extraTokens += "'" + m_token + "'"; in initXPath()
141 if (null != m_token) in initXPath()
196 if (null != m_token) in initMatchPattern()
200 while (null != m_token) in initMatchPattern()
202 extraTokens += "'" + m_token + "'"; in initMatchPattern()
206 if (null != m_token) in initMatchPattern()
264 return (m_token != null) ? (m_token.equals(s)) : (s == null); in tokenIs()
[all …]
DLexer.java454 m_processor.m_token = in resetTokenMark()
456 m_processor.m_tokenChar = m_processor.m_token.charAt(0); in resetTokenMark()
460 m_processor.m_token = null; in resetTokenMark()
509 int tok = getKeywordToken(m_processor.m_token); in recordTokenString()
/external/deqp/framework/opengl/
DgluVarTypeUtil.cpp35 , m_token (TOKEN_LAST) in VarTokenizer()
53 DE_ASSERT(m_token != TOKEN_END); in advance()
56 m_token = TOKEN_LAST; in advance()
60 m_token = TOKEN_LEFT_BRACKET; in advance()
62 m_token = TOKEN_RIGHT_BRACKET; in advance()
64 m_token = TOKEN_END; in advance()
66 m_token = TOKEN_PERIOD; in advance()
69 m_token = TOKEN_NUMBER; in advance()
75 m_token = TOKEN_IDENTIFIER; in advance()
DgluVarTypeUtil.hpp56 Token getToken (void) const { return m_token; } in getToken()
66 Token m_token; member in glu::VarTokenizer
/external/emma/core/java12/com/vladium/util/args/
DOptsParser.java1050 while (m_token != Token.EOF) in parse()
1091 switch (m_token.getID ()) in optmetadata()
1108 …throw new IllegalArgumentException ("parse error: invalid token " + m_token + ", expected " + Toke… in optmetadata()
1114 if (m_token.getID () == Token.MERGEABLE_ID) in optmetadata()
1122 if (m_token.getID () == Token.DETAILEDONLY_ID) in optmetadata()
1130 if (m_token.getID () == Token.PATTERN_ID) in optmetadata()
1143 if (m_token.getID () == Token.STRING_ID) in optmetadata()
1145 optdef.setValueMnemonic (m_token.getValue ()); in optmetadata()
1151 if (m_token.getID () == Token.REQUIRES_ID) in optmetadata()
1162 if (m_token.getID () == Token.EXCLUDES_ID) in optmetadata()
[all …]
/external/emma/core/java12/com/vladium/jcd/lib/
DTypes.java650 m_token.append (c); in returnDescriptor()
669 m_token.append ('L'); in objectType()
674 m_token.append (c); in objectType()
676 m_token.append (';'); in objectType()
682 m_token.append ('['); in arrayType()
723 m_token.append (c); in baseType()
746 m_result.add (m_token.toString ()); in newToken()
747 m_token.setLength (0); in newToken()
751 private StringBuffer m_token = new StringBuffer (); field in Types.methodDescriptorCompiler
/external/antlr/runtime/Cpp/include/
Dantlr3commontree.inl9 m_token = NULL;
21 m_token = ctree.m_token;
32 m_token = token;
43 m_token = tree->get_token();
51 return m_token;
286 clone->set_token( m_token );
325 token = m_token;
393 return m_token->getType();
450 if(m_token == NULL)
524 return m_token->getText();
Dantlr3commontree.hpp73 CommonTokenType* m_token; member in CommonTree
Dantlr3exception.hpp89 const TokenType* m_token; member in ANTLR_ExceptionBase
Dantlr3recognizersharedstate.hpp163 CommonTokenType m_token; member in RecognizerSharedState
Dantlr3exception.inl9 m_token = NULL;
39 return m_token;
114 m_token = token;
Dantlr3recognizersharedstate.inl96 return &m_token;
215 m_token = *tok;