Home
last modified time | relevance | path

Searched refs:dotPos (Results 1 – 25 of 28) sorted by relevance

12

/external/lzma/CPP/7zip/UI/Common/
DDefaultName.cpp14 int dotPos = fileNameLength - (extLength + 1); in GetDefaultName3() local
15 if (fileName[dotPos] == '.') in GetDefaultName3()
16 if (extension.IsEqualToNoCase(fileName.Ptr(dotPos + 1))) in GetDefaultName3()
17 return fileName.Left(dotPos) + addSubExtension; in GetDefaultName3()
19 int dotPos = fileName.ReverseFind(L'.'); in GetDefaultName3() local
20 if (dotPos > 0) in GetDefaultName3()
21 return fileName.Left(dotPos) + addSubExtension; in GetDefaultName3()
DArchiveName.cpp17 int dotPos = resultName.ReverseFind(FTEXT('.')); in CreateArchiveName() local
18 if (dotPos > 0) in CreateArchiveName()
20 FString archiveName2 = resultName.Left(dotPos); in CreateArchiveName()
55 int dotPos = resultName.ReverseFind('.'); in CreateArchiveName2() local
56 if (dotPos > 0) in CreateArchiveName2()
58 FString archiveName2 = resultName.Left(dotPos); in CreateArchiveName2()
DExtractingFilePath.cpp58 int dotPos = name.Find(L'.'); in CheckTail() local
59 if (dotPos < 0) in CheckTail()
60 dotPos = name.Len(); in CheckTail()
61 UString s = name.Left(dotPos); in CheckTail()
DLoadCodecs.cpp609 int dotPos = arcPath.ReverseFind(L'.'); in FindFormatForArchiveName() local
610 if (dotPos < 0 || dotPos < slashPos) in FindFormatForArchiveName()
612 const UString ext = arcPath.Ptr(dotPos + 1); in FindFormatForArchiveName()
DUpdate.cpp282 int dotPos = Name.ReverseFind(L'.'); in ParseFromPath() local
283 if (dotPos < 0) in ParseFromPath()
285 if ((unsigned)dotPos == Name.Len() - 1) in ParseFromPath()
291 const UString ext = Name.Ptr(dotPos + 1); in ParseFromPath()
295 Name.DeleteFrom(dotPos); in ParseFromPath()
DOpenArchive.cpp1345 int dotPos = fileName.ReverseFind(L'.'); in OpenStream2() local
1346 if (dotPos >= 0) in OpenStream2()
1347 extension = fileName.Ptr(dotPos + 1); in OpenStream2()
2614 int dotPos = fileName.ReverseFind(L'.'); in OpenStream() local
2615 if (dotPos >= 0) in OpenStream()
2616 extension = fileName.Ptr(dotPos + 1); in OpenStream()
/external/lzma/CPP/7zip/Common/
DFilePathAutoRename.cpp28 int dotPos = fullProcessedPath.ReverseFind(FTEXT('.')); in AutoRenamePath() local
37 if (dotPos > slashPos && dotPos > 0) in AutoRenamePath()
39 name.SetFrom(fullProcessedPath, dotPos); in AutoRenamePath()
40 extension = fullProcessedPath.Ptr(dotPos); in AutoRenamePath()
/external/lzma/CPP/7zip/UI/FileManager/
DSysIconUtils.cpp155 int dotPos = -1; in GetIconIndex() local
163 dotPos = i; in GetIconIndex()
176 if ((attrib & FILE_ATTRIBUTE_DIRECTORY) != 0 || dotPos < 0) in GetIconIndex()
207 const wchar_t *ext = fileName + dotPos + 1; in GetIconIndex()
242 GetRealIconIndex(us2fs(fileName + dotPos), attrib, pair.IconIndex); in GetIconIndex()
/external/lzma/CPP/7zip/Archive/7z/
D7zUpdate.cpp60 int dotPos = Name.ReverseFind(L'.'); in GetExtensionPos() local
61 if (dotPos < 0 || (dotPos < slashPos && slashPos >= 0)) in GetExtensionPos()
63 return dotPos + 1; in GetExtensionPos()
267 int dotPos = ui.Name.ReverseFind(L'.'); in CRefItem() local
268 if (dotPos < 0 || dotPos < slashPos) in CRefItem()
272 ExtensionPos = dotPos + 1; in CRefItem()
905 int dotPos = ui.Name.ReverseFind(L'.'); in Update() local
906 if (dotPos >= 0) in Update()
907 filteredGroup = IsExeExt(ui.Name.Ptr(dotPos + 1)); in Update()
/external/deqp/framework/delibs/decpp/
DdeFilePath.cpp164 size_t dotPos = baseName.find_last_of('.'); in getFileExtension() local
165 if (dotPos == std::string::npos) in getFileExtension()
168 return baseName.substr(dotPos+1); in getFileExtension()
/external/lzma/CPP/7zip/Archive/
DSplitHandler.cpp159 int dotPos = name.ReverseFind('.'); in Open2() local
160 const UString prefix = name.Left(dotPos + 1); in Open2()
161 const UString ext = name.Ptr(dotPos + 1); in Open2()
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
DDemo.java599 int dotPos = targetFile.lastIndexOf('.'); in genTestFile() local
600 if (dotPos >= 0) targetFile = targetFile.substring(0,dotPos); in genTestFile()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DNumberFormatTest.java4021 int dotPos = test[2].indexOf('.'); in TestCurrencyPlurals() local
4022 int decimals = dotPos < 0 ? 0 : test[2].length() - dotPos - 1; in TestCurrencyPlurals()
4023 int digits = dotPos < 0 ? test[2].length() : test[2].length() - 1; in TestCurrencyPlurals()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DNumberFormatTest.java4025 int dotPos = test[2].indexOf('.'); in TestCurrencyPlurals() local
4026 int decimals = dotPos < 0 ? 0 : test[2].length() - dotPos - 1; in TestCurrencyPlurals()
4027 int digits = dotPos < 0 ? test[2].length() : test[2].length() - 1; in TestCurrencyPlurals()
/external/guice/extensions/struts2/lib/
Dant-1.6.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/dagger2/lib/
Dauto-value-1.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/jarjar/lib/
Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/icu/tools/srcgen/currysrc/libs/
Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_ ...
/external/robolectric/v3/runtime/
Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...

12