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

1 2 3 4 5 6 7

  /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/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());
  /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/layoutlib/create/src/com/android/tools/layoutlib/create/
RenameClassAdapter.java 42 public RenameClassAdapter(ClassVisitor cv, String oldName, String newName) {
44 mOldBase = mOldName = oldName;
  /external/desugar/java/com/google/devtools/common/options/
Option.java 188 String oldName() default "";
IsolatedOptionsData.java 95 * For options that have an "OldName", this is a mapping from old name to its corresponding {@code
269 String oldName = optionDefinition.getOldOptionName();
272 oldName,
276 oldName,
278 checkForBooleanAliasCollisions(booleanAliasMap, oldName, "old option name");
282 nameToFieldBuilder, oldNameToFieldBuilder, booleanAliasMap, oldName);
285 oldNameToFieldBuilder.put(oldName, optionDefinition);
OptionDefinition.java 154 /** {@link Option#oldName()} ()} ()} */
156 return optionAnnotation.oldName();
  /packages/apps/DocumentsUI/tests/functional/com/android/documentsui/
RenameDocumentUiTest.java 137 String oldName = "Dir1";
139 bots.directory.selectDocument(oldName, 1);
147 bots.directory.assertDocumentsAbsent(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 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/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/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...]
  /build/blueprint/
name_interface.go 65 Rename(oldName string, newName string, namespace Namespace) []error
126 func (s *SimpleNameInterface) Rename(oldName string, newName string, namespace Namespace) (errs []error) {
133 oldName, newName, existingGroup.modules[0].pos),
138 group := s.modules[oldName]
  /frameworks/base/core/java/android/animation/
ObjectAnimator.java 119 String oldName = valuesHolder.getPropertyName();
121 mValuesMap.remove(oldName);
141 String oldName = valuesHolder.getPropertyName();
143 mValuesMap.remove(oldName);
    [all...]
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
PackageInstallerActivity.java 345 String[] oldName = mPm.canonicalToCurrentPackageNames(new String[] { pkgName });
346 if (oldName != null && oldName.length > 0 && oldName[0] != null) {
347 pkgName = oldName[0];
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccProvider.java 457 updateIccRecordInEf(int efType, String oldName, String oldNumber,
460 ", oldname=" + Rlog.pii(TAG, oldName) + ", oldnumber=" + Rlog.pii(TAG, oldNumber) +
470 success = iccIpb.updateAdnRecordsInEfBySearchForSubscriber(subId, efType, oldName,
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
StreamService.java 341 String oldName = currentThread.getName();
346 currentThread.setName(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...]
  /tools/metalava/src/main/java/com/android/tools/metalava/
AnnotationsMerger.kt 640 name == STRING_DEF_ANNOTATION.oldName() ||
643 name == INT_DEF_ANNOTATION.oldName() ||
657 val intDef = INT_DEF_ANNOTATION.oldName() == name ||
    [all...]
AndroidApiChecks.kt 264 if (modifiers.findAnnotation(SdkConstants.INT_DEF_ANNOTATION.oldName()) != null ||
  /build/soong/android/
namespace.go 257 func (r *NameResolver) Rename(oldName string, newName string, namespace blueprint.Namespace) []error {
258 return namespace.(*Namespace).moduleContainer.Rename(oldName, newName, namespace)
  /frameworks/base/media/java/android/mtp/
MtpStorageManager.java     [all...]
  /external/deqp/modules/glshared/
glsLifetimeTests.cpp 1132 GLuint replaceName (Type& type, GLuint oldName, TestLog& log)
1141 << "// Type does not require Gen* for binding, reusing old id " << oldName << "."
1144 return oldName;
    [all...]

Completed in 1661 milliseconds

1 2 3 4 5 6 7