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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathBuilder.cpp 32 : m_path(0)
38 ASSERT(m_path);
40 if (closed && !m_path->isEmpty())
41 m_path->closeSubpath();
42 m_path->moveTo(m_current);
47 ASSERT(m_path);
49 m_path->addLineTo(m_current);
54 ASSERT(m_path);
56 m_path->addBezierCurveTo(m_current + point1, m_current + point2, m_current + targetPoint);
60 m_path->addBezierCurveTo(point1, point2, m_current)
    [all...]
SVGPathBuilder.h 38 void setCurrentPath(Path* path) { m_path = path; }
43 virtual void cleanup() OVERRIDE { m_path = 0; }
59 Path* m_path; member in class:blink::FINAL
  /external/deqp/framework/delibs/decpp/
deFilePath.hpp 81 std::string m_path; member in class:de::FilePath
93 : m_path(path)
98 : m_path(path)
108 if (m_path == "")
109 m_path = b.m_path;
111 m_path += separator + b.m_path;
122 return m_path.c_str();
132 return m_path.length() >= 1 && isSeparator(m_path[0])
    [all...]
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.cpp 55 m_path += separator;
56 m_path += components[ndx];
67 for (pos = 0; pos < (int)m_path.length(); pos++)
69 char c = m_path[pos];
74 components.push_back(m_path.substr(curCompStart, pos - curCompStart));
81 components.push_back(m_path.substr(curCompStart, pos - curCompStart));
92 m_path = "";
108 if (m_path.length() > 0)
109 m_path = comp + separator + m_path;
    [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/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...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/csp/
CSPSource.cpp 21 , m_path(path)
54 if (m_path.isEmpty())
59 if (m_path.endsWith("/"))
60 return path.startsWith(m_path, false);
62 return path == m_path;
CSPSource.h 36 String m_path; member in class:blink::CSPSource
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Path.cpp 45 : m_path()
51 m_path = SkPath(other.m_path);
60 m_path = SkPath(other.m_path);
66 return m_path == other.m_path;
71 return SkPathContainsPoint(m_path, point, static_cast<SkPath::FillType>(rule));
79 paint.getFillPath(m_path, &strokePath);
86 return m_path.getBounds()
    [all...]
Path.h 102 SkPath m_path; member in class:blink::Path::PositionCalculator
137 const SkPath& skPath() const { return m_path; }
154 SkPath m_path; member in class:blink::Path
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasPathMethods.cpp 48 if (m_path.isEmpty())
51 FloatRect boundRect = m_path.boundingRect();
53 m_path.closeSubpath();
62 m_path.moveTo(FloatPoint(x, y));
73 if (!m_path.hasCurrentPoint())
74 m_path.moveTo(p1);
75 else if (p1 != m_path.currentPoint())
76 m_path.addLineTo(p1);
85 if (!m_path.hasCurrentPoint())
86 m_path.moveTo(FloatPoint(cpx, cpy))
    [all...]
CanvasPathMethods.h 57 CanvasPathMethods(const Path& path) : m_path(path) { }
58 Path m_path; member in class:blink::CanvasPathMethods
Path2D.h 53 const Path& path() const { return m_path; }
63 m_path.addPath(src, transform ? transform->value() : AffineTransform(1, 0, 0, 1, 0, 0));
81 buildPathFromString(pathData, m_path);
HitRegion.h 47 const Path& path() const { return m_path; }
58 Path m_path; member in class:blink::FINAL
HitRegion.cpp 16 , m_path(options.path)
30 FloatRect boundingRect = m_path.boundingRect();
45 return m_path.contains(point, m_fillRule);
50 m_path.subtractPath(clearArea);
  /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/chromium_org/third_party/WebKit/Source/platform/
URLPatternMatcher.h 59 String m_path; member in class:blink::URLPatternMatcher
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ClipPathOperation.h 108 m_path.clear();
109 m_path = adoptPtr(new Path);
110 m_shape->path(*m_path, boundingRect);
111 return *m_path;
124 OwnPtr<Path> m_path; member in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
File.cpp 100 , m_path(path)
111 , m_path(path)
122 , m_path(path)
144 , m_path(metadata.platformPath)
168 if (hasBackingFile() && getFileModificationTime(m_path, modificationTime) && isValidFileTime(modificationTime))
208 if (!hasBackingFile() || !getFileSize(m_path, size))
235 ASSERT(!m_path.isEmpty());
236 blobData->appendFile(m_path, start, length, modificationTime);
252 if (!hasBackingFile() || !getFileMetadata(m_path, metadata)) {
273 m_path = String()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGShape.h 59 ASSERT(m_path);
60 return *m_path;
70 bool hasPath() const { return m_path.get(); }
117 OwnPtr<Path> m_path; member in class:blink::RenderSVGShape
  /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...]
  /frameworks/base/core/java/android/os/
FileObserver.java 143 private String m_path; field in class:FileObserver
163 m_path = path;
179 m_descriptor = s_observerThread.startWatching(m_path, m_mask, this);

Completed in 386 milliseconds

1 2