/external/deqp/framework/opengl/ |
D | gluVarTypeUtil.hpp | 164 m_path.push_back(VarTypeComponent(VarTypeComponent::STRUCT_MEMBER, ndx)); in member() 170 m_path.push_back(VarTypeComponent(VarTypeComponent::ARRAY_ELEMENT, ndx)); in element() 176 m_path.push_back(VarTypeComponent(VarTypeComponent::MATRIX_COLUMN, ndx)); in column() 182 m_path.push_back(VarTypeComponent(VarTypeComponent::VECTOR_COMPONENT, ndx)); in component() 188 DE_ASSERT(!m_path.empty()); in parent() 189 m_path.pop_back(); in parent() 216 return isValidTypePath(m_type, m_path); in isValid() 220 return getVarType(m_type, m_path); in getType() 224 return m_path; in getPath() 229 return m_path.empty(); in empty() [all …]
|
/external/deqp/framework/delibs/decpp/ |
D | deFilePath.hpp | 82 std::string m_path; member in de::FilePath 93 inline FilePath::FilePath(const std::string &path) : m_path(path) in FilePath() 97 inline FilePath::FilePath(const char *path) : m_path(path) in FilePath() 107 if (m_path == "") in join() 108 m_path = b.m_path; in join() 110 m_path += separator + b.m_path; in join() 121 return m_path.c_str(); in getPath() 131 return m_path.length() >= 1 && isSeparator(m_path[0]); in isRootPath() 136 return m_path.length() >= 2 && isSeparator(m_path[0]) && isSeparator(m_path[1]); in isWinNetPath()
|
D | deDirectoryIterator.cpp | 37 DirectoryIterator::DirectoryIterator(const FilePath &path) : m_path(FilePath::normalize(path)) in DirectoryIterator() 39 DE_CHECK_RUNTIME_ERR(m_path.exists()); in DirectoryIterator() 40 DE_CHECK_RUNTIME_ERR(m_path.getType() == FilePath::TYPE_DIRECTORY); in DirectoryIterator() 42 m_handle = _findfirst32((std::string(m_path.getPath()) + "/*").c_str(), &m_fileInfo); in DirectoryIterator() 62 return FilePath::join(m_path, m_fileInfo.name); in getItem() 80 : m_path(FilePath::normalize(path)) 84 DE_CHECK_RUNTIME_ERR(m_path.exists()); 85 DE_CHECK_RUNTIME_ERR(m_path.getType() == FilePath::TYPE_DIRECTORY); 87 m_handle = opendir(m_path.getPath()); 107 return FilePath::join(m_path, m_curEntry->d_name);
|
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() 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 …]
|
D | deDirectoryIterator.hpp | 69 FilePath m_path; member in de::DirectoryIterator
|
/external/sdv/vsomeip/third_party/boost/filesystem/include/boost/filesystem/ |
D | directory.hpp | 66 m_path(p), m_status(file_status()), m_symlink_status(file_status()) in directory_entry() 71 m_path(p), m_status(st), m_symlink_status(symlink_st) in directory_entry() 76 m_path(rhs.m_path), m_status(rhs.m_status), m_symlink_status(rhs.m_symlink_status) in directory_entry() 82 m_path = rhs.m_path; in operator =() 94 …m_path(std::move(rhs.m_path)), m_status(std::move(rhs.m_status)), m_symlink_status(std::move(rhs.m… in directory_entry() 99 m_path = std::move(rhs.m_path); in operator =() 109 m_path = p; in assign() 117 m_path.remove_filename(); in replace_filename() 118 m_path /= p; in replace_filename() 130 const boost::filesystem::path& path() const BOOST_NOEXCEPT { return m_path; } in path() [all …]
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | URI.java | 130 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/apache-xml/src/main/java/org/apache/xml/serializer/utils/ |
D | URI.java | 133 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/pdfium/third_party/agg23/ |
D | 0001-gcc-warning.patch | 9 - 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;
|
D | agg_path_storage.h | 36 vertex_source(const path_storage& p) : m_path(&p), m_vertex_idx(0) {} in vertex_source() 43 return (m_vertex_idx < m_path->total_vertices()) in vertex() 44 ? m_path->vertex(m_vertex_idx++, x, y) in vertex() 48 const path_storage* m_path;
|
/external/deqp/framework/common/ |
D | tcuResource.cpp | 31 DirArchive::DirArchive(const char *path) : m_path(path) in DirArchive() 34 if (m_path.length() > 0 && m_path[m_path.length() - 1] != '/') in DirArchive() 35 m_path += "/"; in DirArchive() 44 return static_cast<Resource *>(new FileResource((m_path + name).c_str())); in getResource()
|
D | tcuResource.hpp | 111 DirArchive(const DirArchive &other) : Archive(), m_path(other.m_path) in DirArchive() 116 m_path = other.m_path; in operator =() 121 std::string m_path; member in tcu::DirArchive
|
/external/intel-media-driver/media_softlet/agnostic/common/os/ |
D | mos_os_next.cpp | 71 m_path = path; in GpuCmdResInfoDumpNext() 74 m_path += '/'; in GpuCmdResInfoDumpNext() 77 m_path = m_path + "gpuCmdResInfo_" + std::to_string(MosUtilities::MosGetPid()) + ".txt"; in GpuCmdResInfoDumpNext() 90 outputFile.open(m_path, std::ios_base::app); in Dump()
|
D | mos_os_next.h | 70 std::string m_path = ""; variable
|
D | mos_os.cpp | 760 m_path = path; in GpuCmdResInfoDump() 763 m_path += '/'; in GpuCmdResInfoDump() 766 m_path = m_path + "gpuCmdResInfo_" + std::to_string(MosUtilities::MosGetPid()) + ".txt"; in GpuCmdResInfoDump() 779 outputFile.open(m_path, std::ios_base::app); in Dump()
|
/external/sdv/vsomeip/third_party/boost/filesystem/test/ |
D | design_use_cases.cpp | 26 return m_path; in operator const std::string() 33 return m_path; in string() 38 std::string m_path; member in path
|
/external/emma/core/java12/com/vladium/util/ |
D | IPathEnumerator.java | 79 …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() 270 … m_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/ |
D | job_directories.py | 88 m_path = re.match('.*/swarming-([0-9a-fA-F]*)0/([1-9a-fA-F])$', path) 89 if m_path: 90 return m_path.group(1) + m_path.group(2)
|
/external/sdv/vsomeip/third_party/boost/property_tree/include/boost/property_tree/detail/ |
D | exception_implementation.hpp | 66 ptree_error(detail::prepare_bad_path_what(w, p)), m_path(p) in ptree_bad_path() 78 return boost::any_cast<P>(m_path); in path()
|
/external/intel-media-driver/media_softlet/agnostic/common/vp/hal/utils/ |
D | vp_debug_interface.cpp | 35 memset(m_path, 0, sizeof(m_path)); in VpDebugInterface()
|
/external/emma/core/java12/com/vladium/emma/rt/ |
D | ClassPathProcessorST.java | 49 … 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
|
/external/sdv/vsomeip/third_party/boost/property_tree/include/boost/property_tree/ |
D | exceptions.hpp | 79 boost::any m_path; member in boost::property_tree::ptree_bad_path
|
/external/deqp/external/vulkancts/modules/vulkan/amber/ |
D | vktAmberTestCase.cpp | 325 m_path = path; in SetScriptPath() 330 std::string m_path; member in vkt::cts_amber::Delegate 338 , m_path("") in Delegate() 349 const de::FilePath filePath = de::FilePath(m_path).join(file_name); in LoadBufferData() 383 const de::FilePath filePath = de::FilePath(m_path).join(file_name); in LoadFile()
|
/external/intel-media-driver/media_softlet/agnostic/common/shared/ |
D | media_debug_interface.h | 118 char m_path[MOS_MAX_PATH_LENGTH + 1]; variable
|
/external/sdv/vsomeip/third_party/boost/filesystem/src/ |
D | directory.cpp | 100 m_status = detail::status(m_path, ec); in get_status() 115 m_symlink_status = detail::symlink_status(m_path, ec); in get_symlink_status()
|