HomeSort by relevance Sort by last modified time
    Searched full:namespec (Results 1 - 22 of 22) sorted by null

  /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...]
CMakeLists.txt 19 NameSpec.cpp
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()); }
ScriptScanner.ll 248 /* -l namespec */
  /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/include/mcld/MC/
SearchDirs.h 48 // find - give a namespec, return a real path of the shared object.
CommandAction.h 49 const std::string& namespec() const { return m_Namespec; } function in class:mcld::NamespecAction
  /frameworks/compile/mclinker/lib/MC/
CommandAction.cpp 51 // find out the real path of the namespec.
58 path = m_SearchDirs.find(namespec(), Input::Archive);
62 path = m_SearchDirs.find(namespec(), Input::DynObj);
66 path = m_SearchDirs.find(namespec(), Input::Archive);
70 fatal(diag::err_cannot_find_namespec) << namespec();
74 pBuilder.createNode<InputTree::Positional>(namespec(), *path);
  /frameworks/compile/mclinker/include/mcld/LD/
DiagCommonKinds.inc 26 "cannot recognize namespec -l%0",
27 "cannot recognize namespec -l%0")
  /external/deqp/modules/gles2/performance/
es2pShaderCompilationCases.cpp     [all...]
  /external/deqp/modules/gles3/performance/
es3pShaderCompilationCases.cpp     [all...]
  /external/lzma/CPP/7zip/Archive/Common/
HandlerOut.cpp 503 HRESULT COutHandler::SetProperty(const wchar_t *nameSpec, const PROPVARIANT &value)
505 UString name = nameSpec;
  /frameworks/compile/mclinker/include/mcld/
IRBuilder.h 112 /// @param pNameSpec [in] The namespec of the input file.
197 /// to search shared objects before archives for the following namespec.
203 /// search archives before shared objects for the following namespec.
  /frameworks/compile/mclinker/tools/mcld/
Options.td 267 def Namespec : Joined<["--"], "library=">,
269 HelpText<"Add the archive or object file specified by namespec to the list of files to link">;
272 Alias<Namespec>;
Main.cpp 806 // # of regular objects, script, and namespec.
850 // -l namespec
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/man/man1/
x86_64-w64-mingw32-ld.1 531 .IX Item "-l namespec"
534 .IX Item "--library=namespec"
    [all...]
  /frameworks/compile/mclinker/lib/Core/
IRBuilder.cpp 158 // find out the real path of the namespec.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/info/
ld.info 424 `-l NAMESPEC'
425 `--library=NAMESPEC'
426 Add the archive or object file specified by NAMESPEC to the list
428 If NAMESPEC is of the form `:FILENAME', `ld' will search the
    [all...]

Completed in 1378 milliseconds