Searched refs:ats (Results 1 - 3 of 3) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/apt/comp/
H A DApt.java230 AptTreeScanner ats = new AptTreeScanner();
232 t.accept(ats);
236 for (ClassSymbol cs : ats.specifiedDeclCollection) {
241 for (ClassSymbol cs : ats.declCollection) {
246 unmatchedAnnotations.addAll(ats.getAnnotationSet());
/openjdk7/hotspot/src/share/vm/opto/
H A Dcompile.cpp1063 AliasType* ats = NEW_ARENA_ARRAY(comp_arena(), AliasType, grow_ats); local
1064 Copy::zero_to_bytes(ats, sizeof(AliasType)*grow_ats);
1066 for (int i = 0; i < grow_ats; i++) _alias_types[i] = &ats[i];
1557 AliasType* ats = NEW_ARENA_ARRAY(comp_arena(), AliasType, new_ats); local
1558 Copy::zero_to_bytes(ats, sizeof(AliasType)*new_ats);
1559 for (int i = 0; i < new_ats; i++) _alias_types[old_ats+i] = &ats[i];
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassReader.java1644 Attribute[] ats = new Attribute[length];
1648 ats[i++] = deproxy(elemtype, p.head);
1650 result = new Attribute.Array(type, ats);

Completed in 62 milliseconds