HomeSort by relevance Sort by last modified time
    Searched full:ppath (Results 26 - 50 of 67) sorted by null

12 3

  /frameworks/compile/mclinker/include/mcld/Support/
Directory.h 47 /// constructor - a directory whose path is pPath
48 explicit Directory(const Path& pPath,
52 explicit Directory(const char* pPath,
68 void assign(const Path& pPath,
MemoryAreaFactory.h 45 MemoryArea* produce(const sys::fs::Path& pPath, FileHandle::OpenMode pMode);
48 MemoryArea* produce(const sys::fs::Path& pPath,
RealPath.h 32 explicit RealPath(const Path& pPath);
36 RealPath& assign(const Path& pPath);
FileHandle.h 72 bool open(const sys::fs::Path& pPath, OpenMode pMode, Permission pPerm);
  /frameworks/compile/mclinker/lib/Support/Windows/
FileSystem.inc 72 int open(const Path& pPath, int pOFlag) {
73 return ::_open(pPath.native().c_str(), pOFlag | _O_BINARY);
76 int open(const Path& pPath, int pOFlag, int pPerm) {
86 return ::_open(pPath.native().c_str(), pOFlag | _O_BINARY, perm);
  /external/pdfium/core/fxcrt/xml/
cfx_xmlnode.cpp 77 CFX_XMLNode* CFX_XMLNode::GetPath(const wchar_t* pPath,
80 ASSERT(pPath);
82 iLength = wcslen(pPath);
88 const wchar_t* pStart = pPath;
89 const wchar_t* pEnd = pPath + iLength;
97 iLength -= pStart - pPath;
  /frameworks/compile/libbcc/include/bcc/
Source.h 60 const std::string &pPath);
95 // when it's created using CreateFromBuffer and pPath if CreateFromFile().
  /frameworks/compile/mclinker/include/mcld/LD/
MsgHandler.h 59 const sys::fs::Path& pPath) {
60 pHandler.addString(pPath.native());
Archive.h 214 /// @param pPath - the path of the member file
219 const sys::fs::Path& pPath,
  /frameworks/compile/libbcc/lib/
Source.cpp 138 Source *Source::CreateFromFile(BCCContext &pContext, const std::string &pPath) {
141 llvm::MemoryBuffer::getFile(pPath);
143 ALOGE("Failed to load bitcode from path %s! (%s)", pPath.c_str(),
165 Source *result = CreateFromModule(pContext, pPath.c_str(), *module,
  /frameworks/compile/mclinker/include/mcld/MC/
MCLDDirectory.h 37 void setSysroot(const sys::fs::Path& pPath);
CommandAction.h 30 InputFileAction(unsigned int pPosition, const sys::fs::Path& pPath);
32 InputFileAction(unsigned int pPosition, const char* pPath);
61 BitcodeAction(unsigned int pPosition, const sys::fs::Path& pPath);
  /frameworks/compile/mclinker/lib/Support/
FileHandle.cpp 76 bool FileHandle::open(const sys::fs::Path& pPath,
86 m_Handler = sys::fs::detail::open(pPath, oflag(pMode));
88 m_Handler = sys::fs::detail::open(pPath, oflag(pMode),
91 m_Path = pPath;
  /frameworks/compile/mclinker/lib/Support/Unix/
FileSystem.inc 101 int open(const Path& pPath, int pOFlag) {
102 return ::open(pPath.native().c_str(), pOFlag);
105 int open(const Path& pPath, int pOFlag, int pPerm) {
126 return ::open(pPath.native().c_str(), pOFlag, perm);
  /external/fio/engines/
pmemblk.c 143 * the final path without the parameters is returned in ppath.
149 static void pmb_parse_path(const char *pathspec, char **ppath, uint64_t *pbsize,
159 *ppath = NULL;
170 *ppath = path;
179 *ppath = path;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wmiatlprov.h 238 CComPtr<IWbemPath>pPath;
239 HRESULT hr = pParserFactory->CreateInstance(NULL,IID_IWbemPath,(void **) &pPath);
241 hr = pPath->SetText(WBEMPATH_CREATE_ACCEPT_ALL,ObjectPath);
248 hr = pPath->GetClassName(&ulBufLen,wClass);
260 hr = pPath->GetInfo((ULONG)0,&ullPathInfo);
  /frameworks/compile/mclinker/lib/LD/
Archive.cpp 221 /// @param pPath - the path of the member file
227 const sys::fs::Path& pPath,
231 member = m_Builder.createInput(pName, pPath, Input::Unknown, pFileOffset);
236 member = m_Builder.createInput(pName, pPath, Input::Unknown);
  /external/pdfium/xfa/fxfa/parser/
cxfa_stroke.cpp 172 void CXFA_Stroke::Stroke(CXFA_GEPath* pPath,
191 pGS->StrokePath(pPath, &matrix);
  /frameworks/compile/mclinker/lib/MC/
InputBuilder.cpp 55 const sys::fs::Path& pPath,
58 return m_pInputFactory->produce(pName, pPath, pType, pFileOffset);
CommandAction.cpp 26 const sys::fs::Path& pPath)
27 : InputAction(pPosition), m_Path(pPath) {
31 const char* pPath)
32 : InputAction(pPosition), m_Path(pPath) {
81 BitcodeAction::BitcodeAction(unsigned int pPosition, const sys::fs::Path& pPath)
82 : InputAction(pPosition), m_Path(pPath) {
  /frameworks/compile/mclinker/lib/Core/
Linker.cpp 255 bool Linker::emit(const Module& pModule, const std::string& pPath) {
274 bool result = file.open(sys::fs::Path(pPath), open_mode, permission);
276 error(diag::err_cannot_open_output_file) << "Linker::emit()" << pPath;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiVfrCompile/
VfrCompiler.cpp 217 INT8 *pFileName, *pPath, *pExt;
225 ((pPath = strchr (pFileName, '\\')) != NULL) ||
226 ((pPath = strchr (pFileName, '/')) != NULL)
229 pFileName = pPath + 1;
  /frameworks/compile/mclinker/include/mcld/
LinkerScript.h 79 void setSysroot(const sys::fs::Path& pPath);
  /frameworks/compile/mclinker/lib/Script/
ScriptFile.cpp 132 void ScriptFile::addSearchDirCmd(const std::string& pPath) {
133 m_CommandQueue.push_back(new SearchDirCmd(pPath));
  /external/dtc/
flattree.c 728 static char *nodename_from_path(const char *ppath, const char *cpath)
732 plen = strlen(ppath);
734 if (!strneq(ppath, cpath, plen))
736 cpath, ppath);
739 if (!streq(ppath, "/"))

Completed in 971 milliseconds

12 3