HomeSort by relevance Sort by last modified time
    Searched full:oldname (Results 26 - 50 of 94) sorted by null

12 3 4

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccProvider.java 453 updateIccRecordInEf(int efType, String oldName, String oldNumber,
456 ", oldname=" + oldName + ", oldnumber=" + oldNumber +
466 success = iccIpb.updateAdnRecordsInEfBySearchForSubscriber(subId, efType, oldName,
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
AutoDocTransforms.py 137 oldname = self.class_name
147 self.class_name = oldname
  /external/javassist/src/main/javassist/bytecode/
Descriptor.java 152 * @param oldname replaced JVM class name
157 public static String rename(String desc, String oldname, String newname) {
158 if (desc.indexOf(oldname) < 0)
168 else if (desc.startsWith(oldname, j + 1)
169 && desc.charAt(j + oldname.length() + 1) == ';') {
174 head = i = j + oldname.length() + 2;
SignatureAttribute.java 88 void renameClass(String oldname, String newname) {
89 String sig = renameClass(getSignature(), oldname, newname);
98 static String renameClass(String desc, String oldname, String newname) {
100 map.put(oldname, newname);
CodeAttribute.java 195 void renameClass(String oldname, String newname) {
196 AttributeInfo.renameClass(attributes, oldname, newname);
AnnotationsAttribute.java 270 * @param oldname a JVM class name.
273 void renameClass(String oldname, String newname) {
275 map.put(oldname, newname);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-record.c 382 char oldname[PATH_MAX]; local
383 snprintf(oldname, sizeof(oldname), "%s.old",
385 unlink(oldname);
386 rename(output_name, oldname);
builtin-trace.c 1171 char oldname[PATH_MAX]; local
1173 scnprintf(oldname, sizeof(oldname), "%s.old", filename);
1174 unlink(oldname);
1175 rename(filename, oldname);
    [all...]
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
PackageInstallerActivity.java 407 String[] oldName = mPm.canonicalToCurrentPackageNames(new String[] { pkgName });
408 if (oldName != null && oldName.length > 0 && oldName[0] != null) {
409 pkgName = oldName[0];
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
Installer.java 145 public int rename(String oldname, String newname) {
148 builder.append(oldname);
  /external/iproute2/include/libiptc/
libiptc.h 121 int iptc_rename_chain(const ipt_chainlabel oldname,
  /external/iptables/include/libiptc/
libip6tc.h 118 int ip6tc_rename_chain(const xt_chainlabel oldname,
libiptc.h 123 int iptc_rename_chain(const xt_chainlabel oldname,
  /external/llvm/lib/Transforms/Utils/
LoopUnroll.cpp 99 // OldName will be valid until erased.
100 StringRef OldName = BB->getName();
114 if (!OldName.empty() && !OnlyPred->hasName())
115 OnlyPred->setName(OldName);
  /external/javassist/src/main/javassist/
CtClassType.java 325 String oldname = getName(); local
326 if (name.equals(oldname))
335 classPool.classNameChanged(oldname, this);
361 public void replaceClassName(String oldname, String newname)
365 if (thisname.equals(oldname))
368 super.replaceClassName(oldname, newname);
369 getClassFile2().renameClass(oldname, newname);
    [all...]
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...]
  /external/chromium_org/chrome/browser/ui/views/accessibility/
accessibility_event_router_views_unittest.cc 320 const char kOldNameASCII[] = "OldName";
357 const char kNameASCII[] = "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...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp     [all...]
  /external/svox/pico/lib/
picopal.h 241 extern pico_status_t picopal_rename (picopal_char oldname[], picopal_char newname[]);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.h 580 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);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
ExtensionAPI.js 414 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/
FileDir.cpp 512 UString oldName = GetLastPart(oldPath);
514 int nonDotsLen = oldName.Length() - (len - i);
515 if (nonDotsLen == 0 || newName.CompareNoCase(oldName.Left(nonDotsLen)) != 0)
  /external/smack/src/org/xbill/DNS/
Lookup.java 385 follow(Name name, Name oldname) {
393 if (iterations >= 6 || name.equals(oldname)) {
401 aliases.add(oldname);
  /external/yaffs2/yaffs2/direct/
yaffsfs.c 767 char *oldname; local
774 olddir = yaffsfs_FindDirectory(NULL,oldPath,&oldname,0);
812 result = yaffs_RenameObject(olddir,oldname,newdir,newname);

Completed in 1269 milliseconds

12 3 4