OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NameSpec
(Results
1 - 3
of
3
) sorted by null
/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
/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
...]
Completed in 2983 milliseconds