HomeSort by relevance Sort by last modified time
    Searched refs:oldName (Results 1 - 25 of 38) sorted by null

1 2

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/changes/
AndroidTypeMoveChange.java 38 * @param oldName the old name
41 IDocument document, Map<String, String> elements, String newName, String oldName) {
42 super(androidManifest, manager, document, elements, newName, oldName);
AndroidTypeRenameChange.java 49 * @param oldName the old name
52 IDocument document, Map<String, String> elements, String newName, String oldName) {
57 this.mOldName = oldName;
AndroidDocumentChange.java 104 * Finds the attribute with values oldName
109 * @param oldName the value
114 String oldName) {
126 if (fullName != null && fullName.equals(oldName)) {
263 * @param oldName the old value
269 protected TextEdit createTextEdit(String elementName, String attributeName, String oldName,
273 Attr attr = findAttribute(xmlDoc, elementName, attributeName, oldName);
AndroidPackageRenameChange.java 52 * @param oldName the old name
56 IDocument document, Map<String, String> elements, String newName, String oldName,
63 this.mOldName = oldName;
AndroidLayoutChange.java 228 * @param oldName the old value
233 private TextEdit createTextEdit(String elementName, String argumentName, String oldName,
237 Attr attr = findAttribute(xmlDoc, elementName, argumentName, oldName);
249 * Finds the attribute with values oldName
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_noderemovechildgetnodename.java 72 String oldName;
78 oldName = oldChild.getNodeName();
82 assertEquals("nodeName", oldName, childName);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
IEmailService.aidl 38 boolean renameFolder(long accountId, String oldName, String newName);
EmailServiceProxy.java 390 * @param oldName the name of the existing folder
394 public boolean renameFolder(long accountId, String oldName, String newName)
  /frameworks/base/core/java/android/animation/
ObjectAnimator.java 83 String oldName = valuesHolder.getPropertyName();
85 mValuesMap.remove(oldName);
105 String oldName = valuesHolder.getPropertyName();
107 mValuesMap.remove(oldName);
  /frameworks/base/media/libdrm/mobile1/include/objmng/
drm_file.h 136 * Any open handles on the file specified by oldName become invalid after
139 * @param oldName Current file name (unopened), UCS-2 encoded.
140 * @param oldNameChars Number of characters encoded on oldName.
146 int32_t DRM_file_rename(const uint16_t* oldName,
  /external/javassist/src/main/javassist/bytecode/stackmap/
TypeData.java 253 private boolean update(ClassPool cp, String oldName, String typeName) throws BadBytecode {
256 else if (oldName == null)
258 else if (oldName.equals(typeName))
261 && oldName.equals("[Ljava.lang.Object;")) {
271 cache = cp.get(oldName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewRefactoring.java 170 String oldName = element.getNodeName();
171 int open = text.indexOf(oldName);
172 int close = text.lastIndexOf(oldName);
178 int oldLength = oldName.length();
183 int oldLength = oldName.length();
ChangeLayoutRefactoring.java 236 String oldName = layout.getNodeName();
237 int open = text.indexOf(oldName);
238 int close = text.lastIndexOf(oldName);
241 int oldLength = oldName.length();
373 String oldName = child.getNodeName();
374 if (oldName.equals(LINEAR_LAYOUT)) {
376 int open = text.indexOf(oldName);
377 int close = text.lastIndexOf(oldName);
380 int oldLength = oldName.length();
  /external/javassist/src/main/javassist/bytecode/
ConstPool.java 994 * @param oldName the replaced name (JVM-internal representation).
997 public void renameClass(String oldName, String newName) {
1003 ci.renameClass(this, oldName, newName);
    [all...]
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_noderemovechildgetnodename.js 101 var oldName;
113 oldName = oldChild.nodeName;
119 assertEquals("nodeName",oldName,childName);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_noderemovechildgetnodename.js 101 var oldName;
113 oldName = oldChild.nodeName;
119 assertEquals("nodeName",oldName,childName);
  /external/sonivox/jet_tools/JetCreator/
JetUtils.py 48 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 = oldName[0:i+1]
    [all...]
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
PackageInstallerActivity.java 252 String[] oldName = mPm.canonicalToCurrentPackageNames(new String[] { pkgName });
253 if (oldName != null && oldName.length > 0 && oldName[0] != null) {
254 pkgName = oldName[0];
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccProvider.java 349 updateIccRecordInEf(int efType, String oldName, String oldNumber,
352 ", oldname=" + oldName + ", oldnumber=" + oldNumber +
361 oldName, oldNumber, newName, newNumber, pin2);
  /packages/apps/Email/src/com/android/email/service/
EmailServiceUtils.java 113 public boolean renameFolder(long accountId, String oldName, String newName)
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_file.c 436 DRM_file_rename(const uint16_t *oldName, int32_t oldNameLen,
440 oldNameLen, oldName, newNameLen, newName);
447 if (convertFilename(oldName, oldNameLen, tmpPathBuf1) <= 0 ||
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
RenameClassAdapter.java 52 public RenameClassAdapter(ClassWriter cv, String oldName, String newName) {
54 mOldBase = mOldName = oldName;
  /external/jmdns/src/javax/jmdns/impl/
DNSRecord.java 753 String oldName = info.getQualifiedName().toLowerCase();
755 dns.getServices().remove(oldName);
780 String oldName = info.getQualifiedName().toLowerCase();
782 dns.getServices().remove(oldName);
    [all...]
  /packages/apps/Mms/src/com/android/mms/data/
Contact.java 693 String oldName = emptyIfNull(orig.mName);
695 if (!oldName.equals(newName)) {
697 Log.d(TAG, String.format("name changed: %s -> %s", oldName, newName));
    [all...]
  /external/javassist/src/main/javassist/
CtClass.java 376 * name <code>oldName</code> in the class file.
378 * @param oldName replaced class name
381 public void replaceClassName(String oldName, String newName) {
419 public void put(String oldname, String newname) {
420 put0(oldname, newname);
    [all...]

Completed in 581 milliseconds

1 2