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

12

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DNamedRunnable.java30 String oldName = Thread.currentThread().getName();
35 Thread.currentThread().setName(oldName);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DSettings.js399 for (var oldName in settingNames) {
400 var newName = settingNames[oldName];
401 var oldNameH = oldName + "H";
404 var oldSetting = WebInspector.settings.createSetting(oldName, undefined).get();
409 delete window.localStorage[oldName];
435 for (var oldName in settingNames) {
436 var newName = settingNames[oldName];
438 var oldSetting = WebInspector.settings.createSetting(oldName, undefined).get();
439 var invert = "WebInspector.Drawer.showOnLoad" === oldName;
441 delete window.localStorage[oldName];
[all...]
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dmanage_profile_browsertest.js572 var oldName = nameEl.value;
575 expectEquals(oldName, nameEl.value);
618 var oldName = nameEl.value;
621 nameEl.value = oldName;
626 expectEquals(oldName, nameEl.value);
648 var oldName = nameEl.value;
650 expectEquals(oldName, nameEl.value);
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DTypeData.java253 private boolean update(ClassPool cp, String oldName, String typeName) throws BadBytecode { argument
256 else if (oldName == null)
258 else if (oldName.equals(typeName))
261 && oldName.equals("[Ljava.lang.Object;")) {
271 cache = cp.get(oldName);
/external/javassist/src/main/javassist/bytecode/
H A DConstPool.java994 * @param oldName the replaced name (JVM-internal representation).
997 public void renameClass(String oldName, String newName) { argument
1003 ci.renameClass(this, oldName, newName);
1132 public void renameClass(ConstPool cp, String oldName, String newName) {} argument
1189 public void renameClass(ConstPool cp, String oldName, String newName) { argument
1191 if (nameStr.equals(oldName))
1194 String nameStr2 = Descriptor.rename(nameStr, oldName, newName);
1201 String oldName = cp.getUtf8Info(name);
1202 if (oldName.charAt(0) == '[') {
1203 String newName = Descriptor.rename(oldName, ma
1260 renameClass(ConstPool cp, String oldName, String newName) argument
[all...]
/external/sonivox/jet_tools/JetCreator/
H A DJetUtils.py48 oldName = objSave.segname
49 i = len(oldName) - 1
51 if not oldName[i].isdigit():
54 oldName = oldName[0:i+1]
57 newName = oldName + str(i)
63 oldName = objSave.event_name
64 i = len(oldName) - 1
66 if not oldName[i].isdigit():
69 oldName
[all...]
/external/chromium_org/chrome/browser/resources/options/
H A Dmanage_profile_overlay.js432 var oldName = this.profileInfo_.name;
435 if (mode == 'manage' && oldName == newName)
/external/jmdns/src/javax/jmdns/impl/
H A DDNSRecord.java753 String oldName = info.getQualifiedName().toLowerCase();
755 dns.getServices().remove(oldName);
780 String oldName = info.getQualifiedName().toLowerCase();
782 dns.getServices().remove(oldName);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElement.h580 void updateName(const AtomicString& oldName, const AtomicString& newName);
613 void updateNamedItemRegistration(const AtomicString& oldName, const AtomicString& newName);
614 void updateExtraNamedItemRegistration(const AtomicString& oldName, const AtomicString& newName);
H A DElement.cpp2719 inline void Element::updateName(const AtomicString& oldName, const AtomicString& newName)
2724 if (oldName == newName)
2728 updateNamedItemRegistration(oldName, newName);
2846 void Element::updateNamedItemRegistration(const AtomicString& oldName, const AtomicString& newName)
2851 if (!oldName.isEmpty())
2852 toHTMLDocument(document()).removeNamedItem(oldName);
2972 const AtomicString& oldName = getNameAttribute();
2975 if (!oldName.isNull() || !newName.isNull())
2976 updateName(oldName, newName);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
H A DExtensionAPI.js414 function defineDeprecatedProperty(object, className, oldName, newName)
420 console.warn(className + "." + oldName + " is deprecated. Use " + className + "." + newName + " instead");
425 object.__defineGetter__(oldName, getter);
/external/lzma/CPP/Windows/
H A DFileDir.cpp512 UString oldName = GetLastPart(oldPath);
514 int nonDotsLen = oldName.Length() - (len - i);
515 if (nonDotsLen == 0 || newName.CompareNoCase(oldName.Left(nonDotsLen)) != 0)
/external/deqp/modules/glshared/
H A DglsLifetimeTests.cpp967 GLuint replaceName (Type& type, GLuint oldName, TestLog& log) argument
976 << "// Type does not require Gen* for binding, reusing old id " << oldName << "."
979 return oldName;
/external/javassist/src/main/javassist/
H A DCtClass.java376 * name <code>oldName</code> in the class file.
378 * @param oldName replaced class name
381 public void replaceClassName(String oldName, String newName) { argument
/external/svox/pico/lib/
H A Dpicoos.h353 picoos_bool picoos_Rename(picoos_char oldName[], picoos_char newName[]);
/external/yaffs2/yaffs2/
H A Dyaffs_guts.h811 int yaffs_RenameObject(yaffs_Object * oldDir, const YCHAR * oldName,
H A Dyaffs_guts.c1870 int yaffs_RenameObject(yaffs_Object * oldDir, const YCHAR * oldName, argument
1882 if (oldDir == newDir && yaffs_strcmp(oldName, newName) == 0) {
1887 obj = yaffs_FindObjectByName(oldDir, oldName);
3004 YCHAR oldName[YAFFS_MAX_NAME_LENGTH + 1]; local
3020 memcpy(oldName, oh->name, sizeof(oh->name));
3054 memcpy(oh->name, oldName, sizeof(oh->name));
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcucdtst.c1589 const char *name, *oldName, *extName, *alias; member in struct:__anon12257
1644 expected=names[i].oldName;
1754 if(length<0 || (length>0 && 0!=strcmp(name, names[i].oldName)) || length!=(uint16_t)strlen(name)) {
1755 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);
1759 if(names[i].oldName[0]!=0 /* && length>0 */) {
1760 c=u_charFromName(U_UNICODE_10_CHAR_NAME, names[i].oldName, &errorCode);
1762 log_err("u_charFromName(%s - 1.0) error %s\n", names[i].oldName, u_errorName(errorCode));
1766 log_err("u_charFromName(%s - 1.0) gets 0x%lx instead of 0x%lx\n", names[i].oldName, c, names[i].code);
/external/icu/icu4c/source/test/cintltst/
H A Dcucdtst.c1588 const char *name, *oldName, *extName, *alias; member in struct:__anon22058
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);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.test.performance_3.6.0.v20091014.jarMETA-INF/MANIFEST.MF plugin.properties about.html scripts/cs.sh scripts/derby. ...
H A Dorg.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.launching_3.5.100.v20100526.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...

Completed in 572 milliseconds

12