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

1 2 3 4 5 6 7 8 91011>>

  /external/parameter-framework/upstream/test/tmpfile/
TmpFile.hpp 49 TmpFile(std::string content) : mPath(mktmp())
51 std::ofstream file(mPath);
58 TmpFile(TmpFile &&right) : mPath(std::move(right.mPath)) { right.mPath.clear(); }
69 mPath = std::move(right.mPath);
70 right.mPath.clear();
79 const std::string &getPath() const { return mPath; }
96 if (not mPath.empty())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceFileInfo.java 20 private final String mPath;
25 mPath = path;
31 return mPath;
  /sdk/find_java2/src/
JavaPath.cpp 27 CJavaPath::CJavaPath(int version, CPath path) : mVersion(version), mPath(path) {
28 mPath.Canonicalize();
37 mPath = CPath();
42 mPath = path;
43 mPath.Canonicalize();
54 const TCHAR *longPath = mPath;
72 mPath = CPath(shortPath);
85 const CString &pl = mPath;
86 const CString &pr = rhs.mPath;
92 const CString &pl = mPath;
    [all...]
  /frameworks/support/documents-archive/src/android/support/provider/
ParsedDocumentId.java 24 public final String mPath;
28 mPath = path;
46 if (mPath == null) {
49 return mArchiveId + idDelimiter + mPath;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
RoundedLine.java 26 private final Path mPath = new Path();
45 mPath.rewind();
51 return mPath; // Return an empty path
92 mPath.moveTo(p1x, p1y);
93 mPath.arcTo(mArc1, angle, a1);
95 mPath.moveTo(p2x, p2y);
96 mPath.arcTo(mArc2, angle, a2);
98 mPath.moveTo(p1ax, p1ay);
99 mPath.lineTo(p1x, p1y);
100 mPath.lineTo(p1bx, p1by)
    [all...]
  /frameworks/av/media/img_utils/src/
FileOutput.cpp 24 FileOutput::FileOutput(String8 path) : mFp(NULL), mPath(path), mOpen(false) {}
28 ALOGW("%s: Destructor called with %s still open.", __FUNCTION__, mPath.string());
35 ALOGW("%s: Open called when file %s already open.", __FUNCTION__, mPath.string());
38 mFp = ::fopen(mPath, "wb");
40 ALOGE("%s: Could not open file %s", __FUNCTION__, mPath.string());
49 ALOGE("%s: Could not write file %s, file not open.", __FUNCTION__, mPath.string());
57 ALOGE("%s: Error %d occurred while writing file %s.", __FUNCTION__, error, mPath.string());
65 ALOGW("%s: Close called when file %s already close.", __FUNCTION__, mPath.string());
71 ALOGE("%s: Failed to close file %s.", __FUNCTION__, mPath.string());
FileInput.cpp 24 FileInput::FileInput(String8 path) : mFp(NULL), mPath(path), mOpen(false) {}
36 ALOGW("%s: Open called when file %s already open.", __FUNCTION__, mPath.string());
39 mFp = ::fopen(mPath, "rb");
41 ALOGE("%s: Could not open file %s", __FUNCTION__, mPath.string());
50 ALOGE("%s: Could not read file %s, file not open.", __FUNCTION__, mPath.string());
57 ALOGE("%s: Error %d occurred while reading file %s.", __FUNCTION__, error, mPath.string());
71 ALOGW("%s: Close called when file %s already close.", __FUNCTION__, mPath.string());
77 ALOGE("%s: Failed to close file %s.", __FUNCTION__, mPath.string());