/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);
|
/external/libcxx/src/ |
regex.cpp | 207 struct classnames struct in namespace:__anon16008 217 const classnames ClassNames[] = 240 bool operator()(const classnames& x, const char* y) 260 const classnames* i = 261 _VSTD::lower_bound(begin(ClassNames), end(ClassNames), s, use_strcmp()); 263 if (i != end(ClassNames) && strcmp(s, i->elem_) == 0)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
regex.cpp | 207 struct classnames struct in namespace:__anon36060 217 const classnames ClassNames[] = 240 bool operator()(const classnames& x, const char* y) 260 const classnames* i = 261 _VSTD::lower_bound(begin(ClassNames), end(ClassNames), s, use_strcmp()); 263 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...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
TestFmwk.java | 155 protected TestGroup(String defaultPackage, String[] classnames, 157 if (classnames == null) { 158 throw new IllegalStateException("classnames must not be null"); 167 this.names = classnames; 175 protected TestGroup(String[] classnames, String description) { 176 this(null, classnames, description); 183 protected TestGroup(String[] classnames) { 184 this(null, classnames, null); [all...] |