HomeSort by relevance Sort by last modified time
    Searched refs:pPath (Results 26 - 47 of 47) sorted by null

12

  /frameworks/compile/mclinker/include/mcld/
Linker.h 60 /// emit - To open a file for output in pPath and to emit output mcld::Module
62 bool emit(const std::string& pPath);
LinkerScript.h 66 void setSysroot(const sys::fs::Path &pPath);
IRBuilder.h 97 /// @param pPath [in] The path of the input file.
103 const sys::fs::Path& pPath,
110 /// @ref IRBuilder::CreateInput(pName, pPath, Input::Unknown);
118 /// @param pPath [in] The path of the input file.
120 Input* ReadInput(const std::string& pName, const sys::fs::Path& pPath);
  /frameworks/compile/mclinker/lib/MC/
CommandAction.cpp 23 const sys::fs::Path &pPath)
24 : InputAction(pPosition), m_Path(pPath) {
77 BitcodeAction::BitcodeAction(unsigned int pPosition, const sys::fs::Path &pPath)
78 : InputAction(pPosition), m_Path(pPath) {
InputBuilder.cpp 54 const sys::fs::Path& pPath,
58 return m_pInputFactory->produce(pName, pPath, pType, pFileOffset);
  /frameworks/compile/mclinker/lib/Support/
Directory.cpp 44 Directory::Directory(const Path& pPath,
47 : m_Path(pPath),
85 void Directory::assign(const Path& pPath,
92 m_Path = pPath;
FileHandle.cpp 78 bool FileHandle::open(const sys::fs::Path& pPath,
89 m_Handler = sys::fs::detail::open(pPath, oflag(pMode));
91 m_Handler = sys::fs::detail::open(pPath, oflag(pMode), (int)pPerm);
93 m_Path = pPath;
  /frameworks/compile/mclinker/include/mcld/LD/
MsgHandler.h 63 operator<<(const MsgHandler& pHandler, const sys::fs::Path& pPath)
65 pHandler.addString(pPath.native());
Archive.h 236 /// @param pPath - the path of the member file
241 const sys::fs::Path& pPath,
  /frameworks/compile/mclinker/include/mcld/MC/
CommandAction.h 31 explicit InputFileAction(unsigned int pPosition, const sys::fs::Path &pPath);
62 BitcodeAction(unsigned int pPosition, const sys::fs::Path &pPath);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
KeyStore_Impl3Test.java 115 KeyStore.PasswordProtection pPath = new KeyStore.PasswordProtection(pwd);
126 kss[i].setEntry(aliases[1], pKey, pPath);
127 kss[i].setEntry(aliases[2], pKey, pPath);
154 en = kss[i].getEntry(aliases[j], (j == 0 ? null : pPath));
155 en1 = kss1[i].getEntry(aliases[j], (j == 0 ? null : pPath));
KeyStore_Impl1Test.java 471 KeyStore.PasswordProtection pPath = new KeyStore.PasswordProtection(pwd);
480 kss[i].setEntry(aliases[j], pKey, pPath);
490 en = kss[i].getEntry(aliases[j], pPath);
535 pPath.destroy();
538 kss[i].setEntry("ZZZ", pKey, pPath);
545 kss[i].getEntry(aliases[j], pPath);
584 KeyStore.PasswordProtection pPath = new KeyStore.PasswordProtection(pwd);
593 kss[i].setEntry(aliases[j], sKey, pPath);
621 pPath.destroy();
624 kss[i].setEntry("ZZZ", aEntry, pPath);
    [all...]
  /frameworks/compile/libbcc/lib/Core/
Source.cpp 89 Source *Source::CreateFromFile(BCCContext &pContext, const std::string &pPath) {
92 llvm::error_code ec = llvm::MemoryBuffer::getFile(pPath, input_data);
94 ALOGE("Failed to load bitcode from path %s! (%s)", pPath.c_str(),
  /frameworks/compile/mclinker/include/mcld/Support/
Directory.h 49 /// constructor - a directory whose path is pPath
50 explicit Directory(const Path& pPath,
66 void assign(const Path& pPath,
FileHandle.h 79 bool open(const sys::fs::Path& pPath,
  /frameworks/compile/mclinker/tools/mcld/include/alone/
Linker.h 82 enum ErrorCode setOutput(const std::string &pPath);
  /frameworks/compile/mclinker/tools/mcld/lib/Core/
Linker.cpp 153 enum Linker::ErrorCode Linker::setOutput(const std::string &pPath) {
154 mOutputPath = pPath;
  /frameworks/compile/mclinker/lib/Core/
Linker.cpp 248 bool Linker::emit(const std::string& pPath)
252 if (!file.open(pPath,
255 error(diag::err_cannot_open_output_file) << "Linker::emit()" << pPath;
IRBuilder.cpp 128 const sys::fs::Path& pPath, Input::Type pType)
131 return ReadInput(pName, pPath);
133 m_InputBuilder.createNode<InputTree::Positional>(pName, pPath, pType);
144 IRBuilder::ReadInput(const std::string& pName, const sys::fs::Path& pPath)
146 m_InputBuilder.createNode<InputTree::Positional>(pName, pPath, Input::Unknown);
  /frameworks/compile/mclinker/lib/LD/
Archive.cpp 250 /// @param pPath - the path of the member file
256 const sys::fs::Path& pPath,
261 member = m_Builder.createInput(pName, pPath, Input::Unknown, pFileOffset);
267 member = m_Builder.createInput(pName, pPath, Input::Unknown);
  /cts/tools/vm-tests-tf/src/util/build/
BuildDalvikSuite.java 240 String pPath = pName.replaceAll("\\.","/");
241 String mainJar = String.format("%s/%s/%s", TARGET_JAR_ROOT_PATH, pPath, mjar);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/Carbon/
AppleEvents.py 742 pPath = FOUR_CHAR_CODE('FTPc')
    [all...]

Completed in 683 milliseconds

12