/external/pdfium/core/fxge/android/ |
cfpf_skiapathfont.cpp | 21 void CFPF_SkiaPathFont::SetPath(const char* pPath) { 23 int32_t iSize = strlen(pPath); 25 memcpy(m_pPath, pPath, iSize * sizeof(char));
|
cfpf_skiapathfont.h | 23 void SetPath(const char* pPath);
|
/frameworks/compile/mclinker/lib/Support/ |
RealPath.cpp | 29 RealPath::RealPath(const Path& pPath) : Path(pPath) { 36 RealPath& RealPath::assign(const Path& pPath) { 37 Path::m_PathName.assign(pPath.native());
|
FileSystem.cpp | 16 bool mcld::sys::fs::exists(const Path& pPath) { 18 mcld::sys::fs::detail::status(pPath, file_status); 23 bool mcld::sys::fs::is_directory(const Path& pPath) { 25 detail::status(pPath, file_status);
|
MemoryAreaFactory.cpp | 25 MemoryArea* MemoryAreaFactory::produce(const sys::fs::Path& pPath, 27 llvm::StringRef name(pPath.native()); 38 MemoryArea* MemoryAreaFactory::produce(const sys::fs::Path& pPath, 41 llvm::StringRef name(pPath.native());
|
Directory.cpp | 43 Directory::Directory(const Path& pPath, FileStatus st, FileStatus symlink_st) 44 : m_Path(pPath), 56 Directory::Directory(const char* pPath, FileStatus st, FileStatus symlink_st) 57 : Directory(sys::fs::Path(pPath), st, symlink_st) { 83 void Directory::assign(const Path& pPath, 89 m_Path = pPath;
|
Path.cpp | 89 Path& Path::append(const Path& pPath) { 92 pPath.native()[0] == separator) { 93 llvm::StringRef path(pPath.native()); 96 pPath.native()[0] != separator) { 99 m_PathName.append(pPath.native()); 102 m_PathName.append(pPath.native()); 108 Path& Path::append(const StringType& pPath) { 109 Path path(pPath);
|
/frameworks/compile/mclinker/lib/MC/ |
ContextFactory.cpp | 24 LDContext* ContextFactory::produce(const sys::fs::Path& pPath) { 25 LDContext* result = find(pPath); 29 f_KeyMap.insert(std::make_pair(pPath, result)); 34 LDContext* ContextFactory::produce(const char* pPath) { 35 return produce(sys::fs::Path(pPath));
|
Input.cpp | 44 const sys::fs::Path& pPath, 49 m_Path(pPath), 59 const sys::fs::Path& pPath, 65 m_Path(pPath),
|
InputFactory.cpp | 34 const sys::fs::Path& pPath, 38 new (result) Input(pName, pPath, *m_pLast, pType, pFileOffset); 43 const char* pPath, 47 new (result) Input(pName, sys::fs::Path(pPath), *m_pLast, pType, pFileOffset);
|
SearchDirs.cpp | 47 bool SearchDirs::insert(const std::string& pPath) { 48 MCLDDirectory* dir = new MCLDDirectory(pPath); 62 bool SearchDirs::insert(const char* pPath) { 63 return insert(std::string(pPath)); 66 bool SearchDirs::insert(const sys::fs::Path& pPath) { 67 return insert(pPath.native());
|
/external/curl/lib/ |
dict.c | 130 char *ppath; local 255 ppath = strchr(path, '/'); 256 if(ppath) { 259 ppath++; 260 for(i = 0; ppath[i]; i++) { 261 if(ppath[i] == ':') 262 ppath[i] = ' '; 267 "QUIT\r\n", ppath);
|
/frameworks/compile/mclinker/include/mcld/Support/ |
Path.h | 65 Path& append(const Path& pPath); 66 Path& append(const StringType& pPath); 104 bool exists(const Path& pPath); 106 bool is_directory(const Path& pPath); 111 const Path& pPath) { 112 return pOS << pPath.native(); 118 Path& pPath) { 119 return pOS >> pPath.native(); 123 const Path& pPath) { 124 return pOS << pPath.native() [all...] |
FileSystem.h | 73 bool exists(const Path& pPath); 74 bool is_directory(const Path& pPath); 94 int open(const Path& pPath, int pOFlag); 95 int open(const Path& pPath, int pOFlag, int pPermission);
|
/external/pdfium/core/fxge/ |
fx_ge_linux.cpp | 138 for (const char** pPath = pUserPaths; *pPath; ++pPath) 139 AddPath(*pPath);
|
/frameworks/compile/mclinker/include/mcld/MC/ |
Input.h | 51 const sys::fs::Path& pPath, 56 const sys::fs::Path& pPath, 69 void setPath(const sys::fs::Path& pPath) { m_Path = pPath; }
|
ContextFactory.h | 37 LDContext* produce(const sys::fs::Path& pPath); 38 LDContext* produce(const char* pPath);
|
InputBuilder.h | 56 const sys::fs::Path& pPath, 61 const sys::fs::Path& pPath, 105 const sys::fs::Path& pPath, 109 Input* input = createInput(pName, pPath, pType); 120 const sys::fs::Path& pPath, 124 Input* input = createInput(pName, pPath, pType);
|
InputFactory.h | 40 const sys::fs::Path& pPath, 45 const char* pPath,
|
/development/tools/etc1tool/ |
etc1tool.cpp | 66 int changeExtension(char* pPath, size_t pathCapacity, const char* pExtension) { 67 size_t pathLen = strlen(pPath); 74 if ((pathLen == 1 && pPath[0] == '.') || (pathLen == 2 && pPath[0] == '.' 75 && pPath[1] == '.') || (pathLen >= 2 && pPath[pathLen - 2] == '/' 76 && pPath[pathLen - 1] == '.') || (pathLen >= 3 77 && pPath[pathLen - 3] == '/' && pPath[pathLen - 2] == '.' 78 && pPath[pathLen - 1] == '.')) [all...] |
/frameworks/compile/mclinker/include/mcld/ |
Linker.h | 53 /// emit - To open a file for output in pPath and to emit output mcld::Module 55 bool emit(const Module& pModule, const std::string& pPath);
|
/frameworks/compile/mclinker/lib/Script/ |
SearchDirCmd.cpp | 20 SearchDirCmd::SearchDirCmd(const std::string& pPath) 21 : ScriptCommand(ScriptCommand::SEARCH_DIR), m_Path(pPath) {
|
/external/pdfium/core/fxcrt/xml/ |
cfx_xmlnode.h | 58 CFX_XMLNode* GetPath(const wchar_t* pPath,
|
/external/pdfium/xfa/fxfa/parser/ |
cxfa_stroke.h | 51 void Stroke(CXFA_GEPath* pPath, CXFA_Graphics* pGS, const CFX_Matrix& matrix);
|
/frameworks/compile/mclinker/include/mcld/Script/ |
SearchDirCmd.h | 26 explicit SearchDirCmd(const std::string& pPath);
|