Home
last modified time | relevance | path

Searched refs:mPath (Results 1 – 5 of 5) sorted by relevance

/external/skia/src/utils/debugger/
DSkObjectParser.cpp112 SkString* mPath = new SkString("Path ("); in PathToString() local
118 mPath->append(gFillStrings[path.getFillType()]); in PathToString()
119 mPath->append(", "); in PathToString()
126 mPath->append(gConvexityStrings[path.getConvexity()]); in PathToString()
127 mPath->append(", "); in PathToString()
130 mPath->append("isRect, "); in PathToString()
132 mPath->append("isNotRect, "); in PathToString()
135 mPath->appendS32(path.countVerbs()); in PathToString()
136 mPath->append("V, "); in PathToString()
137 mPath->appendS32(path.countPoints()); in PathToString()
[all …]
/external/apache-http/android/src/android/net/compatibility/
DWebAddress.java44 private String mPath; field in WebAddress
72 mPath = "/"; in WebAddress()
98 mPath = t; in WebAddress()
100 mPath = "/" + t; in WebAddress()
134 return mScheme + "://" + authInfo + mHost + port + mPath; in toString()
162 mPath = path; in setPath()
166 return mPath; in getPath()
/external/apache-http/android/src/android/net/http/
DRequest.java58 String mPath; field in Request
113 mPath = path; in Request()
227 … HttpLog.v("Request.requestSent() " + mHost.getSchemeName() + "://" + getHostPort() + mPath); in sendRequest()
353 mHost.getSchemeName() + "://" + getHostPort() + mPath); in readResponse()
394 return mPath; in getUri()
396 return mHost.getSchemeName() + "://" + getHostPort() + mPath; in getUri()
403 return mPath; in toString()
/external/eyes-free/AccessCheck/src/com/android/accessibility/
DAccessibilityValidationContentHandler.java50 private final String mPath; field in AccessibilityValidationContentHandler
95 mPath = fullyQualifiedPath; in AccessibilityValidationContentHandler()
150 sLogger.info(mPath); in startElement()
/external/parameter-framework/bindings/c/
DTest.cpp87 mPath = tmpName; in TmpFile()
92 unlink(mPath.c_str()); in ~TmpFile()
94 operator const char *() const { return mPath.c_str(); } in operator const char*()
95 const std::string &path() const { return mPath; } in path()
97 std::string mPath; member in Test::TmpFile