Lines Matching refs:at

108         HashMap<String, String> at = new HashMap<String, String>();
110 //at.put("*.Deprecated", "<deprecated=true>");
111 //at.put("*.Synthetic", "<synthetic=true>");
112 ////at.put("Field.ConstantValue", "<constantValue=>KQH");
113 //at.put("Class.SourceFile", "<sourceFile=>RUH");
114 at.put("Method.Bridge", "<Bridge>");
115 at.put("Method.Varargs", "<Varargs>");
116 at.put("Class.Enum", "<Enum>");
117 at.put("*.Signature", "<Signature>RSH");
118 //at.put("*.Deprecated", "<Deprecated>");
119 //at.put("*.Synthetic", "<Synthetic>");
120 at.put("Field.ConstantValue", "<ConstantValue>KQH");
121 at.put("Class.SourceFile", "<SourceFile>RUH");
122 at.put("Class.InnerClasses", "NH[<InnerClass><class=>RCH<outer=>RCH<name=>RUH<flags=>FH]");
123 at.put("Code.LineNumberTable", "NH[<LineNumber><bci=>PH<line=>H]");
124 at.put("Code.LocalVariableTable", "NH[<LocalVariable><bci=>PH<span=>H<name=>RUH<type=>RSH<slot=>H]");
125 at.put("Code.LocalVariableTypeTable", "NH[<LocalVariableType><bci=>PH<span=>H<name=>RUH<type=>RSH<slot=>H]");
126 at.put("Method.Exceptions", "NH[<Exception><name=>RCH]");
127 at.put("Method.Code", "<Code>...");
128 at.put("Code.StackMapTable", "<Frame>...");
129 //at.put("Code.StkMapX", "<FrameX>...");
131 at.put("Code.StackMapTable",
160 at.put("Class.EnclosingMethod", "<EnclosingMethod><class=>RCH<desc=>RDH");//RDNH
191 at.put(place + ".RuntimeVisibleAnnotations", visanno);
192 at.put(place + ".RuntimeInvisibleAnnotations", invanno);
194 at.put("Method.RuntimeVisibleParameterAnnotations", vparamanno);
195 at.put("Method.RuntimeInvisibleParameterAnnotations", iparamanno);
196 at.put("Method.AnnotationDefault", mdannodef);
198 attrTypesBacking = at;
199 attrTypesInit = Collections.unmodifiableMap(at);
324 private void checkAttrs(Map<String, String> at) {
325 for (String attr : at.keySet()) {
343 public void addAttrTypes(Map<String, String> at) {
344 checkAttrs(at);
346 attrTypes.putAll(at);
356 public void setAttrTypes(Map<String, String> at) {
357 checkAttrs(at);
359 attrTypes.keySet().retainAll(at.keySet());
360 attrTypes.putAll(at);