Home
last modified time | relevance | path

Searched refs:tkType (Results 1 – 25 of 89) sorted by relevance

1234

/dports/textproc/xerces-c3/xerces-c-3.2.3/src/xercesc/util/regx/
H A DTokenFactory.cpp60 Token* TokenFactory::createToken(const Token::tokType tkType) { in createToken() argument
62 if (tkType == Token::T_EMPTY && fEmpty != 0) in createToken()
65 Token* tmpTok = new (fMemoryManager) Token(tkType, fMemoryManager); in createToken()
67 if (tkType == Token::T_EMPTY) { in createToken()
H A DCharToken.cpp32 CharToken::CharToken(const Token::tokType tkType, const XMLInt32 ch, MemoryManager* const manager) in CharToken() argument
33 : Token(tkType, manager) in CharToken()
H A DClosureToken.cpp32 ClosureToken::ClosureToken(const Token::tokType tkType, Token* const tok, MemoryManager* const mana… in ClosureToken() argument
33 : Token(tkType, manager) in ClosureToken()
H A DParenToken.cpp32 ParenToken::ParenToken(const Token::tokType tkType, in ParenToken() argument
34 : Token(tkType, manager) in ParenToken()
H A DStringToken.cpp32 StringToken::StringToken(const Token::tokType tkType, in StringToken() argument
36 : Token(tkType, manager) in StringToken()
H A DRegularExpression.hpp575 const bool reverse, const Token::tokType tkType);
695 const Token::tokType tkType) { in compileClosure() argument
721 tkType == Token::T_NONGREEDYCLOSURE); in compileClosure()
732 if (tkType == Token::T_NONGREEDYCLOSURE) { in compileClosure()
746 …childOp->setOpType(tkType == Token::T_NONGREEDYCLOSURE?Op::O_FINITE_NONGREEDYCLOSURE:Op::O_FINITE_… in compileClosure()
H A DUnionToken.cpp41 UnionToken::UnionToken(const Token::tokType tkType, MemoryManager* const manager) in UnionToken() argument
42 : Token(tkType, manager) in UnionToken()
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_dependencies/xerces-c/src/xercesc/util/regx/
H A DTokenFactory.cpp60 Token* TokenFactory::createToken(const Token::tokType tkType) { in createToken() argument
62 if (tkType == Token::T_EMPTY && fEmpty != 0) in createToken()
65 Token* tmpTok = new (fMemoryManager) Token(tkType, fMemoryManager); in createToken()
67 if (tkType == Token::T_EMPTY) { in createToken()
H A DCharToken.cpp32 CharToken::CharToken(const Token::tokType tkType, const XMLInt32 ch, MemoryManager* const manager) in CharToken() argument
33 : Token(tkType, manager) in CharToken()
H A DClosureToken.cpp32 ClosureToken::ClosureToken(const Token::tokType tkType, Token* const tok, MemoryManager* const mana… in ClosureToken() argument
33 : Token(tkType, manager) in ClosureToken()
H A DParenToken.cpp32 ParenToken::ParenToken(const Token::tokType tkType, in ParenToken() argument
34 : Token(tkType, manager) in ParenToken()
H A DStringToken.cpp32 StringToken::StringToken(const Token::tokType tkType, in StringToken() argument
36 : Token(tkType, manager) in StringToken()
H A DRegularExpression.hpp575 const bool reverse, const Token::tokType tkType);
695 const Token::tokType tkType) { in compileClosure() argument
721 tkType == Token::T_NONGREEDYCLOSURE); in compileClosure()
732 if (tkType == Token::T_NONGREEDYCLOSURE) { in compileClosure()
746 …childOp->setOpType(tkType == Token::T_NONGREEDYCLOSURE?Op::O_FINITE_NONGREEDYCLOSURE:Op::O_FINITE_… in compileClosure()
H A DUnionToken.cpp41 UnionToken::UnionToken(const Token::tokType tkType, MemoryManager* const manager) in UnionToken() argument
42 : Token(tkType, manager) in UnionToken()
/dports/lang/ghc/ghc-8.10.7/utils/haddock/haddock-api/src/Haddock/Backends/Hyperlinker/
H A DRenderer.hs91 [BacktickTok s1, tok@Token{ tkType = TkIdentifier }, BacktickTok s2]
96 , tkType = TkOperator function
98 [OpenParenTok s1, tok@Token{ tkType = TkOperator }, CloseParenTok s2]
103 , tkType = TkOperator function
121 | tkType == TkSpace = renderSpace (srcSpanStartLine tkSpan) tkValue' function
125 style = tokenStyle tkType
132 | tkType == TkSpace = renderSpace (srcSpanStartLine tkSpan) tkValue' function
138 style = tokenStyle tkType ++ concatMap (richTokenStyle (null (nodeType details))) contexts
H A DParser.hs81 -> let cppTok = T.Token { tkType = TkCpp
129 plainTok = T.Token { tkType = typ
132 spaceTok = T.Token { tkType = TkSpace
143 unkTok = T.Token { tkType = TkUnknown
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimeBodyPart.java443 int tkType; in getEncoding() local
447 tkType = tk.getType(); in getEncoding()
448 if (tkType == HeaderTokenizer.Token.EOF) in getEncoding()
450 else if (tkType == HeaderTokenizer.Token.ATOM) in getEncoding()
528 int tkType; in getContentLanguage() local
532 tkType = tk.getType(); in getContentLanguage()
533 if (tkType == HeaderTokenizer.Token.EOF) in getContentLanguage()
535 else if (tkType == HeaderTokenizer.Token.ATOM) v.add(tk.getValue()); in getContentLanguage()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimeBodyPart.java443 int tkType; in getEncoding() local
447 tkType = tk.getType(); in getEncoding()
448 if (tkType == HeaderTokenizer.Token.EOF) in getEncoding()
450 else if (tkType == HeaderTokenizer.Token.ATOM) in getEncoding()
528 int tkType; in getContentLanguage() local
532 tkType = tk.getType(); in getContentLanguage()
533 if (tkType == HeaderTokenizer.Token.EOF) in getContentLanguage()
535 else if (tkType == HeaderTokenizer.Token.ATOM) v.add(tk.getValue()); in getContentLanguage()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/reflection/emit/
H A Dsignaturehelper.cs392 TypeToken tkType; in AddOneArgTypeHelperWorker()
396 tkType = clsBuilder.TypeToken; in AddOneArgTypeHelperWorker()
400 tkType = m_module.GetTypeToken(clsArgument); in AddOneArgTypeHelperWorker()
405 InternalAddTypeToken(tkType, CorElementType.ValueType); in AddOneArgTypeHelperWorker()
409 InternalAddTypeToken(tkType, CorElementType.Class); in AddOneArgTypeHelperWorker()
415 TypeToken tkType; in AddOneArgTypeHelperWorker()
419 tkType = clsBuilder.TypeToken; in AddOneArgTypeHelperWorker()
423 tkType = m_module.GetTypeToken(clsArgument); in AddOneArgTypeHelperWorker()
428 InternalAddTypeToken(tkType, CorElementType.ValueType); in AddOneArgTypeHelperWorker()
432 InternalAddTypeToken(tkType, CorElementType.Class); in AddOneArgTypeHelperWorker()
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/FortranProject/
H A Dtokenf.cpp68 case tkType: return _("type"); in GetTokenKindString()
152 else if (m_TokenKind == tkProcedure || m_TokenKind == tkType) in TokenFlat()
186 else if (m_TokenKind == tkProcedure || m_TokenKind == tkType) in TokenFlat()
H A Dcalltree.cpp129 else if (tf->m_TokenKind == tkProcedure && tf->m_ParentTokenKind == tkType) in BuildCallTree()
296 if (tf2->m_TokenKind == tkType) in FindCalledTokens()
312 else if (tf2->m_TokenKind == tkProcedure && tf2->m_ParentTokenKind == tkType) in FindCalledTokens()
341 …okenKindMask = tkFunction | tkSubroutine | tkInterface | tkInterfaceExplicit | tkVariable | tkType; in FindTokenFromCall()
488 else if (pCTok->m_pParent->m_TokenKind == tkType) in FindCallingTokens()
/dports/java/javamail/javamail-JAVAMAIL-1_6_2/mail/src/main/java/javax/mail/internet/
H A DMimeBodyPart.java1383 int tkType; in getContentLanguage() local
1387 tkType = tk.getType(); in getContentLanguage()
1388 if (tkType == HeaderTokenizer.Token.EOF) in getContentLanguage()
1390 else if (tkType == HeaderTokenizer.Token.ATOM) in getContentLanguage()
1442 int tkType; in getEncoding() local
1446 tkType = tk.getType(); in getEncoding()
1447 if (tkType == HeaderTokenizer.Token.EOF) in getEncoding()
1449 else if (tkType == HeaderTokenizer.Token.ATOM) in getEncoding()
/dports/lang/zig/zig-0.9.0/lib/libc/include/any-windows-any/
H A Dalink.h73 …STDMETHOD (EnumCustomAttributes) (HALINKENUM hEnum, mdToken tkType, mdCustomAttribute rCustomValue… in DECLARE_INTERFACE_()
82 …STDMETHOD (EmitAssemblyCustomAttribute) (mdAssembly AssemblyID, mdToken FileToken, mdToken tkType,… in DECLARE_INTERFACE_()
114 …STDMETHOD (EnumCustomAttributes) (HALINKENUM hEnum, mdToken tkType, mdCustomAttribute rCustomValue… in DECLARE_INTERFACE_()
123 …STDMETHOD (EmitAssemblyCustomAttribute) (mdAssembly AssemblyID, mdToken FileToken, mdToken tkType,… in DECLARE_INTERFACE_()
166 …STDMETHOD (EnumCustomAttributes) (HALINKENUM hEnum, mdToken tkType, mdCustomAttribute rCustomValue… in DECLARE_INTERFACE_()
175 …STDMETHOD (EmitAssemblyCustomAttribute) (mdAssembly AssemblyID, mdToken FileToken, mdToken tkType,… in DECLARE_INTERFACE_()
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/any-windows-any/
H A Dalink.h73 …STDMETHOD (EnumCustomAttributes) (HALINKENUM hEnum, mdToken tkType, mdCustomAttribute rCustomValue… in DECLARE_INTERFACE_()
82 …STDMETHOD (EmitAssemblyCustomAttribute) (mdAssembly AssemblyID, mdToken FileToken, mdToken tkType,… in DECLARE_INTERFACE_()
114 …STDMETHOD (EnumCustomAttributes) (HALINKENUM hEnum, mdToken tkType, mdCustomAttribute rCustomValue… in DECLARE_INTERFACE_()
123 …STDMETHOD (EmitAssemblyCustomAttribute) (mdAssembly AssemblyID, mdToken FileToken, mdToken tkType,… in DECLARE_INTERFACE_()
166 …STDMETHOD (EnumCustomAttributes) (HALINKENUM hEnum, mdToken tkType, mdCustomAttribute rCustomValue… in DECLARE_INTERFACE_()
175 …STDMETHOD (EmitAssemblyCustomAttribute) (mdAssembly AssemblyID, mdToken FileToken, mdToken tkType,… in DECLARE_INTERFACE_()
/dports/devel/git-lfs/git-lfs-3.0.2/vendor/github.com/git-lfs/go-netrc/netrc/
H A Dnetrc.go16 type tkType int type
19 tkMachine tkType = iota
30 var keywords = map[string]tkType{
244 kind tkType

1234