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

1 2

  /external/javassist/src/main/javassist/bytecode/
ExceptionsAttribute.java 44 Map classnames) {
46 copyFrom(src, classnames);
66 * @param classnames pairs of replaced and substituted
69 public AttributeInfo copy(ConstPool newCp, Map classnames) {
70 return new ExceptionsAttribute(newCp, this, classnames);
78 * @param classnames pairs of replaced and substituted
81 private void copyFrom(ExceptionsAttribute srcAttr, Map classnames) {
91 ByteArray.write16bit(srcCp.copy(index, destCp, classnames),
ParameterAnnotationsAttribute.java 106 public AttributeInfo copy(ConstPool newCp, Map classnames) {
107 Copier copier = new Copier(info, constPool, newCp, classnames);
180 void renameClass(Map classnames) {
181 Renamer renamer = new Renamer(info, getConstPool(), classnames);
189 void getRefClasses(Map classnames) { renameClass(classnames); }
ConstantAttribute.java 64 * @param classnames pairs of replaced and substituted
67 public AttributeInfo copy(ConstPool newCp, Map classnames) {
69 classnames);
LocalVariableTypeAttribute.java 55 String renameEntry(String desc, Map classnames) {
56 return SignatureAttribute.renameClass(desc, classnames);
DeprecatedAttribute.java 50 * @param classnames should be null.
52 public AttributeInfo copy(ConstPool newCp, Map classnames) {
SyntheticAttribute.java 50 * @param classnames should be null.
52 public AttributeInfo copy(ConstPool newCp, Map classnames) {
AnnotationDefaultAttribute.java 106 public AttributeInfo copy(ConstPool newCp, Map classnames) {
108 = new AnnotationsAttribute.Copier(info, constPool, newCp, classnames);
AnnotationsAttribute.java 162 public AttributeInfo copy(ConstPool newCp, Map classnames) {
163 Copier copier = new Copier(info, constPool, newCp, classnames);
279 void renameClass(Map classnames) {
280 Renamer renamer = new Renamer(info, getConstPool(), classnames);
288 void getRefClasses(Map classnames) { renameClass(classnames); }
410 Map classnames; field in class:AnnotationsAttribute.Renamer
424 classnames = map;
446 String newName = Descriptor.rename(name, classnames);
458 Map classnames; field in class:AnnotationsAttribute.Copier
    [all...]
AttributeInfo.java 168 * @param classnames pairs of replaced and substituted
171 public AttributeInfo copy(ConstPool newCp, Map classnames) {
259 void renameClass(Map classnames) {}
269 static void renameClass(List attributes, Map classnames) {
273 ai.renameClass(classnames);
277 void getRefClasses(Map classnames) {}
279 static void getRefClasses(List attributes, Map classnames) {
283 ai.getRefClasses(classnames);
CodeAttribute.java 74 * @param classnames pairs of replaced and substituted
77 private CodeAttribute(ConstPool cp, CodeAttribute src, Map classnames)
84 exceptions = src.getExceptionTable().copy(cp, classnames);
90 attributes.add(ai.copy(cp, classnames));
93 info = src.copyCode(cp, classnames, exceptions, this);
122 * @param classnames pairs of replaced and substituted
131 public AttributeInfo copy(ConstPool newCp, Map classnames)
135 return new CodeAttribute(newCp, this, classnames);
199 void renameClass(Map classnames) {
200 AttributeInfo.renameClass(attributes, classnames);
    [all...]
InnerClassesAttribute.java 204 * @param classnames pairs of replaced and substituted
207 public AttributeInfo copy(ConstPool newCp, Map classnames) {
222 innerClass = cp.copy(innerClass, newCp, classnames);
227 outerClass = cp.copy(outerClass, newCp, classnames);
232 innerName = cp.copy(innerName, newCp, classnames);
SourceFileAttribute.java 64 * @param classnames pairs of replaced and substituted
67 public AttributeInfo copy(ConstPool newCp, Map classnames) {
LocalVariableAttribute.java 113 void renameClass(Map classnames) {
121 desc = renameEntry(desc, classnames);
127 String renameEntry(String desc, Map classnames) {
128 return Descriptor.rename(desc, classnames);
291 * @param classnames should be null.
293 public AttributeInfo copy(ConstPool newCp, Map classnames) {
317 sig = Descriptor.rename(sig, classnames);
ClassFile.java 434 * @param classnames
440 public final void renameClass(Map classnames) {
441 String jvmNewThisName = (String)classnames.get(Descriptor
446 constPool.renameClass(classnames);
448 AttributeInfo.renameClass(attributes, classnames);
454 minfo.setDescriptor(Descriptor.rename(desc, classnames));
455 AttributeInfo.renameClass(minfo.getAttributes(), classnames); local
463 finfo.setDescriptor(Descriptor.rename(desc, classnames));
464 AttributeInfo.renameClass(finfo.getAttributes(), classnames); local
472 public final void getRefClasses(Map classnames) {
482 AttributeInfo.getRefClasses(minfo.getAttributes(), classnames); local
491 AttributeInfo.getRefClasses(finfo.getAttributes(), classnames); local
    [all...]
StackMap.java 118 public AttributeInfo copy(ConstPool newCp, Map classnames) {
119 Copier copier = new Copier(this, newCp, classnames);
226 Map classnames; field in class:StackMap.Copier
228 Copier(StackMap map, ConstPool newCp, Map classnames) {
233 this.classnames = classnames;
258 int newClazz = srcCp.copy(clazz, destCp, classnames);
EnclosingMethodAttribute.java 123 * @param classnames pairs of replaced and substituted
126 public AttributeInfo copy(ConstPool newCp, Map classnames) {
MethodInfo.java 499 private void read(MethodInfo src, String methodname, Map classnames)
507 String desc2 = Descriptor.rename(desc, classnames);
513 attribute.add(eattr.copy(destCp, classnames));
517 attribute.add(cattr.copy(destCp, classnames));
LineNumberAttribute.java 156 * @param classnames should be null.
158 public AttributeInfo copy(ConstPool newCp, Map classnames) {
ExceptionTable.java 235 * @param classnames pairs of replaced and substituted
238 public ExceptionTable copy(ConstPool newCp, Map classnames) {
244 int type = srcCp.copy(e.catchType, newCp, classnames);
ConstPool.java 679 * @param classnames the map or null.
682 public int copy(int n, ConstPool dest, Map classnames) {
687 return info.copy(this, dest, classnames);
1011 * @param classnames specifies pairs of replaced and substituted
1014 public void renameClass(Map classnames) {
    [all...]
SignatureAttribute.java 81 * @param classnames pairs of replaced and substituted
84 public AttributeInfo copy(ConstPool newCp, Map classnames) {
93 void renameClass(Map classnames) {
94 String sig = renameClass(getSignature(), classnames);
  /tools/tradefederation/core/tests/src/com/android/tradefed/device/metric/
ScheduleMultipleDeviceMetricCollectorTest.java 149 List<String> classnames = new ArrayList<>(); local
150 classnames.add(TestMeminfoCollector.class.getName());
151 classnames.add(TestJankinfoCollector.class.getName());
152 classnames.add(TestFragmentationCollector.class.getName());
153 for (String key : classnames) {
219 List<String> classnames = new ArrayList<>(); local
220 classnames.add(TestMeminfoCollector.class.getName());
221 classnames.add("this.does.not.exists.collector");
222 for (String key : classnames) {
266 List<String> classnames = new ArrayList<>() local
    [all...]
  /external/libcxx/src/
regex.cpp 193 struct classnames struct in namespace:__anon24500
199 const classnames ClassNames[] =
222 bool operator()(const classnames& x, const char* y)
242 const classnames* i =
243 _VSTD::lower_bound(begin(ClassNames), end(ClassNames), s, use_strcmp());
245 if (i != end(ClassNames) && strcmp(s, i->elem_) == 0)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/
regex.cpp 193 struct classnames struct in namespace:__anon595
199 const classnames ClassNames[] =
222 bool operator()(const classnames& x, const char* y)
242 const classnames* i =
243 _VSTD::lower_bound(begin(ClassNames), end(ClassNames), s, use_strcmp());
245 if (i != end(ClassNames) && strcmp(s, i->elem_) == 0)
  /external/javassist/src/main/javassist/
ClassPool.java 645 * <p>If an element of <code>classnames</code> ends with "[]",
649 * @param classnames an array of fully-qualified class name.
651 public CtClass[] get(String[] classnames) throws NotFoundException {
652 if (classnames == null)
655 int num = classnames.length;
658 result[i] = get(classnames[i]);
    [all...]

Completed in 277 milliseconds

1 2