HomeSort by relevance Sort by last modified time
    Searched refs:USED (Results 1 - 12 of 12) 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.c 38 This table is used to compute output lengths for the mp_toradix()
68 can be contained in an mp_digit. Thus, an mp_word is used. These
122 otherwise, suitable macro definitions will be used. This works
288 USED(mp) = 1;
314 if((DIGITS(mp) = s_mp_alloc(USED(from), sizeof(mp_digit))) == NULL)
317 s_mp_copy(DIGITS(from), DIGITS(mp), USED(from));
318 USED(mp) = USED(from);
319 ALLOC(mp) = USED(from);
350 all the used digits of 'from', we'll re-use it to avoid hittin
2972 mp_size used; local
3091 mp_size ix = 1, used = USED(mp); local
3126 mp_size ix = 1, used = USED(mp); local
3269 mp_size ix, used = USED(b); local
3326 mp_size ix, used = USED(b); local
3516 mp_size ix, jx, kx, used = USED(a); local
    [all...]
mpi.h 57 #define USED(MP) ((MP)->used)
77 mp_size used; /* how many digits used */ member in struct:__anon1650
  /frameworks/base/core/java/android/text/method/
MetaKeyKeyListener.java 181 content.setSpan(what, 0, 0, USED);
235 else if (state == USED)
287 if (current == USED)
468 * The meta key has been pressed but has not yet been used.
475 * not yet been used.
481 * The meta key has been pressed and used but has not yet been released.
483 private static final int USED =
  /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/dropbear/
buffer.c 184 * the next len bytes from that position can be used */
193 /* like buf_getptr, but checks against total size, not used length.
194 * This allows writing past the used length, but not past the size */
226 /* Just increment the buffer position the same as if we'd used buf_getstring,
280 if (USED(mp) == 1 && DIGIT(mp, 0) == 0) {
  /development/apps/Term/src/com/android/term/
Term.java 87 * from other messages in the log. Public because it's used by several
104 * Used to send data to the remote process.
649 * Which row is currently the topmost line of the transcript. Used to
680 * next line. This is used when resizing the screen and when copying to the
    [all...]
  /external/dropbear/libtommath/
tommath.h 180 int used, alloc, sign; member in struct:__anon1653
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/proguard/lib/
proguard.jar 
  /prebuilt/common/ecj/
ecj.jar 

Completed in 1281 milliseconds