Home
last modified time | relevance | path

Searched refs:basePath (Results 1 – 7 of 7) sorted by relevance

/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
Ddict_file_writing_utils.cpp82 /* static */ bool DictFileWritingUtils::flushBufferToFileWithSuffix(const char *const basePath, in flushBufferToFileWithSuffix() argument
84 const int filePathBufSize = FileUtils::getFilePathWithSuffixBufSize(basePath, suffix); in flushBufferToFileWithSuffix()
86 FileUtils::getFilePathWithSuffix(basePath, suffix, filePathBufSize, filePath); in flushBufferToFileWithSuffix()
Ddict_file_writing_utils.h38 static bool flushBufferToFileWithSuffix(const char *const basePath, const char *const suffix,
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DFilterTypeSet.java84 String basePath = "/filter/mediatype/" + mMediaType; in updateData() local
88 String filteredPath = basePath + "/{" + set.getPath().toString() + "}"; in updateData()
/packages/apps/Gallery2/src/com/android/gallery3d/app/
DAlbumPage.java348 String basePath = mMediaSet.getPath().toString(); in doCluster() local
349 String newPath = FilterUtils.newClusterPath(basePath, clusterType); in doCluster()
DAlbumSetPage.java311 String basePath = mMediaSet.getPath().toString(); in doCluster() local
312 String newPath = FilterUtils.switchClusterPath(basePath, clusterType); in doCluster()
/packages/modules/Connectivity/tests/unit/java/com/android/server/net/
DNetworkStatsServiceTest.java1709 final File basePath = new File(mStatsDir, "netstats");
1711 assertTrue(basePath.list().length > 0);
1713 assertTrue(basePath.list().length == 0);
/packages/providers/MediaProvider/src/com/android/providers/media/
DMediaProvider.java9691 final List<String> basePath = new ArrayList<>(base.getPathSegments());
9694 for (int j = 0; j < basePath.size() && j < probePath.size(); j++) {
9695 if (!Objects.equals(basePath.get(j), probePath.get(j))) {
9697 while (basePath.size() > j) {
9698 basePath.remove(j);
9704 while (basePath.size() > probeSize) {
9705 basePath.remove(probeSize);
9710 for (int i = 0; i < basePath.size(); i++) {
9711 builder.appendPath(basePath.get(i));