HomeSort by relevance Sort by last modified time
    Searched refs:m_Path (Results 1 - 20 of 20) sorted by null

  /frameworks/compile/mclinker/lib/MC/
MCLDDirectory.cpp 21 Directory::m_Path.assign(pName);
23 if (!Directory::m_Path.empty())
24 m_bInSysroot = (Directory::m_Path.native()[0] == '=');
26 Directory::m_Path.m_append_separator_if_needed();
28 Directory::m_Path.native().erase(Directory::m_Path.native().begin());
35 Directory::m_Path.assign(pName);
37 if (!Directory::m_Path.empty())
38 m_bInSysroot = (Directory::m_Path.native()[0] == '=');
40 Directory::m_Path.m_append_separator_if_needed()
    [all...]
Input.cpp 22 m_Path(),
34 m_Path(),
49 m_Path(pPath),
65 m_Path(pPath),
CommandAction.cpp 27 : InputAction(pPosition), m_Path(pPath) {
32 : InputAction(pPosition), m_Path(pPath) {
82 : InputAction(pPosition), m_Path(pPath) {
  /frameworks/compile/mclinker/lib/Script/
SearchDirCmd.cpp 21 : ScriptCommand(ScriptCommand::SEARCH_DIR), m_Path(pPath) {
28 mcld::outs() << "SEARCH_DIR ( " << m_Path << " )\n";
32 pModule.getScript().directories().insert(m_Path);
  /frameworks/compile/mclinker/lib/Support/
Directory.cpp 35 : m_Path(),
44 : m_Path(pPath),
50 if (m_Path == dot_path)
51 detail::get_pwd(m_Path);
52 m_Path.m_append_separator_if_needed();
61 : m_Path(pCopy.m_Path),
79 assign(pCopy.m_Path, pCopy.m_FileStatus, pCopy.m_SymLinkStatus);
89 m_Path = pPath;
90 if (m_Path == dot_path
    [all...]
FileHandle.cpp 30 : m_Path(),
91 m_Path = pPath;
137 m_Path.native().clear();
  /external/pdfium/core/fpdfapi/page/
cpdf_pathobject.cpp 35 if (!m_Path)
40 rect = m_Path.GetBoundingBox(width, m_GraphState.GetMiterLimit());
42 rect = m_Path.GetBoundingBox();
cpdf_pathobject.h 29 CPDF_Path m_Path;
  /external/pdfium/core/fpdfapi/edit/
cpdf_pagecontentgenerator_unittest.cpp 44 pPathObj->m_Path.AppendRect(10, 5, 13, 30);
55 pPathObj->m_Path.AppendPoint(CFX_PointF(0, 0), FXPT_TYPE::MoveTo, false);
56 pPathObj->m_Path.AppendPoint(CFX_PointF(5.2f, 0), FXPT_TYPE::LineTo, false);
57 pPathObj->m_Path.AppendPoint(CFX_PointF(5.2f, 3.78f), FXPT_TYPE::LineTo,
59 pPathObj->m_Path.AppendPoint(CFX_PointF(0, 3.78f), FXPT_TYPE::LineTo, true);
70 pPathObj->m_Path.AppendPoint(CFX_PointF(3.102f, 4.67f), FXPT_TYPE::MoveTo,
72 pPathObj->m_Path.AppendPoint(CFX_PointF(5.45f, 0.29f), FXPT_TYPE::LineTo,
74 pPathObj->m_Path.AppendPoint(CFX_PointF(4.24f, 3.15f), FXPT_TYPE::BezierTo,
76 pPathObj->m_Path.AppendPoint(CFX_PointF(4.65f, 2.98f), FXPT_TYPE::BezierTo,
78 pPathObj->m_Path.AppendPoint(CFX_PointF(3.456f, 0.24f), FXPT_TYPE::BezierTo
    [all...]
cpdf_pagecontentgenerator.cpp 151 auto& pPoints = pPathObj->m_Path.GetPoints();
152 if (pPathObj->m_Path.IsRect()) {
  /frameworks/compile/mclinker/include/mcld/Script/
SearchDirCmd.h 38 std::string m_Path;
  /external/pdfium/fpdfsdk/
fpdfeditpath.cpp 13 pPathObj->m_Path.AppendPoint(CFX_PointF(x, y), FXPT_TYPE::MoveTo, false);
23 pPathObj->m_Path.AppendRect(x, y, x + w, y + h);
74 pPathObj->m_Path.AppendPoint(CFX_PointF(x, y), FXPT_TYPE::MoveTo, false);
83 pPathObj->m_Path.AppendPoint(CFX_PointF(x, y), FXPT_TYPE::LineTo, false);
98 pPathObj->m_Path.AppendPoint(CFX_PointF(x1, y1), FXPT_TYPE::BezierTo, false);
99 pPathObj->m_Path.AppendPoint(CFX_PointF(x2, y2), FXPT_TYPE::BezierTo, false);
100 pPathObj->m_Path.AppendPoint(CFX_PointF(x3, y3), FXPT_TYPE::BezierTo, false);
109 if (pPathObj->m_Path.GetPoints().empty())
112 pPathObj->m_Path.ClosePath();
  /external/pdfium/xfa/fde/
cfde_path.cpp 13 m_Path.ClosePath();
17 const std::vector<FX_PATHPOINT>& points = m_Path.GetPoints();
22 m_Path.AppendPoint(point, FXPT_TYPE::MoveTo, false);
26 m_Path.AppendPoint(point, FXPT_TYPE::LineTo, false);
32 m_Path.AppendPoint(p1, FXPT_TYPE::BezierTo, false);
33 m_Path.AppendPoint(p2, FXPT_TYPE::BezierTo, false);
34 m_Path.AppendPoint(p3, FXPT_TYPE::BezierTo, false);
158 std::vector<FX_PATHPOINT>& points = m_Path.GetPoints();
170 if (pSrc->m_Path.GetPoints().empty())
173 LineTo(pSrc->m_Path.GetPoint(0))
    [all...]
cfde_path.h 49 CFX_PathData m_Path;
fde_gedevice.cpp 275 return m_pDevice->DrawPath(&pGePath->m_Path, (const CFX_Matrix*)pMatrix,
352 return m_pDevice->DrawPath(&pGePath->m_Path, pMatrix, nullptr,
  /frameworks/compile/mclinker/include/mcld/MC/
Input.h 67 const sys::fs::Path& path() const { return m_Path; }
69 void setPath(const sys::fs::Path& pPath) { m_Path = pPath; }
112 sys::fs::Path m_Path;
CommandAction.h 34 const sys::fs::Path& path() const { return m_Path; }
39 sys::fs::Path m_Path;
63 const sys::fs::Path& path() const { return m_Path; }
68 sys::fs::Path m_Path;
  /frameworks/compile/mclinker/include/mcld/Support/
Directory.h 78 const Path& path() const { return m_Path; }
90 mcld::sys::fs::Path m_Path;
FileHandle.h 94 const sys::fs::Path& path() const { return m_Path; }
121 sys::fs::Path m_Path;
  /external/pdfium/core/fpdfapi/render/
cpdf_renderstatus.cpp     [all...]

Completed in 2567 milliseconds