HomeSort by relevance Sort by last modified time
    Searched defs:StrToken (Results 1 - 2 of 2) sorted by null

  /frameworks/compile/mclinker/lib/Script/
StrToken.cpp 1 //===- StrToken.cpp -------------------------------------------------------===//
9 #include "mcld/Script/StrToken.h"
17 typedef GCFactory<StrToken, MCLD_SYMBOLS_PER_INPUT> StrTokenFactory;
21 // StrToken
23 StrToken::StrToken() : m_Kind(Unknown) {
26 StrToken::StrToken(Kind pKind, const std::string& pString)
30 StrToken::~StrToken() {
    [all...]
  /frameworks/compile/mclinker/include/mcld/Script/
StrToken.h 1 //===- StrToken.h ---------------------------------------------------------===//
19 /** \class StrToken
24 class StrToken {
29 friend class Chunk<StrToken, MCLD_SYMBOLS_PER_INPUT>;
32 StrToken();
33 StrToken(Kind pKind, const std::string& pString);
36 virtual ~StrToken();
42 static bool classof(const StrToken* pToken) {
43 return pToken->kind() == StrToken::String;
47 static StrToken* create(const std::string& pString)
    [all...]

Completed in 60 milliseconds