HomeSort by relevance Sort by last modified time
    Searched full:namespec (Results 1 - 23 of 23) 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...]
CMakeLists.txt 18 NameSpec.cpp
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.
ScriptScanner.ll 241 /* -l 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
  /frameworks/compile/mclinker/lib/CodeGen/
MCLinker.cpp 55 // 2. Namespecs, short names of libraries. A namespec may refer to an archive
78 cl::desc("Add the archive or object file specified by namespec to "
80 cl::value_desc("namespec"),
310 cl::list<std::string>::iterator namespec, nsBegin, nsEnd; local
313 for (namespec = nsBegin; namespec != nsEnd; ++namespec) {
314 unsigned int pos = ArgNameSpecList.getPosition(namespec - nsBegin);
315 actions.push_back(new NamespecAction(pos, *namespec,
  /frameworks/compile/mclinker/tools/mcld/lib/
PositionalOptions.cpp 37 llvm::cl::desc("Add the archive or object file specified by namespec to\n"
39 llvm::cl::value_desc("namespec"),
239 // set -l[namespec]
240 llvm::cl::list<std::string>::iterator namespec, nsBegin, nsEnd; local
243 for (namespec = nsBegin; namespec != nsEnd; ++namespec) {
244 unsigned int pos = m_NameSpecList.getPosition(namespec - nsBegin);
245 pActions.push_back(new NamespecAction(pos, *namespec,
  /frameworks/compile/mclinker/include/mcld/MC/
SearchDirs.h 48 // find - give a namespec, return a real path of the shared object.
CommandAction.h 48 const std::string &namespec() const { return m_Namespec; } function in class:mcld::NamespecAction
  /frameworks/compile/mclinker/tools/mcld/include/mcld/
PositionalOptions.h 28 * 2. Namespecs, short names of libraries. A namespec may refer to an archive
  /frameworks/compile/mclinker/lib/MC/
CommandAction.cpp 47 // find out the real path of the namespec.
54 path = m_SearchDirs.find(namespec(), Input::Archive);
59 path = m_SearchDirs.find(namespec(), Input::DynObj);
64 path = m_SearchDirs.find(namespec(), Input::Archive);
68 fatal(diag::err_cannot_find_namespec) << namespec();
72 pBuilder.createNode<InputTree::Positional>(namespec(), *path);
  /external/smack/src/org/xbill/DNS/
Master.java 219 String nameSpec = st.getIdentifier();
236 generator = new Generator(start, end, step, nameSpec,
  /frameworks/compile/mclinker/include/mcld/LD/
DiagCommonKinds.inc 7 DIAG(err_cannot_find_namespec, DiagnosticEngine::Fatal, "cannot recognize namespec -l%0", "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 126 /// @param pNameSpec [in] The namespec of the input file.
211 /// to search shared objects before archives for the following namespec.
217 /// search archives before shared objects for the following namespec.
  /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 154 // 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 320 milliseconds