Home | History | Annotate | Download | only in util

Lines Matching full:path

53 FileType getFileType(const StringPiece& path);
62 * Appends a path to `base`, separated by the directory separator.
67 * Makes all the directories in `path`. The last element in the path
70 bool mkdirs(const StringPiece& path);
73 * Returns all but the last part of the path.
75 StringPiece getStem(const StringPiece& path);
78 * Returns the last part of the path with extension.
80 StringPiece getFilename(const StringPiece& path);
83 * Returns the extension of the path. This is the entire string after
84 * the first '.' of the last part of the path.
86 StringPiece getExtension(const StringPiece& path);
89 * Converts a package name (com.android.app) to a path: com/android/app
94 * Creates a FileMap for the file at path.
96 Maybe<android::FileMap> mmapPath(const StringPiece& path, std::string* outError);
99 * Reads the file at path and appends each line to the outArgList vector.
101 bool appendArgsFromFile(const StringPiece& path, std::vector<std::string>* outArgList,