Home
last modified time | relevance | path

Searched refs:m_path (Results 1 – 14 of 14) sorted by relevance

/external/deqp/framework/opengl/
DgluVarTypeUtil.hpp130 …SubTypeAccess& member (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::STRUCT… in member()
131 …SubTypeAccess& element (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::ARRAY… in element()
132 …SubTypeAccess& column (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::MATRIX… in column()
133 …SubTypeAccess& component (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::VECT… in component()
134 …SubTypeAccess& parent (void) { DE_ASSERT(!m_path.empty()); m_path.pop_back(); return *this;… in parent()
142 bool isValid (void) const { return isValidTypePath(m_type, m_path); } in isValid()
143 VarType getType (void) const { return getVarType(m_type, m_path); } in getType()
144 const TypeComponentVector& getPath (void) const { return m_path; } in getPath()
146 bool empty (void) const { return m_path.empty(); } in empty()
148 …bool operator== (const SubTypeAccess& other) const { return m_path == other.m_path && m_typ… in operator ==()
[all …]
/external/deqp/framework/delibs/decpp/
DdeFilePath.hpp82 std::string m_path; member in de::FilePath
94 : m_path(path) in FilePath()
99 : m_path(path) in FilePath()
109 if (m_path == "") in join()
110 m_path = b.m_path; in join()
112 m_path += separator + b.m_path; in join()
123 return m_path.c_str(); in getPath()
133 return m_path.length() >= 1 && isSeparator(m_path[0]); in isRootPath()
138 return m_path.length() >= 2 && isSeparator(m_path[0]) && isSeparator(m_path[1]); in isWinNetPath()
DdeDirectoryIterator.cpp38 : m_path(FilePath::normalize(path)) in DirectoryIterator()
40 DE_CHECK_RUNTIME_ERR(m_path.exists()); in DirectoryIterator()
41 DE_CHECK_RUNTIME_ERR(m_path.getType() == FilePath::TYPE_DIRECTORY); in DirectoryIterator()
43 m_handle = _findfirst32((std::string(m_path.getPath()) + "/*").c_str(), &m_fileInfo); in DirectoryIterator()
63 return FilePath::join(m_path, m_fileInfo.name); in getItem()
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);
DdeFilePath.cpp54 if (!m_path.empty() && !isSeparator(m_path[m_path.size()-1])) in FilePath()
55 m_path += separator; in FilePath()
56 m_path += components[ndx]; in FilePath()
72 for (pos = 0; pos < (int)m_path.length(); pos++) in split()
74 const char c = m_path[pos]; in split()
79 components.push_back(m_path.substr(curCompStart, pos - curCompStart)); in split()
86 components.push_back(m_path.substr(curCompStart, pos - curCompStart)); in split()
101 m_path = ""; in normalize()
199 for (int ndx = 0; ndx < (int)m_path.length(); ndx++) in beginsWithDrive()
201 if (m_path[ndx] == ':' && ndx+1 < (int)m_path.length() && isSeparator(m_path[ndx+1])) in beginsWithDrive()
[all …]
DdeDirectoryIterator.hpp66 FilePath m_path; member in de::DirectoryIterator
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
DURI.java133 private String m_path = null; field in URI
347 m_path = p_other.getPath(); in initialize()
458 if (m_path.length() == 0 && m_scheme == null && m_host == null) in initialize()
464 m_path = p_base.getPath(); in initialize()
495 if (m_path.length() > 0 && m_path.startsWith("/")) in initialize()
517 path = path.concat(m_path); in initialize()
568 m_path = path; in initialize()
770 m_path = p_uriSpec.substring(start, index); in initializePath()
887 if (m_path != null) in getSchemeSpecificPart()
889 schemespec.append((m_path)); in getSchemeSpecificPart()
[all …]
/external/apache-xml/src/main/java/org/apache/xml/utils/
DURI.java130 private String m_path = null; field in URI
344 m_path = p_other.getPath(); in initialize()
478 if (m_path.length() == 0 && m_scheme == null && m_host == null) in initialize()
484 m_path = p_base.getPath(); in initialize()
515 if (m_path.length() > 0 && m_path.startsWith("/")) in initialize()
537 path = path.concat(m_path); in initialize()
588 m_path = path; in initialize()
790 m_path = p_uriSpec.substring(start, index); in initializePath()
907 if (m_path != null) in getSchemeSpecificPart()
909 schemespec.append((m_path)); in getSchemeSpecificPart()
[all …]
/external/deqp/framework/common/
DtcuResource.cpp32 : m_path(path) in DirArchive()
35 if (m_path.length() > 0 && m_path[m_path.length()-1] != '/') in DirArchive()
36 m_path += "/"; in DirArchive()
45 return static_cast<Resource*>(new FileResource((m_path + name).c_str())); in getResource()
DtcuResource.hpp100 DirArchive (const DirArchive& other) : Archive(), m_path(other.m_path) {} in DirArchive()
101 DirArchive& operator= (const DirArchive& other) { m_path = other.m_path; return *this; } in operator =()
104 std::string m_path; member in tcu::DirArchive
/external/pdfium/third_party/agg23/
D0001-gcc-warning.patch9 - return (m_vertex_idx < m_path->total_vertices()) ?
10 - m_path->vertex(m_vertex_idx++, x, y) :
12 + return (m_vertex_idx < m_path->total_vertices())
13 + ? m_path->vertex(m_vertex_idx++, x, y)
17 const path_storage* m_path;
Dagg_path_storage.h34 vertex_source(const path_storage& p) : m_path(&p), m_vertex_idx(0) {} in vertex_source()
41 return (m_vertex_idx < m_path->total_vertices()) in vertex()
42 ? m_path->vertex(m_vertex_idx++, x, y) in vertex()
46 const path_storage* m_path;
/external/emma/core/java12/com/vladium/util/
DIPathEnumerator.java79 …for (m_pathIndex = 0; m_pathIndex < m_path.size (); ++ m_pathIndex) // important not to cache m_pa… in enumerate()
81 final File f = (File) m_path.get (m_pathIndex); in enumerate()
126 m_path = new ArrayList (path.length); in PathEnumerator()
127 for (int p = 0; p < path.length; ++ p) m_path.add (path [p]); in PathEnumerator()
270m_path.add (m_pathIndex + (p ++), path); // insert after the current m_path entry in enumeratePathArchive()
313 private final ArrayList /* File */ m_path; field in IPathEnumerator.Factory.PathEnumerator
/external/autotest/site_utils/
Djob_directories.py86 m_path = re.match('.*/swarming-([0-9a-fA-F]*)0/([1-9a-fA-F])$', path)
87 if m_path:
88 return m_path.group(1) + m_path.group(2)
/external/emma/core/java12/com/vladium/emma/rt/
DClassPathProcessorST.java49 … final IPathEnumerator enumerator = IPathEnumerator.Factory.create (m_path, m_canonical, this); in run()
294 m_path = path; in ClassPathProcessorST()
376 private final File [] m_path; // never null field in ClassPathProcessorST