Home | History | Annotate | Download | only in webkit

Lines Matching refs:mPath

38     private String mPath;  // Full path to the file to load
70 mPath = index > 0 ? URLUtil.stripAnchor(
75 mPath = index > 0 ? URLUtil.stripAnchor(
80 mPath = index > 0 ? URLUtil.stripAnchor(
101 mDataStream = mContext.getAssets().open(mPath);
104 mDataStream = mContext.getAssets().openNonAsset(mPath);
110 if (mPath == null || mPath.length() == 0) {
117 int slash = mPath.indexOf('/');
118 int dot = mPath.indexOf('.', slash);
120 Log.e(LOGTAG, "Incorrect res path: " + mPath);
125 String subClassName = mPath.substring(0, slash);
126 String fieldName = mPath.substring(slash + 1, dot);
169 mDataStream = new FileInputStream(mPath);
170 mContentLength = (new File(mPath)).length();