HomeSort by relevance Sort by last modified time
    Searched full:code (Results 1451 - 1475 of 26167) sorted by null

<<51525354555657585960>>

  /dalvik/dx/src/com/android/dx/dex/code/form/
Form10x.java 17 package com.android.dx.dex.code.form;
19 import com.android.dx.dex.code.DalvInsn;
20 import com.android.dx.dex.code.InsnFormat;
21 import com.android.dx.dex.code.SimpleInsn;
25 * Instruction format {@code 10x}. See the instruction format spec
29 /** {@code non-null;} unique instance of this class */
Form30t.java 17 package com.android.dx.dex.code.form;
19 import com.android.dx.dex.code.DalvInsn;
20 import com.android.dx.dex.code.InsnFormat;
21 import com.android.dx.dex.code.TargetInsn;
25 * Instruction format {@code 30t}. See the instruction format spec
29 /** {@code non-null;} unique instance of this class */
  /dalvik/dx/src/com/android/dx/ssa/
SsaInsn.java 19 import com.android.dx.rop.code.*;
26 /** {@code non-null;} the block that contains this instance */
29 /** {@code null-ok;} result register */
35 * @param result {@code null-ok;} initial result register. May be changed.
36 * @param block {@code non-null;} block containing this insn. Can
51 * @param insn {@code non-null;} rop insn
52 * @param block {@code non-null;} owning block
53 * @return {@code non-null;} an appropriately constructed instance
70 * Like {@link com.android.dx.rop.code.Insn getResult()}.
81 * @param result {@code non-null;} the new result registe
    [all...]
  /dalvik/libcore/auth/src/main/java/javax/security/auth/callback/
UnsupportedCallbackException.java 32 * unsupported {@code Callback}, but no error message.
35 * the {@code Callback}
44 * unsupported {@code Callback} and an error message.
47 * the {@code Callback}
57 * Returns the unsupported {@code Callback} that triggered this exception.
59 * @return the {@code Callback}
  /dalvik/libcore/luni/src/main/java/java/io/
ByteArrayOutputStream.java 52 * Constructs a new {@code ByteArrayOutputStream} with a default size of
53 * {@code size} bytes. If more than {@code size} bytes are written to this
60 * if {@code size} < 0.
144 * {@code b} in this stream is converted to a character {@code c} using the
146 * {@code c == (char)(((hibyte & 0xff) << 8) | (b & 0xff))}. This method is
153 * to {@code hibyte}.
167 * according to the encoding declared in {@code enc}.
181 * Writes {@code count} bytes from the byte array {@code buffer} starting a
    [all...]
Externalizable.java 26 * Reads the next object from the ObjectInput <code>input</code>.
31 * if an error occurs attempting to read from {@code input}.
39 * Writes the receiver to the ObjectOutput <code>output</code>.
44 * if an error occurs attempting to write to {@code output}.
  /dalvik/libcore/luni/src/main/java/java/lang/
Error.java 22 * {@code Error} is the superclass of all classes that represent unrecoverable
24 * code.
35 * Constructs a new {@code Error} that includes the current stack trace.
42 * Constructs a new {@code Error} with the current stack trace and the
53 * Constructs a new {@code Error} with the current stack trace, the
66 * Constructs a new {@code Error} with the current stack trace and the
Exception.java 22 * {@code Exception} is the superclass of all classes that represent recoverable
24 * code.
34 * Constructs a new {@code Exception} that includes the current stack trace.
41 * Constructs a new {@code Exception} with the current stack trace and the
52 * Constructs a new {@code Exception} with the current stack trace, the
65 * Constructs a new {@code Exception} with the current stack trace and the
IllegalArgumentException.java 29 * Constructs a new {@code IllegalArgumentException} that includes the
37 * Constructs a new {@code IllegalArgumentException} with the current stack
48 * Constructs a new {@code IllegalArgumentException} with the current stack
54 * the cause of this exception, may be {@code null}.
62 * Constructs a new {@code IllegalArgumentException} with the current stack
66 * the cause of this exception, may be {@code null}.
SecurityException.java 28 * Constructs a new {@code SecurityException} that includes the current
36 * Constructs a new {@code SecurityException} with the current stack trace
47 * Constructs a new {@code SecurityException} with the current stack trace,
53 * the optional cause of this exception, may be {@code null}.
61 * Constructs a new {@code SecurityException} with the current stack trace
65 * the optional cause of this exception, may be {@code null}.
UnsupportedOperationException.java 28 * Constructs a new {@code UnsupportedOperationException} that includes the
35 * Constructs a new {@code UnsupportedOperationException} with the current
46 * Constructs a new {@code UnsupportedOperationException} with the current
52 * the optional cause of this exception, may be {@code null}.
60 * Constructs a new {@code UnsupportedOperationException} with the current
64 * the optional cause of this exception, may be {@code null}.
  /dalvik/libcore/luni/src/main/java/java/util/
