HomeSort by relevance Sort by last modified time
    Searched refs:NameSpec (Results 1 - 6 of 6) sorted by null

  /frameworks/compile/mclinker/lib/Script/
NameSpec.cpp 1 //===- NameSpec.cpp -------------------------------------------------------===//
9 #include <mcld/Script/NameSpec.h>
15 typedef GCFactory<NameSpec, MCLD_SYMBOLS_PER_INPUT> NameSpecFactory;
19 // NameSpec
21 NameSpec::NameSpec()
25 NameSpec::NameSpec(const std::string& pName, bool pAsNeeded)
26 : InputToken(InputToken::NameSpec, pName, pAsNeeded)
30 NameSpec::~NameSpec(
    [all...]
Android.mk 12 NameSpec.cpp \
GroupCmd.cpp 60 if (input->type() == InputToken::NameSpec)
121 case InputToken::NameSpec: {
123 // find out the real path of the namespec.
ScriptParser.yy 19 #include <mcld/Script/NameSpec.h>
285 { $$ = NameSpec::create(*$1, m_ScriptFile.asNeeded()); }
  /frameworks/compile/mclinker/include/mcld/Script/
NameSpec.h 1 //===- NameSpec.h ---------------------------------------------------------===//
19 /** \class NameSpec
20 * \brief This class defines the interfaces to a namespec in INPUT/GROUP
24 class NameSpec : public InputToken
27 friend class Chunk<NameSpec, MCLD_SYMBOLS_PER_INPUT>;
28 NameSpec();
29 NameSpec(const std::string& pName, bool pAsNeeded);
32 ~NameSpec();
36 return pToken->type() == InputToken::NameSpec;
40 static NameSpec* create(const std::string& pName, bool pAsNeeded)
    [all...]
InputToken.h 18 * \brief This class defines the interfaces to a file/namespec token.
27 NameSpec

Completed in 242 milliseconds