HomeSort by relevance Sort by last modified time
    Searched full:dotpos (Results 1 - 25 of 33) sorted by null

1 2

  /external/lzma/CPP/7zip/UI/Common/
DefaultName.cpp 14 int dotPos = fileNameLength - (extLength + 1);
15 if (fileName[dotPos] == '.')
16 if (extension.IsEqualToNoCase(fileName.Ptr(dotPos + 1)))
17 return fileName.Left(dotPos) + addSubExtension;
19 int dotPos = fileName.ReverseFind(L'.');
20 if (dotPos > 0)
21 return fileName.Left(dotPos) + addSubExtension;
ArchiveName.cpp 17 int dotPos = resultName.ReverseFind(FTEXT('.'));
18 if (dotPos > 0)
20 FString archiveName2 = resultName.Left(dotPos);
55 int dotPos = resultName.ReverseFind('.');
56 if (dotPos > 0)
58 FString archiveName2 = resultName.Left(dotPos);
ExtractingFilePath.cpp 58 int dotPos = name.Find(L'.');
59 if (dotPos < 0)
60 dotPos = name.Len();
61 UString s = name.Left(dotPos);
LoadCodecs.cpp 609 int dotPos = arcPath.ReverseFind(L'.');
610 if (dotPos < 0 || dotPos < slashPos)
612 const UString ext = arcPath.Ptr(dotPos + 1);
Update.cpp 282 int dotPos = Name.ReverseFind(L'.');
283 if (dotPos < 0)
285 if ((unsigned)dotPos == Name.Len() - 1)
291 const UString ext = Name.Ptr(dotPos + 1);
295 Name.DeleteFrom(dotPos);
    [all...]
OpenArchive.cpp     [all...]
  /external/lzma/CPP/7zip/Common/
FilePathAutoRename.cpp 28 int dotPos = fullProcessedPath.ReverseFind(FTEXT('.'));
37 if (dotPos > slashPos && dotPos > 0)
39 name.SetFrom(fullProcessedPath, dotPos);
40 extension = fullProcessedPath.Ptr(dotPos);
  /external/lzma/CPP/7zip/UI/FileManager/
SysIconUtils.cpp 155 int dotPos = -1;
163 dotPos = i;
176 if ((attrib & FILE_ATTRIBUTE_DIRECTORY) != 0 || dotPos < 0)
207 const wchar_t *ext = fileName + dotPos + 1;
242 GetRealIconIndex(us2fs(fileName + dotPos), attrib, pair.IconIndex);
  /frameworks/base/core/java/android/webkit/
MimeTypeMap.java 63 int dotPos = filename.lastIndexOf('.');
64 if (0 <= dotPos) {
65 return filename.substring(dotPos + 1);
  /external/lzma/CPP/7zip/Archive/
SplitHandler.cpp 159 int dotPos = name.ReverseFind('.');
160 const UString prefix = name.Left(dotPos + 1);
161 const UString ext = name.Ptr(dotPos + 1);
  /external/lzma/CPP/7zip/Archive/7z/
7zUpdate.cpp 60 int dotPos = Name.ReverseFind(L'.');
61 if (dotPos < 0 || (dotPos < slashPos && slashPos >= 0))
63 return dotPos + 1;
267 int dotPos = ui.Name.ReverseFind(L'.');
268 if (dotPos < 0 || dotPos < slashPos)
272 ExtensionPos = dotPos + 1;
905 int dotPos = ui.Name.ReverseFind(L'.');
906 if (dotPos >= 0)
    [all...]
  /frameworks/base/tools/aapt2/compile/
Compile.cpp 91 size_t dotPos = filename.find('.');
92 if (dotPos != std::string::npos) {
93 extension = name.substr(dotPos + 1, filename.size() - (dotPos + 1));
94 name = name.substr(0, dotPos);
  /external/deqp/framework/delibs/decpp/
deFilePath.cpp 164 size_t dotPos = baseName.find_last_of('.');
165 if (dotPos == std::string::npos)
168 return baseName.substr(dotPos+1);
  /external/zopfli/src/zopflipng/
zopflipng_bin.cc 40 size_t dotpos = nodir.find_last_of('.'); local
41 if (dotpos == (size_t)(-1)) {
45 *file = nodir.substr(0, dotpos);
46 *ext = nodir.substr(dotpos);
  /external/protobuf/java/src/main/java/com/google/protobuf/
Descriptors.java 1960 final int dotpos = scopeToTry.lastIndexOf("."); local
2025 final int dotpos = fullName.lastIndexOf('.'); local
2080 final int dotpos = fullName.lastIndexOf('.'); local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/sms/
DatabaseMessages.java 632 final int dotPos = path.lastIndexOf('.');
633 if (0 <= dotPos) {
634 extension = path.substring(dotPos + 1);
    [all...]
  /external/llvm/lib/Linker/
IRMover.cpp 801 size_t DotPos = ST->getName().rfind('.');
802 if (DotPos == 0 || DotPos == StringRef::npos ||
804 !isdigit(static_cast<unsigned char>(ST->getName()[DotPos + 1])))
808 StructType *DST = DstM.getTypeByName(ST->getName().substr(0, DotPos));
    [all...]
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
Demo.java 599 int dotPos = targetFile.lastIndexOf('.');
600 if (dotPos >= 0) targetFile = targetFile.substring(0,dotPos);
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
NumberFormatTest.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
NumberFormatTest.java     [all...]
  /external/protobuf/src/google/protobuf/
descriptor.cc 2983 string::size_type dotpos = placeholder_full_name->find_last_of('.'); local
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp 565 std::string::size_type DotPos = Filename.rfind('.');
567 if (DotPos == std::string::npos) {
572 std::string Ext = std::string(Filename.begin()+DotPos+1, Filename.end());
    [all...]
RewriteModernObjC.cpp 634 std::string::size_type DotPos = Filename.rfind('.');
636 if (DotPos == std::string::npos) {
641 std::string Ext = std::string(Filename.begin()+DotPos+1, Filename.end());
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
plexus-utils-3.0.17.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-utils/2.0.5/
plexus-utils-2.0.5.jar 

Completed in 723 milliseconds

1 2