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

  /frameworks/compile/mclinker/include/mcld/Script/
NameSpec.h 1 //===- NameSpec.h ---------------------------------------------------------===//
18 /** \class NameSpec
19 * \brief This class defines the interfaces to a namespec in INPUT/GROUP
23 class NameSpec : public InputToken {
25 friend class Chunk<NameSpec, MCLD_SYMBOLS_PER_INPUT>;
26 NameSpec();
27 NameSpec(const std::string& pName, bool pAsNeeded);
30 ~NameSpec();
33 return pToken->type() == InputToken::NameSpec;
37 static NameSpec* create(const std::string& pName, bool pAsNeeded)
    [all...]
InputToken.h 17 * \brief This class defines the interfaces to a file/namespec token.
22 enum Type { Unknown, File, NameSpec };
  /frameworks/compile/mclinker/lib/Script/
NameSpec.cpp 1 //===- NameSpec.cpp -------------------------------------------------------===//
9 #include "mcld/Script/NameSpec.h"
17 typedef GCFactory<NameSpec, MCLD_SYMBOLS_PER_INPUT> NameSpecFactory;
21 // NameSpec
23 NameSpec::NameSpec() {
26 NameSpec::NameSpec(const std::string& pName, bool pAsNeeded)
27 : InputToken(InputToken::NameSpec, pName, pAsNeeded) {
30 NameSpec::~NameSpec()
    [all...]
Android.mk 13 NameSpec.cpp \
GroupCmd.cpp 61 if (input->type() == InputToken::NameSpec)
122 case InputToken::NameSpec: {
124 // find out the real path of the namespec.
InputCmd.cpp 72 if (input->type() == InputToken::NameSpec)
133 case InputToken::NameSpec: {
135 // find out the real path of the namespec.
ScriptParser.yy 19 #include "mcld/Script/NameSpec.h"
296 { $$ = NameSpec::create(*$1, m_ScriptFile.asNeeded()); }

Completed in 3277 milliseconds