HomeSort by relevance Sort by last modified time
    Searched full:m_path (Results 1 - 25 of 43) sorted by null

1 2

  /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),
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_path.cpp 15 m_Path = pSrcObj->m_Path;
29 if (m_Path.IsNull()) {
35 rect = m_Path.GetBoundingBox(width, m_GraphState.GetObject()->m_MiterLimit);
37 rect = m_Path.GetBoundingBox();
  /external/deqp/framework/delibs/decpp/
deDirectoryIterator.cpp 38 : m_path(FilePath::normalize(path))
40 DE_CHECK_RUNTIME_ERR(m_path.exists());
41 DE_CHECK_RUNTIME_ERR(m_path.getType() == FilePath::TYPE_DIRECTORY);
43 m_handle = _findfirst32((std::string(m_path.getPath()) + "/*").c_str(), &m_fileInfo);
63 return FilePath::join(m_path, m_fileInfo.name);
81 : m_path (FilePath::normalize(path))
85 DE_CHECK_RUNTIME_ERR(m_path.exists());
86 DE_CHECK_RUNTIME_ERR(m_path.getType() == FilePath::TYPE_DIRECTORY);
88 m_handle = opendir(m_path.getPath());
108 return FilePath::join(m_path, m_curEntry->d_name)
    [all...]
deFilePath.hpp 82 std::string m_path; member in class:de::FilePath
94 : m_path(path)
99 : m_path(path)
109 if (m_path == "")
110 m_path = b.m_path;
112 m_path += separator + b.m_path;
123 return m_path.c_str();
133 return m_path.length() >= 1 && isSeparator(m_path[0])
    [all...]
deFilePath.cpp 54 if (!m_path.empty() && !isSeparator(m_path[m_path.size()-1]))
55 m_path += separator;
56 m_path += components[ndx];
72 for (pos = 0; pos < (int)m_path.length(); pos++)
74 const char c = m_path[pos];
79 components.push_back(m_path.substr(curCompStart, pos - curCompStart));
86 components.push_back(m_path.substr(curCompStart, pos - curCompStart));
101 m_path = ""
    [all...]
  /external/deqp/framework/opengl/
gluVarTypeUtil.hpp 130 SubTypeAccess& member (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::STRUCT_MEMBER, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access struct element.
131 SubTypeAccess& element (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::ARRAY_ELEMENT, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access array element.
132 SubTypeAccess& column (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::MATRIX_COLUMN, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access column.
133 SubTypeAccess& component (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::VECTOR_COMPONENT, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access component.
134 SubTypeAccess& parent (void) { DE_ASSERT(!m_path.empty()); m_path.pop_back(); return *this; }
142 bool isValid (void) const { return isValidTypePath(m_type, m_path); }
143 VarType getType (void) const { return getVarType(m_type, m_path); }
144 const TypeComponentVector& getPath (void) const { return m_path; }
146 bool empty (void) const { return m_path.empty();
153 TypeComponentVector m_path; member in class:glu::SubTypeAccess
185 TypeComponentVector m_path; member in class:glu::SubTypeIterator
    [all...]
  /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/opencv/otherlibs/highgui/
loadsave.cpp 73 const char* Get() const { return m_path; };
89 char* m_path;
97 delete[] m_path;
104 m_path = 0;
131 if( m_path )
133 memcpy( new_path, m_path, m_len );
134 delete[] m_path;
137 m_path = new_path;
141 m_path[m_len++] = ';';
142 memcpy( m_path + m_len, buffer, len )
    [all...]
  /external/deqp/framework/common/
tcuResource.cpp 32 : m_path(path)
35 if (m_path.length() > 0 && m_path[m_path.length()-1] != '/')
36 m_path += "/";
45 return static_cast<Resource*>(new FileResource((m_path + name).c_str()));
tcuResource.hpp 100 DirArchive (const DirArchive& other) : Archive(), m_path(other.m_path) {}
101 DirArchive& operator= (const DirArchive& other) { m_path = other.m_path; return *this; }
104 std::string m_path; member in class:tcu::DirArchive
  /external/pdfium/xfa/src/fdp/src/fde/
fde_geobject.cpp 28 int32_t iPoints = m_Path.GetPointCount();
32 return m_Path.GetPoints() + iPoints - iCount;
42 int32_t iPoints = m_Path.GetPointCount();
43 m_Path.AddPointCount(iCount);
44 return m_Path.GetPoints() + iPoints;
214 int32_t iCount = pPath->m_Path.GetPointCount();
219 LineTo(pPath->m_Path.GetPointX(0), pPath->m_Path.GetPointY(0));
221 m_Path.Append(&pPath->m_Path, NULL);
    [all...]
fde_geobject.h 52 CFX_PathData m_Path;
  /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/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;
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
URI.java 133 private String m_path = null; field in class:URI
347 m_path = p_other.getPath();
458 if (m_path.length() == 0 && m_scheme == null && m_host == null)
464 m_path = p_base.getPath();
495 if (m_path.length() > 0 && m_path.startsWith("/"))
517 path = path.concat(m_path);
568 m_path = path;
770 m_path = p_uriSpec.substring(start, index);
887 if (m_path != null
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
URI.java 130 private String m_path = null; field in class:URI
344 m_path = p_other.getPath();
478 if (m_path.length() == 0 && m_scheme == null && m_host == null)
484 m_path = p_base.getPath();
515 if (m_path.length() > 0 && m_path.startsWith("/"))
537 path = path.concat(m_path);
588 m_path = path;
790 m_path = p_uriSpec.substring(start, index);
907 if (m_path != null
    [all...]
  /external/emma/core/java12/com/vladium/util/
IPathEnumerator.java 79 for (m_pathIndex = 0; m_pathIndex < m_path.size (); ++ m_pathIndex) // important not to cache m_path.size()
81 final File f = (File) m_path.get (m_pathIndex);
126 m_path = new ArrayList (path.length);
127 for (int p = 0; p < path.length; ++ p) m_path.add (path [p]);
270 m_path.add (m_pathIndex + (p ++), path); // insert after the current m_path entry
313 private final ArrayList /* File */ m_path; field in class:IPathEnumerator.Factory.PathEnumerator
  /external/pdfium/third_party/agg23/
agg_path_storage.h 34 vertex_source(const path_storage& p) : m_path(&p), m_vertex_idx(0) {}
41 return (m_vertex_idx < m_path->total_vertices()) ?
42 m_path->vertex(m_vertex_idx++, x, y) :
46 const path_storage* m_path; member in class:agg::path_storage::vertex_source
  /frameworks/compile/mclinker/include/mcld/Script/
SearchDirCmd.h 38 std::string m_Path;
  /frameworks/compile/mclinker/include/mcld/Support/
FileHandle.h 94 const sys::fs::Path& path() const { return m_Path; }
121 sys::fs::Path m_Path;
  /external/pdfium/core/src/fxcrt/
extension.h 52 void GetPath(CFX_WideString& wsPath) override { wsPath = m_path; }
55 return FX_CreateFileStream(m_path, dwModes);
59 m_path = wsPath;
65 CFX_WideString m_path; member in class:CFX_CRTFileAccess
  /frameworks/base/core/java/android/os/
FileObserver.java 144 private String m_path; field in class:FileObserver
164 m_path = path;
180 m_descriptor = s_observerThread.startWatching(m_path, m_mask, this);

Completed in 2022 milliseconds

1 2