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

/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/snit/
H A Dsnit_tcl83_utils.tcl84 if [catch {eval $cmd $oldName \"$newName\" delete} err] { ; # "
115 proc rename { oldName newName } {
129 #puts "rename: '$oldName' -> '$newName'"
132 set result [namespace eval $callerNs [concat __rename__ [list $oldName $newName]]]
134 set index1 "rename,$oldName"
135 set index2 "rename,::$oldName"
141 #puts "rename: '$cmd' { $oldName -> $newName }"
148 if [catch {eval $cmd $oldName \"$newName\" rename} err] {
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/persist/impl/
H A DEvolver.java278 String oldName = oldFormat.getClassName();
280 Renamer renamer = mutations.getRenamer(oldName, oldVersion, null);
281 Deleter deleter = mutations.getDeleter(oldName, oldVersion, null);
283 mutations.getConverter(oldName, oldVersion, null);
316 newName = oldName;
319 newName = (renamer != null) ? renamer.getNewName() : oldName;
624 String oldName = entry.getKey();
627 String[] oldFileAndDbNames = store.parseDbName(oldName);
646 String oldName = oldField.getName();
650 FIELD_KIND + ": " + oldName;
[all...]
H A DComplexFormat.java1261 String oldName = oldField.getName();
1264 oldMeta = clsMeta.getSecondaryKeys().get(oldName);
1270 (getClassName(), getVersion(), oldName);
1272 (getClassName(), getVersion(), oldName);
1274 (getClassName(), getVersion(), oldName);
1279 "Converter for the same field: " + oldName);
1291 renamer.getNewName() : oldName;
1292 if (!oldName.equals(newName)) {
1296 newToOldFieldMap.put(newName, oldName);
1320 "field is still present: " + oldName);
[all...]
H A DPersistCatalog.java317 String oldName = oldFormat.getClassName();
319 (oldName, oldFormat.getVersion(), null);
321 (renamer != null) ? renamer.getNewName() : oldName;
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DFrame.js87 var oldName = this._name;
112 if (this._name !== oldName)
113 this.dispatchEventToListeners(WebInspector.Frame.Event.NameDidChange, {oldName: oldName});
/macosx-10.10.1/modemccl-25.1/
H A Dcclparser.m176 NSString *oldName = [cclPath lastPathComponent];
177 if ([[oldName pathExtension] isEqual:(id)kCCLFileExtension])
178 oldName = [oldName stringByDeletingPathExtension];
180 if (![mFlatOverrides objectForKey:oldName])
181 [mFlatOverrides setObject:firstModelDict forKey:oldName];
185 cclPath, personality, oldName);
/macosx-10.10.1/tcl-105/tcl_ext/expect/expect/example/
H A Dmultixterm505 foreach oldName [array names ::names] {
506 if {[string match "$name" $::names($oldName)]} {
518 foreach oldName [array names ::names] {
519 verbose "regexp ^[set safe](\[0-9]+)$ $::names($oldName) X num"
520 if {[regexp "^[set safe](\[0-9]+)$" $::names($oldName) X num]} {
/macosx-10.10.1/tcl-105/tcl84/tcl/unix/
H A DtclUnixTest.c456 char *oldName;
465 oldName = tclExecutableName;
480 tclExecutableName = oldName;
452 char *oldName; local
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A DtclPipe.c850 CONST char *oldName;
906 oldName = argv[i];
910 argv[i] = oldName;
845 CONST char *oldName; local
H A DtclTrace.c131 Tcl_Interp *interp, const char *oldName,
1265 const char *oldName, /* Name of command being changed. */
1287 Tcl_DStringAppendElement(&cmd, oldName);
1366 Tcl_UntraceCommand(interp, oldName, untraceFlags,
1254 TraceCommandProc( ClientData clientData, Tcl_Interp *interp, const char *oldName, const char *newName, int flags) argument
H A DtclBasic.c54 const char *oldName, const char *newName, int flags);
2262 const char *oldName, /* Existing command name. */
2280 cmd = Tcl_FindCommand(interp, oldName, NULL, /*flags*/ 0);
2285 " \"", oldName, "\": command doesn't exist", NULL);
2369 * Script for rename traces can delete the command "oldName". Therefore
2412 * Now free the Command structure, if the "oldName" command has been
2918 const char *oldName, /* Command's old name, or NULL if we must get
2941 * "oldName" is deleted.
2973 if (oldName == NULL) {
2978 oldName
2243 TclRenameCommand( Tcl_Interp *interp, const char *oldName, const char *newName) argument
2889 CallCommandTraces( Interp *iPtr, Command *cmdPtr, const char *oldName, const char *newName, int flags) argument
[all...]
H A DtclCmdMZ.c862 char *oldName, *newName;
865 Tcl_WrongNumArgs(interp, 1, objv, "oldName newName");
869 oldName = TclGetString(objv[1]);
871 return TclRenameCommand(interp, oldName, newName);
858 char *oldName, *newName; local
H A DtclIntDecls.h408 CONST char *oldName, CONST char *newName);
1140 int (*tclRenameCommand) (Tcl_Interp *interp, CONST char *oldName, CONST char *newName); /* 96 */
H A Dtcl.h704 Tcl_Interp *interp, CONST char *oldName, CONST char *newName,
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A DtclPipe.c865 CONST char *oldName;
920 oldName = argv[i];
924 argv[i] = oldName;
860 CONST char *oldName; local
H A DtclBasic.c31 Command *cmdPtr, CONST char *oldName,
2075 TclRenameCommand(interp, oldName, newName)
2077 char *oldName; /* Existing command name. */
2095 cmd = Tcl_FindCommand(interp, oldName, (Tcl_Namespace *) NULL,
2101 " \"", oldName, "\": command doesn't exist", (char *) NULL);
2178 * Script for rename traces can delete the command "oldName".
2223 * Now free the Command structure, if the "oldName" command has
2721 CallCommandTraces(iPtr, cmdPtr, oldName, newName, flags)
2725 CONST char *oldName; /* Command's old name, or NULL if we
2750 * command "oldName" i
[all...]
H A DtclCmdMZ.c137 Tcl_Interp *interp, CONST char *oldName,
934 char *oldName, *newName;
937 Tcl_WrongNumArgs(interp, 1, objv, "oldName newName");
941 oldName = Tcl_GetString(objv[1]);
943 return TclRenameCommand(interp, oldName, newName);
4170 TraceCommandProc(clientData, interp, oldName, newName, flags)
4173 CONST char *oldName; /* Name of command being changed. */
4197 Tcl_DStringAppendElement(&cmd, oldName);
4280 Tcl_UntraceCommand(interp, oldName, untraceFlags,
931 char *oldName, *newName; local
H A DtclIntDecls.h280 char * oldName, char * newName));
652 int (*tclRenameCommand) _ANSI_ARGS_((Tcl_Interp * interp, char * oldName, char * newName)); /* 96 */
H A Dtcl.h738 Tcl_Interp *interp, CONST char *oldName, CONST char *newName,
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/tablelist/scripts/
H A DtablelistUtil.tcl673 foreach oldName [array names oldArr $oldCol-*] {
674 regsub "$oldCol-" $oldName "$newCol-" newName
675 set newArr($newName) $oldArr($oldName)
676 unset oldArr($oldName)
700 foreach oldName [array names oldArr k*,$oldCol-*] {
701 regsub -- ",$oldCol-" $oldName ",$newCol-" newName
702 set newArr($newName) $oldArr($oldName)
703 unset oldArr($oldName)
740 foreach oldName [array names oldArr $oldCol-*] {
741 regsub "$oldCol-" $oldName "
[all...]
/macosx-10.10.1/objc4-646/runtime/
H A Dobjc-class.mm1002 const char *oldName = oldHeader ? oldHeader->fname : "??";
1008 name, oldName, newName);
/macosx-10.10.1/ICU-531.30/icuSources/test/cintltst/
H A Dcucdtst.c1588 const char *name, *oldName, *extName, *alias; member in struct:__anon1098
1643 expected=names[i].oldName;
1753 if(length<0 || (length>0 && 0!=strcmp(name, names[i].oldName)) || length!=(uint16_t)strlen(name)) {
1754 log_err("u_charName(0x%lx - 1.0) gets %s length %ld instead of nothing or %s\n", names[i].code, name, length, names[i].oldName);
1758 if(names[i].oldName[0]!=0 /* && length>0 */) {
1759 c=u_charFromName(U_UNICODE_10_CHAR_NAME, names[i].oldName, &errorCode);
1761 log_err("u_charFromName(%s - 1.0) error %s\n", names[i].oldName, u_errorName(errorCode));
1765 log_err("u_charFromName(%s - 1.0) gets 0x%lx instead of 0x%lx\n", names[i].oldName, c, names[i].code);
/macosx-10.10.1/smb-759.0/lib/smb/
H A Dctx.c3013 const char *clientName, *oldName; local
3031 oldName = (char *)(uintptr_t)old_ctx->ct_setup.ioc_gss_client_name;
3032 memcpy(newName, oldName, size);
3047 oldName = (char *)(uintptr_t)old_ctx->ct_setup.ioc_gss_target_name;
3048 memcpy(newName, oldName, size);
/macosx-10.10.1/tcl-105/tcl_ext/mk4tcl/metakit/python/
H A DPyView.cpp345 PWOString oldName(args[0]);
346 int n = o->FindPropIndexByName(oldName);
/macosx-10.10.1/tcl-105/tcl_ext/xotcl/xotcl/generic/
H A Dxotcl.c11850 char *newName, *oldName, *name; local
11905 oldName = ObjStr(oldFullCmdName);
11930 cmd = Tcl_FindCommand(interp, oldName, 0, 0);
11933 oldName, "\": command doesn't exist", local
11942 if (!XOTclpGetObject(interp, oldName)) {
11944 Proc *procPtr = TclFindProc((Interp *)interp, oldName);

Completed in 617 milliseconds