/external/lzma/CPP/7zip/UI/Common/ |
D | DefaultName.cpp | 15 const unsigned dotPos = fileNameLen - (extLen + 1); in GetDefaultName3() local 16 if (fileName[dotPos] == '.') in GetDefaultName3() 17 if (extension.IsEqualTo_NoCase(fileName.Ptr(dotPos + 1))) in GetDefaultName3() 18 return fileName.Left(dotPos) + addSubExtension; in GetDefaultName3() 21 int dotPos = fileName.ReverseFind_Dot(); in GetDefaultName3() local 22 if (dotPos > 0) in GetDefaultName3() 23 return fileName.Left(dotPos) + addSubExtension; in GetDefaultName3()
|
D | ArchiveName.cpp | 21 int dotPos = resultName.ReverseFind_Dot(); in CreateArchiveName() local 22 if (dotPos > 0) in CreateArchiveName() 24 FString archiveName2 = resultName.Left(dotPos); in CreateArchiveName() 64 int dotPos = resultName.ReverseFind_Dot(); in CreateArchiveName2() local 65 if (dotPos > 0) in CreateArchiveName2() 67 FString name2 = resultName.Left(dotPos); in CreateArchiveName2()
|
D | Update.cpp | 294 int dotPos = Name.ReverseFind_Dot(); in ParseFromPath() local 295 if (dotPos < 0) in ParseFromPath() 297 if ((unsigned)dotPos == Name.Len() - 1) in ParseFromPath() 301 const UString ext = Name.Ptr(dotPos + 1); in ParseFromPath() 305 Name.DeleteFrom(dotPos); in ParseFromPath()
|
D | LoadCodecs.cpp | 679 int dotPos = arcPath.ReverseFind_Dot(); in FindFormatForArchiveName() local 680 if (dotPos <= arcPath.ReverseFind_PathSepar()) in FindFormatForArchiveName() 682 const UString ext = arcPath.Ptr(dotPos + 1); in FindFormatForArchiveName()
|
D | OpenArchive.cpp | 1591 int dotPos = fileName.ReverseFind_Dot(); in OpenStream2() local 1592 if (dotPos >= 0) in OpenStream2() 1593 extension = fileName.Ptr(dotPos + 1); in OpenStream2() 2930 int dotPos = fileName.ReverseFind_Dot(); in OpenStream() local 2931 if (dotPos >= 0) in OpenStream() 2932 extension = fileName.Ptr(dotPos + 1); in OpenStream()
|
/external/lzma/CPP/7zip/Common/ |
D | FilePathAutoRename.cpp | 22 int dotPos = path.ReverseFind_Dot(); in AutoRenamePath() local 27 if (dotPos > slashPos + 1) in AutoRenamePath() 29 name.DeleteFrom(dotPos); in AutoRenamePath() 30 extension = path.Ptr(dotPos); in AutoRenamePath()
|
/external/lzma/CPP/7zip/UI/FileManager/ |
D | SysIconUtils.cpp | 157 int dotPos = -1; in GetIconIndex() local 165 dotPos = i; in GetIconIndex() 178 if ((attrib & FILE_ATTRIBUTE_DIRECTORY) != 0 || dotPos < 0) in GetIconIndex() 209 const wchar_t *ext = fileName + dotPos + 1; in GetIconIndex() 244 GetRealIconIndex(us2fs(fileName + dotPos), attrib, pair.IconIndex); in GetIconIndex()
|
/external/angle/src/libANGLE/renderer/cl/ |
D | cl_util.cpp | 20 const std::string::size_type dotPos = version.find('.'); in ExtractCLVersion() local 21 if (spacePos == std::string::npos || dotPos == std::string::npos) in ExtractCLVersion() 28 const long minor = std::strtol(&version[dotPos + 1u], nullptr, 10); in ExtractCLVersion()
|
/external/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | DescriptorPool.cs | 161 int dotPos = fullName.LastIndexOf('.'); in AddSymbol() 165 if (dotPos == -1) in AddSymbol() 171 … message = "\"" + fullName.Substring(dotPos + 1) + "\" is already defined in \"" + in AddSymbol() 172 fullName.Substring(0, dotPos) + "\"."; in AddSymbol()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/javaparsermodel/contexts/ |
D | CompilationUnitContext.java | 127 int dotPos = name.indexOf('.'); in solveType() local 129 if (dotPos > -1) { in solveType() 130 prefix = name.substring(0, dotPos); in solveType() 142 qName = qName + name.substring(dotPos); in solveType()
|
/external/deqp/framework/delibs/decpp/ |
D | deFilePath.cpp | 164 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/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/contexts/ |
D | CompilationUnitContext.java | 175 int dotPos = name.indexOf('.'); in solveType() local 177 if (dotPos > -1) { in solveType() 178 prefix = name.substring(0, dotPos); in solveType() 190 qName = qName + name.substring(dotPos); in solveType()
|
/external/lzma/CPP/7zip/Archive/ |
D | SplitHandler.cpp | 144 int dotPos = name.ReverseFind_Dot(); in Open2() local 145 const UString prefix = name.Left(dotPos + 1); in Open2() 146 const UString ext = name.Ptr(dotPos + 1); in Open2()
|
/external/lzma/CPP/7zip/Archive/7z/ |
D | 7zUpdate.cpp | 646 int dotPos = ui.Name.ReverseFind_Dot(); in CRefItem() local 647 if (dotPos <= slashPos) in CRefItem() 651 ExtensionPos = dotPos + 1; in CRefItem() 827 int dotPos = ui.Name.ReverseFind_Dot(); in GetFilterGroup() local 838 if (dotPos > slashPos) in GetFilterGroup() 839 ext = ui.Name.Ptr(dotPos + 1); in GetFilterGroup() 2349 int dotPos = ui.Name.ReverseFind_Dot(); in Update() local 2350 const wchar_t *ext = ui.Name.Ptr(dotPos <= slashPos ? ui.Name.Len() : dotPos + 1); in Update()
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | GenerateProductionData.java | 473 int dotPos = file.lastIndexOf('.'); in copyFilesAndReturnIsEmpty() local 474 String baseName = dotPos >= 0 ? file.substring(0, file.length()-dotPos) : file; in copyFilesAndReturnIsEmpty()
|
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
D | Demo.java | 597 int dotPos = targetFile.lastIndexOf('.'); in genTestFile() local 598 if (dotPos >= 0) targetFile = targetFile.substring(0,dotPos); in genTestFile()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/ |
D | com_github_javaparser_symbolsolver_javaparsermodel_contexts_CompilationUnitContext.txt | 37 Line 130) name.substring(0, dotPos) ==> java.lang.String.substring(int, int) 48 Line 142) name.substring(dotPos) ==> java.lang.String.substring(int)
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | NumberFormatTest.java | 4277 int dotPos = test[2].indexOf('.'); in TestCurrencyPlurals() local 4278 int decimals = dotPos < 0 ? 0 : test[2].length() - dotPos - 1; in TestCurrencyPlurals() 4279 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/ |
D | NumberFormatTest.java | 4280 int dotPos = test[2].indexOf('.'); in TestCurrencyPlurals() local 4281 int decimals = dotPos < 0 ? 0 : test[2].length() - dotPos - 1; in TestCurrencyPlurals() 4282 int digits = dotPos < 0 ? test[2].length() : test[2].length() - 1; in TestCurrencyPlurals()
|