Searched defs:pair (Results 1 - 4 of 4) sorted by relevance

/dalvik/libcore/security/src/main/java/java/security/
H A DSigner.java90 * Associates the specified key pair with this {@code Signer}. If a {@code
95 * @param pair
96 * the key pair to associate with this {@code Signer}.
98 * if the key pair is invalid.
105 public final void setKeyPair(KeyPair pair) argument
108 if (pair == null) {
112 if ((pair.getPrivate() == null) || (pair.getPublic() == null)) {
119 final PublicKey pk = pair.getPublic();
130 this.privateKey = pair
[all...]
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DAnnotation.java150 for (NameValuePair pair : elements.values()) {
156 sb.append(pair.getName().toHuman());
158 sb.append(pair.getValue().toHuman());
188 * @param pair {@code non-null;} the (name, value) pair to place into this instance
190 public void put(NameValuePair pair) { argument
193 if (pair == null) {
194 throw new NullPointerException("pair == null");
197 elements.put(pair.getName(), pair);
207 add(NameValuePair pair) argument
[all...]
/dalvik/vm/compiler/codegen/arm/Thumb/
H A DFactory.c574 bool pair = false; local
579 pair = true;
639 if (pair) {
643 if (pair) {
705 bool pair = false; local
710 pair = true;
713 pair = true;
757 if (pair) {
762 if (pair) {
/dalvik/vm/compiler/codegen/arm/
H A DArmLIR.h75 * Note: the low register of a floating point pair is sufficient to
77 * allow for asserts to verify that the pair is consecutive if significant
79 * code that reg locations always describe doubles as a pair of singles.
97 * Data structure tracking the mapping between a Dalvik register (pair) and a
98 * native register (pair). The idea is to reuse the previously loaded value
105 bool pair; // Part of a register pair? member in struct:RegisterInfo
106 int partner; // If pair, other reg of pair

Completed in 100 milliseconds