/external/pdfium/xfa/fxfa/fm2js/ |
D | cxfa_fmlexer.cpp | 170 m_token = pdfium::MakeUnique<CXFA_FMToken>(m_current_line); in NextToken() 180 m_token->m_line_num = m_current_line; in NextToken() 190 m_token->m_type = TOKstring; in NextToken() 192 return std::move(m_token); in NextToken() 203 m_token->m_type = TOKnumber; in NextToken() 205 return std::move(m_token); in NextToken() 209 m_token->m_type = TOKassign; in NextToken() 210 return std::move(m_token); in NextToken() 218 m_token->m_type = TOKeq; in NextToken() 221 m_token->m_type = TOKassign; in NextToken() [all …]
|
D | cxfa_fmparser.cpp | 26 m_token = m_lexer->NextToken(); in CXFA_FMParser() 44 m_token = m_lexer->NextToken(); in NextToken() 45 while (!HasError() && m_token->m_type == TOKreserver) in NextToken() 46 m_token = m_lexer->NextToken(); in NextToken() 54 if (m_token->m_type != op) { in CheckThenNext() 74 if (m_token->m_type == TOKeof || m_token->m_type == TOKendfunc || in ParseTopExpression() 75 m_token->m_type == TOKendif || m_token->m_type == TOKelseif || in ParseTopExpression() 76 m_token->m_type == TOKelse || m_token->m_type == TOKreserver) { in ParseTopExpression() 80 expr = m_token->m_type == TOKfunc ? ParseFunction() : ParseExpression(); in ParseTopExpression() 98 uint32_t line = m_token->m_line_num; in ParseFunction() [all …]
|
D | cxfa_fmlexer.h | 123 m_token.reset(); in RaiseError() 130 std::unique_ptr<CXFA_FMToken> m_token; variable
|
D | cxfa_fmparser.h | 60 std::unique_ptr<CXFA_FMToken> m_token; variable
|
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
D | XPathParser.java | 54 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 …]
|
D | Lexer.java | 454 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/ |
D | gluVarTypeUtil.cpp | 35 , 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()
|
D | gluVarTypeUtil.hpp | 56 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/ |
D | OptsParser.java | 1050 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/ |
D | Types.java | 650 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/ |
D | antlr3commontree.inl | 9 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();
|
D | antlr3commontree.hpp | 73 CommonTokenType* m_token; member in CommonTree
|
D | antlr3exception.hpp | 89 const TokenType* m_token; member in ANTLR_ExceptionBase
|
D | antlr3recognizersharedstate.hpp | 163 CommonTokenType m_token; member in RecognizerSharedState
|
D | antlr3exception.inl | 9 m_token = NULL; 39 return m_token; 114 m_token = token;
|
D | antlr3recognizersharedstate.inl | 96 return &m_token; 215 m_token = *tok;
|
/external/v8/src/inspector/ |
D | v8-inspector-impl.cc | 414 : m_isolate(isolate), m_token(token) {} in TerminateTask() 419 v8::base::LockGuard<v8::base::Mutex> lock(&m_token->m_mutex); in Run() 420 if (m_token->m_canceled) return; in Run() 426 std::shared_ptr<CancelToken> m_token; member in v8_inspector::V8InspectorImpl::EvaluateScope::TerminateTask
|