HomeSort by relevance Sort by last modified time
    Searched full:oldname (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /external/javassist/src/main/javassist/
ClassMap.java 64 * @param oldname the original class name
67 public void put(CtClass oldname, CtClass newname) {
68 put(oldname.getName(), newname.getName());
79 * <p>If <code>oldname</code> is identical to
82 * <code>oldname</code> to <code>newname</code>. See
85 * @param oldname the original class name.
89 public void put(String oldname, String newname) {
90 if (oldname == newname)
93 String oldname2 = toJvmName(oldname);
102 * if another mapping from <code>oldname</code> i
    [all...]
  /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);
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;
AndroidTypeRenameChange.java 49 * @param oldName the old name
52 IDocument document, Map<String, String> elements, String newName, String oldName) {
57 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
  /external/javassist/src/main/javassist/bytecode/
LocalVariableTypeAttribute.java 51 String renameEntry(String desc, String oldname, String newname) {
52 return SignatureAttribute.renameClass(desc, oldname, newname);
ClassFile.java 392 * @param oldname
397 public final void renameClass(String oldname, String newname) {
401 if (oldname.equals(newname))
404 if (oldname.equals(thisclassname))
407 oldname = Descriptor.toJvmName(oldname);
409 constPool.renameClass(oldname, newname);
411 AttributeInfo.renameClass(attributes, oldname, newname);
417 minfo.setDescriptor(Descriptor.rename(desc, oldname, newname));
418 AttributeInfo.renameClass(minfo.getAttributes(), oldname, newname) local
427 AttributeInfo.renameClass(finfo.getAttributes(), oldname, newname); local
    [all...]
ParameterAnnotationsAttribute.java 171 * @param oldname a JVM class name.
174 void renameClass(String oldname, String newname) {
176 map.put(oldname, newname);
AttributeInfo.java 258 void renameClass(String oldname, String newname) {}
261 static void renameClass(List attributes, String oldname, String newname) {
265 ai.renameClass(oldname, newname);
LocalVariableAttribute.java 95 void renameClass(String oldname, String newname) {
103 desc = renameEntry(desc, oldname, newname);
109 String renameEntry(String desc, String oldname, String newname) {
110 return Descriptor.rename(desc, oldname, newname);
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);
  /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);
  /external/openssh/regress/
sftp-badcmds.sh 54 test -f ${COPY} || fail "oldname missing after rename target exists (directory)"
56 cmp $DATA ${COPY} >/dev/null 2>&1 || fail "corrupted oldname after rename target exists (directory)"
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
IEmailService.aidl 38 boolean renameFolder(long accountId, String oldName, String newName);
  /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...]
  /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();
  /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,
  /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/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];
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xxf86vm/
XF86VMode.c 433 #define GetOldReq(name, oldname, req) \
435 if ((dpy->bufptr + SIZEOF(x##oldname##Req)) > dpy->bufmax)\
437 req = (x##oldname##Req *)(dpy->last_req = dpy->bufptr);\
439 req->length = (SIZEOF(x##oldname##Req))>>2;\
440 dpy->bufptr += SIZEOF(x##oldname##Req);\
444 #define GetOldReq(name, oldname, req) \
446 if ((dpy->bufptr + SIZEOF(x/**/oldname/**/Req)) > dpy->bufmax)\
448 req = (x/**/oldname/**/Req *)(dpy->last_req = dpy->bufptr);\
450 req->length = (SIZEOF(x/**/oldname/**/Req))>>2;\
451 dpy->bufptr += SIZEOF(x/**/oldname/**/Req);
    [all...]

Completed in 2017 milliseconds

1 2 3 4