Searched refs:m_path (Results 1 - 9 of 9) sorted by relevance
/third_party/vk-gl-cts/framework/opengl/ |
H A D | gluVarTypeUtil.hpp | 130 SubTypeAccess& member (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::STRUCT_MEMBER, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access struct element. in member() 131 SubTypeAccess& element (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::ARRAY_ELEMENT, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access array element. in element() 132 SubTypeAccess& column (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::MATRIX_COLUMN, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access column. in column() 133 SubTypeAccess& component (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::VECTOR_COMPONENT, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access component. 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 153 TypeComponentVector m_path; global() member in glu::SubTypeAccess 191 TypeComponentVector m_path; global() member in glu::SubTypeIterator [all...] |
/third_party/vk-gl-cts/framework/delibs/decpp/ |
H A D | deFilePath.hpp | 82 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 in isRootPath() [all...] |
H A D | deDirectoryIterator.cpp | 38 : 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_curEntr [all...] |
H A D | deFilePath.cpp | 54 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() [all...] |
H A D | deDirectoryIterator.hpp | 66 FilePath m_path; member in de::DirectoryIterator
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuResource.cpp | 32 : 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()
|
H A D | tcuResource.hpp | 100 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
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/amber/ |
H A D | vktAmberTestCase.cpp | 236 void SetScriptPath (std::string path) { m_path = path; } in SetScriptPath() 240 std::string m_path; member in vkt::cts_amber::Delegate 248 , m_path ("") in Delegate() 260 const de::FilePath filePath = de::FilePath(m_path).join(file_name); in LoadBufferData()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/amber/ |
H A D | vktAmberTestCase.cpp | 235 void SetScriptPath (std::string path) { m_path = path; } in SetScriptPath() 239 std::string m_path; member in vkt::cts_amber::Delegate 247 , m_path ("") in Delegate() 259 const de::FilePath filePath = de::FilePath(m_path).join(file_name); in LoadBufferData()
|
Completed in 5 milliseconds