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

1 2 3 4

  /external/clang/test/Modules/
renamed.m 6 // RUN: %clang_cc1 -fmodules -I %S/Inputs/oldname -fmodules-cache-path=%t %s -verify
  /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...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
CallablesTest.java 45 String oldName = Thread.currentThread().getName();
54 assertEquals(oldName, Thread.currentThread().getName());
58 String oldName = Thread.currentThread().getName();
71 assertEquals(oldName, Thread.currentThread().getName());
84 final String oldName = Thread.currentThread().getName();
88 assertEquals(Thread.currentThread().getName(), oldName);
93 assertEquals(oldName, Thread.currentThread().getName());
  /external/toybox/lib/
help.c 13 #define OLDTOY(name,oldname,flags) "\xff" #oldname "\0"
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
strings.h 11 that belong in strings.h. These functions are provided for in the 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/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
NamedRunnable.java 30 String oldName = Thread.currentThread().getName();
35 Thread.currentThread().setName(oldName);
  /external/guava/guava/src/com/google/common/util/concurrent/
Callables.java 64 String oldName = currentThread.getName();
70 trySetName(oldName, currentThread);
92 String oldName = currentThread.getName();
98 trySetName(oldName, currentThread);
  /external/toybox/scripts/
install.c 11 #define OLDTOY(name, oldname, flags) {#name, 0, 0, flags},
  /external/toybox/
main.c 17 #define OLDTOY(name, oldname, flags) \
18 {#name, oldname##_main, OPTSTR_##oldname, flags},
65 #define OLDTOY(name, oldname, flags) OPTSTR_##oldname ||
toys.h 76 #define OLDTOY(name, oldname, flags) void oldname##_main(void);
  /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);
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
RenameClassAdapter.java 42 public RenameClassAdapter(ClassVisitor cv, String oldName, String newName) {
44 mOldBase = mOldName = oldName;
  /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 173 String oldName = element.getNodeName();
174 int open = text.indexOf(oldName);
175 int close = text.lastIndexOf(oldName);
181 int oldLength = oldName.length();
186 int oldLength = oldName.length();
ChangeLayoutRefactoring.java 237 String oldName = layout.getNodeName();
238 int open = text.indexOf(oldName);
239 int close = text.lastIndexOf(oldName);
242 int oldLength = oldName.length();
374 String oldName = child.getNodeName();
375 if (oldName.equals(LINEAR_LAYOUT)) {
377 int open = text.indexOf(oldName);
378 int close = text.lastIndexOf(oldName);
381 int oldLength = oldName.length();
  /external/toybox/toys/posix/
patch.c 257 char *oldname = NULL, *newname = NULL; local
309 char *s, **name = &oldname;
360 name = reverse ? oldname : newname;
362 // We're deleting oldname if new file is /dev/null (before -p)
366 name = reverse ? newname : oldname;
386 if ((!strcmp(oldname, "/dev/null") || !oldsum) && access(name, F_OK))
415 free(oldname);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common_syscalls.inc     [all...]
  /external/compiler-rt/include/sanitizer/
linux_syscall_hooks.h     [all...]

Completed in 762 milliseconds

1 2 3 4