Home
last modified time | relevance | path

Searched refs:old_name (Results 1 – 18 of 18) sorted by relevance

/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
Dtemplate.rb154 def alias_template( new_name, old_name ) argument
155 new_name, old_name = new_name.to_s.dup.freeze, old_name.to_s
156 context = self::TEMPLATES.fetch( old_name.to_s ) do
158 "undefined template `%s' for template group %p" % [ old_name, self ]
/external/chromium_org/chrome/browser/profiles/
Dgaia_info_update_service_unittest.cc104 base::string16 old_name = GetCache()->GetNameOfProfileAtIndex(index); in TEST_F() local
116 EXPECT_EQ(old_name, GetCache()->GetNameOfProfileAtIndex(index)); in TEST_F()
126 base::string16 old_name = GetCache()->GetNameOfProfileAtIndex(index); in TEST_F() local
148 EXPECT_EQ(old_name, GetCache()->GetNameOfProfileAtIndex(index)); in TEST_F()
/external/chromium_org/sandbox/win/src/
Dbroker_services.cc489 string16 old_name = LookupAppContainer(sid); in InstallAppContainer() local
490 if (old_name.empty()) in InstallAppContainer()
493 if (old_name != name) in InstallAppContainer()
/external/mesa3d/src/mesa/drivers/dri/nouveau/
Dnouveau_context.c279 uint32_t old_name; in nouveau_update_renderbuffers() local
310 ret = nouveau_bo_name_get(s->bo, &old_name); in nouveau_update_renderbuffers()
315 if (!ret && old_name != buffers[i].name) in nouveau_update_renderbuffers()
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
Dnouveau_context.c279 uint32_t old_name; in nouveau_update_renderbuffers() local
310 ret = nouveau_bo_name_get(s->bo, &old_name); in nouveau_update_renderbuffers()
315 if (!ret && old_name != buffers[i].name) in nouveau_update_renderbuffers()
/external/chromium/chrome/browser/sync/engine/
Dprocess_commit_response_command.cc420 const string& old_name = in OverrideClientFieldsAfterCommit() local
423 if (!server_name.empty() && old_name != server_name) { in OverrideClientFieldsAfterCommit()
424 VLOG(1) << "During commit, server changed name: " << old_name in OverrideClientFieldsAfterCommit()
Dsyncapi.cc480 string old_name = entry_->Get(syncable::NON_UNIQUE_NAME); in SetTitle() local
482 if (server_legal_name == old_name) in SetTitle()
/external/chromium_org/extensions/common/
Dextension.h491 std::string old_name; member
495 const std::string& old_name);
Dextension.cc777 const std::string& old_name) in InstalledExtensionInfo() argument
780 old_name(old_name) {} in InstalledExtensionInfo()
/external/valgrind/main/include/
Dpub_tool_libcfile.h86 extern Int VG_(rename) ( const Char* old_name, const Char* new_name );
/external/chromium_org/chrome/browser/prefs/
Dpref_model_associator.cc57 const char* const old_name; member
66 return kMigratedPreferences[i].old_name; in GetOldMigratedPreferenceName()
73 if (!strcmp(kMigratedPreferences[i].old_name, old_preference_name)) in GetNewMigratedPreferenceName()
/external/chromium_org/chrome/browser/apps/
Dshortcut_manager.cc129 base::string16 old_title = UTF8ToUTF16(installed_info->old_name); in Observe()
/external/oprofile/libpp/
Dxml_utils.cpp901 string old_name = in add_modules() local
903 if (nr_modules > 0 && old_name != module) { in add_modules()
906 if (!m.is_closed(old_name)) in add_modules()
911 if (nr_modules == 0 || module != old_name) { in add_modules()
/external/chromium_org/ppapi/tests/
Dtest_url_loader.cc275 std::string old_name("test_case.html"); in GetReachableAbsoluteURL() local
276 size_t index = url.find(old_name); in GetReachableAbsoluteURL()
278 url.replace(index, old_name.length(), file_name); in GetReachableAbsoluteURL()
/external/valgrind/main/coregrind/
Dm_libcfile.c380 Int VG_(rename) ( const Char* old_name, const Char* new_name ) in VG_()
382 SysRes res = VG_(do_syscall2)(__NR_rename, (UWord)old_name, (UWord)new_name); in VG_()
/external/kernel-headers/original/linux/
Dnfs_xdr.h646 const struct qstr * old_name; member
/external/chromium_org/chrome/browser/extensions/
Dextension_service.cc2343 std::string old_name; in FinishInstallation() local
2346 old_name = existing_extension->name(); in FinishInstallation()
2348 extensions::InstalledExtensionInfo details(extension, is_update, old_name); in FinishInstallation()
Dextension_service_unittest.cc699 old_name_ = installed_info->old_name; in Observe()