Searched refs:BaseName (Results 1 - 25 of 64) sorted by relevance

123

/external/chromium/chrome/browser/
H A Dbrowsing_data_indexed_db_helper_browsertest.cc50 EXPECT_EQ(FilePath(file1).value(), result[0].file_path.BaseName().value());
51 EXPECT_EQ(FilePath(file2).value(), result[1].file_path.BaseName().value());
73 EXPECT_EQ(FilePath(file).value(), result[0].file_path.BaseName().value());
H A Dbrowsing_data_local_storage_helper_browsertest.cc131 ASSERT_FALSE(FilePath(kTestFile0) == file_path.BaseName());
159 EXPECT_EQ(FilePath(file1).value(), result[0].file_path.BaseName().value());
160 EXPECT_EQ(FilePath(file2).value(), result[1].file_path.BaseName().value());
181 EXPECT_EQ(FilePath(file).value(), result[0].file_path.BaseName().value());
H A Dshell_integration_linux.cc104 std::string icon_name = temp_file_path.BaseName().RemoveExtension().value();
115 DCHECK_EQ(shortcut_filename.BaseName().value(), shortcut_filename.value());
356 return FilePath(alternative_filepath).BaseName();
H A Dshell_integration_win.cc51 profile_path.BaseName().value() ==
57 std::wstring basenames = profile_path.DirName().BaseName().value() +
58 L"." + profile_path.BaseName().value();
H A Dspellcheck_host_impl.cc69 return dict_dir.Append(first_choice.BaseName());
227 std::string bdict_file = bdict_file_path_.BaseName().MaybeAsASCII();
/external/chromium/chrome/browser/chromeos/login/
H A Dlogin_browsertest.cc84 EXPECT_EQ("user", profile->GetPath().BaseName().value());
91 EXPECT_EQ("Default", profile->GetPath().BaseName().value());
H A Dparallel_authenticator_unittest.cc248 ReadLocalaccountFile(auth_.get(), tmp_file_path.BaseName().value());
257 ReadLocalaccountFile(auth_.get(), tmp_file_path.BaseName().value());
266 ReadLocalaccountFile(auth_.get(), tmp_file_path.BaseName().value());
679 ReadLocalaccountFile(auth_.get(), tmp_file_path.BaseName().value());
720 ReadLocalaccountFile(auth_.get(), tmp_file_path.BaseName().value());
/external/chromium/chrome/browser/parsers/
H A Dmetadata_parser_filebase.cc25 value = WideToUTF8(path_.BaseName().value());
28 properties_[MetadataParser::kPropertyTitle] = path_.BaseName().value();
H A Dmetadata_parser_filebase_unittest.cc35 return test_file_.BaseName().value();
37 return WideToASCII(test_file_.BaseName().value());
/external/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileWrapper.cpp138 char* BaseName = 0; local
156 BaseName = ExeName + Idx + 1;
163 if (BaseName != 0 && !strcmp("oprofiled", BaseName)) {
/external/chromium/chrome/browser/autofill/
H A Ddata_driven_test.cc46 SCOPED_TRACE(input_file.BaseName().value());
55 input_file.BaseName().StripTrailingSeparators().ReplaceExtension(
/external/chromium/chrome/browser/download/
H A Dsave_item.cc118 file_name_ = full_path_.BaseName();
H A Ddownload_item.h294 return target_name_ != full_path_.BaseName();
/external/chromium/net/disk_cache/
H A Dcache_util_posix.cc32 FilePath destination = to_path.Append(name.BaseName());
/external/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp137 StringRef BaseName = F->getName(); local
138 if (BaseName[0] == '\1')
139 return (void*)Dyld.getSymbolLoadAddress(BaseName.substr(1));
141 + BaseName).str());
/external/chromium/base/
H A Dfile_util.cc51 FilePath::StringType file_name = path.BaseName().value();
196 return FILE_PATH_LITERAL(".") == path.BaseName().value();
200 return FILE_PATH_LITERAL("..") == path.BaseName().value();
406 FilePath::StringType basename = path.BaseName().value();
H A Dfile_path.h40 // final path component (BaseName), and appending a relative pathname string
183 // and BaseName().value() on each child component.
213 // this is the only situation in which BaseName will return an absolute path.
214 FilePath BaseName() const;
232 // extension. Returns "" if BaseName() == "." or "..".
244 // Returns "" if BaseName() == "." or "..".
/external/llvm/lib/Transforms/Utils/
H A DSSAUpdater.cpp364 SSAUpdater &S, StringRef BaseName) : SSA(S) {
373 if (BaseName.empty())
374 BaseName = SomeVal->getName();
375 SSA.Initialize(SomeVal->getType(), BaseName);
363 LoadAndStorePromoter(const SmallVectorImpl<Instruction*> &Insts, SSAUpdater &S, StringRef BaseName) argument
/external/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp76 std::string BaseName = macroName(Base->getName()); local
93 << BaseName << "(Type, Base)\n"; local
/external/chromium/base/files/
H A Dfile_path_watcher_win.cc241 child_dirs.push_back(watched_path.BaseName());
/external/chromium/chrome/browser/chromeos/
H A Dplugin_selection_policy.cc145 string name = path.BaseName().value();
/external/chromium/chrome/browser/extensions/
H A Dextension_protocols.cc143 FilePath relative_path = directory_path.BaseName().Append(
/external/chromium/chrome/common/extensions/
H A Dextension_file_util.cc323 FilePath basename = extension_path.BaseName();
361 if (version_dir.BaseName() != iter->second.BaseName()) {
505 FilePath::StringType filename = file.BaseName().value();
/external/chromium/chrome/common/
H A Dzip_unittest.cc74 if (expect_hidden_files || iter->BaseName().value()[0] != '.')
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1135 inline internal::Matcher<CXXRecordDecl> isDerivedFrom(StringRef BaseName) { argument
1136 assert(!BaseName.empty());
1137 return isDerivedFrom(hasName(BaseName));
1147 inline internal::Matcher<CXXRecordDecl> isA(StringRef BaseName) { argument
1148 assert(!BaseName.empty());
1149 return isA(hasName(BaseName));

Completed in 396 milliseconds

123