Home | History | Annotate | Download | only in shrink

Lines Matching full:used

39  * elements that are being used.
61 // A visitor info flag to indicate the ProgramMember object is being used,
62 // if its Clazz can be determined as being used as well.
64 // A visitor info flag to indicate the visitor accepter is being used.
65 private static final Object USED = new Object();
120 // Process all class members that have already been marked as possibly used.
136 // if this class is being used, all of its methods will be used as
166 * This ClassVisitor marks ProgramClass objects as possibly used,
226 // Note that, if the method has been marked as possibly used,
239 // Is the field's class used?
248 // Hasn't the field been marked as possibly being used yet?
252 // marked as being used (yet). Give it a preliminary mark.
263 // Is the method's class used?
275 // Hasn't the method been marked as possibly being used yet?
279 // marked as being used (yet). Give it a preliminary mark.
399 // if the string is being used in a Class.forName construct.
430 // isn't used elsewhere.
846 * Marks the given visitor accepter as being used.
850 visitorAccepter.setVisitorInfo(USED);
856 * being used.
860 return visitorAccepter.getVisitorInfo() != USED;
865 * Returns whether the given visitor accepter has been marked as being used.
869 return visitorAccepter.getVisitorInfo() == USED;
874 * Marks the given visitor accepter as possibly being used.
884 * possibly being used.
888 return visitorAccepter.getVisitorInfo() != USED &&
895 * being used.