Lines Matching defs:StrToken
1 //===- StrToken.cpp -------------------------------------------------------===//
9 #include <mcld/Script/StrToken.h>
15 typedef GCFactory<StrToken, MCLD_SYMBOLS_PER_INPUT> StrTokenFactory;
19 // StrToken
21 StrToken::StrToken()
26 StrToken::StrToken(Kind pKind, const std::string& pString)
31 StrToken::~StrToken()
35 StrToken* StrToken::create(const std::string& pString)
37 StrToken* result = g_StrTokenFactory->allocate();
38 new (result) StrToken(String, pString);
42 void StrToken::destroy(StrToken*& pStrToken)
49 void StrToken::clear()