HomeSort by relevance Sort by last modified time
    Searched defs:USED (Results 1 - 10 of 10) sorted by null

  /external/proguard/src/proguard/obfuscate/
AttributeUsageMarker.java 39 // A visitor info flag to indicate the attribute is being used.
40 private static final Object USED = new Object();
54 * Marks the given VisitorAccepter as being used (or useful).
59 visitorAccepter.setVisitorInfo(USED);
64 * Returns whether the given VisitorAccepter has been marked as being used.
69 return visitorAccepter.getVisitorInfo() == USED;
NameAndTypeUsageMarker.java 33 * being used in the program classes it visits.
45 // A visitor info flag to indicate the NameAndType constant pool entry is being used.
46 private static final Object USED = new Object();
118 * Marks the given VisitorAccepter as being used.
123 visitorAccepter.setVisitorInfo(USED);
128 * Returns whether the given VisitorAccepter has been marked as being used.
133 return visitorAccepter.getVisitorInfo() == USED;
Utf8UsageMarker.java 36 * being used in the program classes it visits.
54 // A visitor info flag to indicate the UTF-8 constant pool entry is being used.
55 private static final Object USED = new Object();
375 * Marks the given VisitorAccepter as being used.
380 visitorAccepter.setVisitorInfo(USED);
385 * Returns whether the given VisitorAccepter has been marked as being used.
390 return visitorAccepter.getVisitorInfo() == USED;
  /external/dropbear/libtommath/mtest/
mpi.h 57 #define USED(MP) ((MP)->used)
77 mp_size used; /* how many digits used */ member in struct:__anon5573
  /external/dropbear/libtommath/
tommath.h 180 int used, alloc, sign; member in struct:__anon5576
188 #define USED(m) ((m)->used)
221 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
222 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO)
223 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
395 /* used to setup the Barrett reduction for a given modulus b */
555 #define s_mp_mul(a, b, c) s_mp_mul_digs(a, b, c, (a)->used + (b)->used + 1)
  /external/mesa3d/src/mesa/main/
compiler.h 166 * PUBLIC/USED macros
171 * We also need to define a USED attribute, so the optimizer doesn't
176 # define USED __attribute__((used))
179 # define USED
210 * The __FUNCTION__ gcc variable is generally only used for debugging.
245 * For now, only used by some DRI hardware drivers for color/texel packing.
312 /* Turn off macro checking systems used by other libraries */
  /frameworks/base/core/java/android/text/method/
MetaKeyKeyListener.java 34 * This class provides two mechanisms for tracking meta state that can be used
62 * To ensure correct meta key behavior, the following pattern should be used
108 // These bits are privately used by the meta key key listener.
240 content.setSpan(what, 0, 0, USED);
293 else if (state == USED)
346 if (current == USED)
502 long locked, long pressed, long released, long used) {
507 } else if ((state & used) != 0) {
540 long pressed, long released, long used, KeyEvent event) {
543 if ((state & used) != 0)
    [all...]
  /external/proguard/src/proguard/shrink/
UsageMarker.java 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,
    [all...]
  /external/proguard/lib/
proguard.jar 
  /prebuilt/common/ecj/
ecj.jar 

Completed in 98 milliseconds