InvalidPropertiesFormatException.java 26 * An {@code InvalidPropertiesFormatException} is thrown if loading the XML
27 * document defining the properties does not follow the {@code Properties}
30 * Even though this Exception inherits the {@code Serializable} interface, it is not
32 * {@code NotSerializableException}s.
39 * Constructs a new {@code InvalidPropertiesFormatException} with the
50 * Constructs a new {@code InvalidPropertiesFormatException} with the cause
Random.java 25 * types, such as {@code int}, {@code long}, {@code double}, and {@code float}.
70 * Construct a random generator with the given {@code seed} as the
71 * initial state. Equivalent to {@code Random r = new Random(); r.setSeed(seed);}.
83 * Returns a pseudo-random uniformly distributed {@code int} value of
84 * the number of bits specified by the argument {@code bits} as
105 * Returns the next pseudo-random, uniformly distributed {@code boolean} value
115 * Modifies the {@code byte} array by a random sequence of {@code byte}s generated by thi
    [all...]
  /dalvik/libcore/nio/src/main/java/java/nio/
CharBuffer.java 47 * if {@code capacity} is less than zero.
60 * {@code wrap(array, 0, array.length)}.
73 * The new buffer's position will be {@code start}, limit will be
74 * {@code start + len}, capacity will be the length of the array.
80 * {@code array.length}.
83 * {@code array.length - start}.
86 * if either {@code start} or {@code len} is invalid.
105 * {@code wrap(chseq, 0, chseq.length())}.
118 * The new buffer's position will be {@code start}, limit will b
    [all...]
  /dalvik/libcore/security/src/main/java/java/security/
KeyStoreException.java 21 * {@code KeyStoreException} is a general {@code KeyStore} exception.
30 * Constructs a new instance of {@code KeyStoreException} with the
41 * Constructs a new instance of {@code KeyStoreException}.
47 * Constructs a new instance of {@code KeyStoreException} with the
60 * Constructs a new instance of {@code KeyStoreException} with the
ProviderException.java 21 * {@code ProviderException} is a general exception, thrown by security {@code
31 * Constructs a new instance of {@code ProviderException} with the given
42 * Constructs a new instance of {@code ProviderException}.
48 * Constructs a new instance of {@code ProviderException} with the given
61 * Constructs a new instance of {@code ProviderException} with the cause.
SignatureException.java 21 *{@code SignatureException} is a general {@code Signature} exception.
30 * Constructs a new instance of {@code SignatureException} with the
41 * Constructs a new instance of {@code SignatureException}.
47 * Constructs a new instance of {@code SignatureException} with the
60 * Constructs a new instance of {@code SignatureException} with the
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/paddings/
TBCPadding.java 53 byte code;
57 code = (byte)((in[inOff - 1] & 0x01) == 0 ? 0xff : 0x00);
61 code = (byte)((in[in.length - 1] & 0x01) == 0 ? 0xff : 0x00);
66 in[inOff] = code;
79 byte code = in[in.length - 1];
82 while (index > 0 && in[index - 1] == code)
  /external/apache-http/src/org/apache/commons/logging/
LogConfigurationException.java 21 * <p>An exception that is thrown only if a suitable <code>LogFactory</code>
22 * or <code>Log</code> instance cannot be created by the corresponding
33 * Construct a new exception with <code>null</code> as its detail message.
  /external/elfutils/libdw/
dwarf_tag.c 24 __libdw_findabbrev (struct Dwarf_CU *cu, unsigned int code)
29 abb = Dwarf_Abbrev_Hash_find (&cu->abbrev_hash, code, NULL);
49 /* Is this the code we are looking for? */
50 if (abb->code == code)
65 /* Get the abbreviation code. */
  /external/guava/src/com/google/common/collect/
AbstractMapEntry.java 27 * Implementation of the {@code equals}, {@code hashCode}, and {@code toString}
28 * methods of {@code Entry}.
59 * Returns a string representation of the form <code>{key}={value}</code>.
  /external/proguard/src/proguard/classfile/constant/visitor/
ExceptClassConstantFilter.java 33 * This <code>ConstantVisitor</code> delegates its visits to class constants
34 * to another given <code>ConstantVisitor</code>, except for one given class.
49 * @param constantVisitor the <code>ConstantVisitor</code> to which visits
  /external/proguard/src/proguard/classfile/visitor/
BottomClassFilter.java 27 * This <code>ClassVisitor</code> delegates its visits to another given
28 * <code>ClassVisitor</code>, but only when visiting classes that don't
40 * @param classVisitor the <code>ClassVisitor</code> to which visits
ClassAccessFilter.java 27 * This <code>ClassVisitor</code> delegates its visits to another given
28 * <code>ClassVisitor</code>, but only when the visited class
48 * @param classVisitor the <code>ClassVisitor</code> to
ClassForNameClassVisitor.java 30 * This ConstantVisitor lets a given <code>ClassVisitor</code> visit all
31 * constant classes involved in any <code>Class.forName</code> constructs that
47 * @param classVisitor the <code>ClassVisitor</code> to which visits will

Completed in 313 milliseconds

<<51525354555657585960>>