Home
last modified time | relevance | path

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

/external/parameter-framework/upstream/test/tmpfile/
DTmpFile.hpp49 TmpFile(std::string content) : mPath(mktmp()) in TmpFile()
51 std::ofstream file(mPath); in TmpFile()
58 TmpFile(TmpFile &&right) : mPath(std::move(right.mPath)) { right.mPath.clear(); } in TmpFile()
69 mPath = std::move(right.mPath); in operator =()
70 right.mPath.clear(); in operator =()
79 const std::string &getPath() const { return mPath; } in getPath()
96 if (not mPath.empty()) { in remove()
97 if (std::remove(mPath.c_str()) != 0) { in remove()
102 std::string mPath; member in parameterFramework::utility::TmpFile
/external/skia/tools/debugger/
DSkObjectParser.cpp139 SkString* mPath = new SkString; in PathToString() local
141 mPath->appendf("Path (%d) (", path.getGenerationID()); in PathToString()
147 mPath->append(gFillStrings[path.getFillType()]); in PathToString()
148 mPath->append(", "); in PathToString()
155 mPath->append(gConvexityStrings[path.getConvexity()]); in PathToString()
156 mPath->append(", "); in PathToString()
159 mPath->append("isRect, "); in PathToString()
161 mPath->append("isNotRect, "); in PathToString()
165 mPath->append("isOval, "); in PathToString()
167 mPath->append("isNotOval, "); 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/swiftshader/src/OpenGL/compiler/
Dintermediate.h719 mPath.push_back(current); in incrementDepth()
725 mPath.pop_back(); in decrementDepth()
730 return mPath.size() == 0 ? nullptr : mPath.back(); in getParentNode()
742 TVector<TIntermNode *> mPath; variable