Home
last modified time | relevance | path

Searched refs:newAttributes (Results 1 – 9 of 9) sorted by relevance

/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DAnnotationEntryGen.java248 final List<Attribute> newAttributes = new ArrayList<>(); in getAnnotationAttributes() local
250 newAttributes.add( in getAnnotationAttributes()
255 newAttributes.add( in getAnnotationAttributes()
260 return newAttributes.toArray(new Attribute[newAttributes.size()]); in getAnnotationAttributes()
335 final List<Attribute> newAttributes = new ArrayList<>(); in getParameterAnnotationAttributes() local
337 newAttributes in getParameterAnnotationAttributes()
342 newAttributes in getParameterAnnotationAttributes()
346 return newAttributes.toArray(new Attribute[newAttributes.size()]); in getParameterAnnotationAttributes()
/external/javassist/src/main/javassist/bytecode/
DFieldInfo.java99 List<AttributeInfo> newAttributes = new ArrayList<AttributeInfo>(); in prune() local
104 newAttributes.add(invisibleAnnotations); in prune()
111 newAttributes.add(visibleAnnotations); in prune()
118 newAttributes.add(signature); in prune()
124 newAttributes.add(new ConstantAttribute(cp, index)); in prune()
127 attribute = newAttributes; in prune()
DMethodInfo.java162 List<AttributeInfo> newAttributes = new ArrayList<AttributeInfo>(); in prune() local
168 newAttributes.add(invisibleAnnotations); in prune()
175 newAttributes.add(visibleAnnotations); in prune()
182 newAttributes.add(parameterInvisibleAnnotations); in prune()
189 newAttributes.add(parameterVisibleAnnotations); in prune()
195 newAttributes.add(defaultAttribute); in prune()
199 newAttributes.add(ea); in prune()
205 newAttributes.add(signature); in prune()
208 attribute = newAttributes; in prune()
DClassFile.java274 List<AttributeInfo> newAttributes = new ArrayList<AttributeInfo>(); in prune() local
279 newAttributes.add(invisibleAnnotations); in prune()
286 newAttributes.add(visibleAnnotations); in prune()
293 newAttributes.add(signature); in prune()
302 attributes = newAttributes; in prune()
/external/proguard/src/proguard/classfile/editor/
DAttributesEditor.java229 Attribute[] newAttributes = new Attribute[attributesCount + 1]; in addAttribute() local
231 newAttributes, 0, in addAttribute()
233 attributes = newAttributes; in addAttribute()
/external/llvm-project/mlir/lib/IR/
DOperationSupport.cpp72 void NamedAttrList::append(ArrayRef<NamedAttribute> newAttributes) { in append() argument
73 append(newAttributes.begin(), newAttributes.end()); in append()
/external/llvm-project/mlir/include/mlir/IR/
DOperationSupport.h245 void append(ArrayRef<NamedAttribute> newAttributes);
433 void addAttributes(ArrayRef<NamedAttribute> newAttributes) { in addAttributes()
434 attributes.append(newAttributes); in addAttributes()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestBasic.java1205 Set<String> newAttributes = newElement2Attributes in TestBasicDTDCompatibility() local
1207 if (newAttributes == null) { in TestBasicDTDCompatibility()
1208 newAttributes = Collections.emptySet(); in TestBasicDTDCompatibility()
1210 if (!newAttributes.containsAll(oldAttributes)) { in TestBasicDTDCompatibility()
1213 missing.removeAll(newAttributes); in TestBasicDTDCompatibility()
1221 + "\n\t\tNew:\t" + newAttributes); in TestBasicDTDCompatibility()
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/C/
DC.stg2946 <scopeType(sname=scope.name)> newAttributes;
2956newAttributes = (<scopeType(sname=scope.name)>)ctx-><scopeStack(sname=scope.name)>->get(ctx-><scop…
2962newAttributes = (<scopeType(sname=scope.name)>) ANTLR3_MALLOC(sizeof(<scopeStruct(sname=scope.name…
2963 if (newAttributes != NULL)
2967 …peStack(sname=scope.name)>->push(ctx-><scopeStack(sname=scope.name)>, newAttributes, (void (*)(voi…
2973 newAttributes->free = NULL;
2982 return newAttributes;