Searched refs:value (Results 26 - 50 of 524) sorted by relevance

1234567891011>>

/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/ess/
H A DContentIdentifier.java11 ASN1OctetString value; field in class:ContentIdentifier
33 ASN1OctetString value)
35 this.value = value;
42 byte[] value)
44 this(new DEROctetString(value));
49 return value;
63 return value;
32 ContentIdentifier( ASN1OctetString value) argument
41 ContentIdentifier( byte[] value) argument
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
H A DX509Extension.java12 ASN1OctetString value; field in class:X509Extension
16 ASN1OctetString value)
19 this.value = value;
24 ASN1OctetString value)
27 this.value = value;
37 return value;
14 X509Extension( DERBoolean critical, ASN1OctetString value) argument
22 X509Extension( boolean critical, ASN1OctetString value) argument
H A DX509DefaultEntryConverter.java13 * string value to ASN.1 strings.
19 * Apply default coversion for the given value depending on the oid
20 * and the character range of the value.
23 * @param value the value associated with it
24 * @return the ASN.1 equivalent for the string value.
28 String value)
30 if (value.length() != 0 && value.charAt(0) == '#')
34 return convertHexEncoded(value,
26 getConvertedValue( DERObjectIdentifier oid, String value) argument
[all...]
/dalvik/dx/tests/083-ssa-phi-placement/
H A DBlort.java55 int value = 0;
60 return new Integer(value);
63 return Boolean.valueOf(value != 0);
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DDERBoolean.java9 private final byte value; field in class:DERBoolean
47 boolean value)
49 return (value ? TRUE : FALSE);
81 // byte[] value)
83 // this.value = value[0];
89 boolean value)
91 this.value = (value) ? (byte)0xff : (byte)0;
97 return (value !
46 getInstance( boolean value) argument
88 DERBoolean( boolean value) argument
[all...]
/dalvik/libcore/luni/src/main/java/java/lang/
H A DByte.java29 * The value which the receiver represents.
31 private final byte value; field in class:Byte
34 * The maximum {@code Byte} value, 2<sup>7</sup>-1.
41 * The minimum {@code Byte} value, -2<sup>7</sup>.
48 * The number of bits needed to represent a {@code Byte} value in two's
73 * Constructs a new {@code Byte} with the specified primitive byte value.
75 * @param value
76 * the primitive byte value to store in the new instance.
79 public Byte(byte value) { argument
80 this.value
256 toString(byte value) argument
[all...]
H A DShort.java31 * The value which the receiver represents.
33 private final short value; field in class:Short
36 * Constant for the maximum {@code short} value, 2<sup>15</sup>-1.
43 * Constant for the minimum {@code short} value, -2<sup>15</sup>.
75 * the string representation of a short value.
77 * if {@code string} can not be decoded into a short value.
86 * Constructs a new {@code Short} with the specified primitive short value.
88 * @param value
89 * the primitive short value to store in the new instance.
92 public Short(short value) { argument
251 toString(short value) argument
[all...]
H A DFloat.java31 * The value which the receiver represents.
33 private final float value; field in class:Float
36 * Constant for the maximum {@code float} value, (2 - 2<sup>-23</sup>) * 2<sup>127</sup>.
43 * Constant for the minimum {@code float} value, 2<sup>-149</sup>.
50 * Constant for the Not-a-Number (NaN) value of the {@code float} type.
57 * Constant for the Positive Infinity value of the {@code float} type.
64 * Constant for the Negative Infinity value of the {@code float} type.
92 * Constructs a new {@code Float} with the specified primitive float value.
94 * @param value
95 * the primitive float value t
98 Float(float value) argument
109 Float(double value) argument
209 floatToIntBits(float value) argument
224 floatToRawIntBits(float value) argument
[all...]
H A DAbstractStringBuilder.java40 private char[] value; field in class:AbstractStringBuilder
50 return value;
58 return value;
73 value = val;
78 value = new char[INITIAL_CAPACITY];
85 value = new char[capacity];
91 value = new char[count + INITIAL_CAPACITY];
93 string._getChars(0, count, value, 0);
98 int twice = (value.length << 1) + 2;
100 System.arraycopy(value,
[all...]
H A DDouble.java31 * The value which the receiver represents.
33 private final double value; field in class:Double
36 * Constant for the maximum {@code double} value, (2 - 2<sup>-52</sup>) *
44 * Constant for the minimum {@code double} value, 2<sup>-1074</sup>.
53 * Constant for the Not-a-Number (NaN) value of the {@code double} type.
60 * Constant for the Positive Infinity value of the {@code double} type.
67 * Constant for the Negative Infinity value of the {@code double} type.
96 * value.
98 * @param value
99 * the primitive double value t
102 Double(double value) argument
179 doubleToLongBits(double value) argument
194 doubleToRawLongBits(double value) argument
[all...]
/dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
H A Dhc_attrinsertbefore1.java31 * Appends a text node to an attribute and checks if the value of
64 String value;
78 value = titleAttr.getValue();
79 assertEquals("attrValue", "Yesterday", value);
80 value = titleAttr.getNodeValue();
81 assertEquals("attrNodeValue", "Yesterday", value);
82 value = retval.getNodeValue();
83 assertEquals("retvalValue", "terday", value);
85 value = firstChild.getNodeValue();
86 assertEquals("firstChildValue", "Yes", value);
[all...]
H A Dhc_attrinsertbefore2.java31 * Prepends a text node to an attribute and checks if the value of
64 String value;
78 value = titleAttr.getValue();
79 assertEquals("attrValue", "terdayYes", value);
80 value = titleAttr.getNodeValue();
81 assertEquals("attrNodeValue", "terdayYes", value);
82 value = retval.getNodeValue();
83 assertEquals("retvalValue", "terday", value);
85 value = firstChild.getNodeValue();
86 assertEquals("firstChildValue", "terday", value);
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/ocsp/
H A DCertStatus.java16 private DEREncodable value; field in class:CertStatus
25 value = DERNull.THE_ONE;
33 value = info;
38 DEREncodable value)
41 this.value = value;
53 value = DERNull.THE_ONE;
57 value = RevokedInfo.getInstance(choice, false);
61 value = DERNull.THE_ONE;
95 return value;
36 CertStatus( int tagNo, DEREncodable value) argument
[all...]
H A DResponderID.java17 private DEREncodable value; field in class:ResponderID
20 ASN1OctetString value)
22 this.value = value;
26 X509Name value)
28 this.value = value;
76 if (value instanceof ASN1OctetString)
78 return new DERTaggedObject(true, 2, value);
81 return new DERTaggedObject(true, 1, value);
19 ResponderID( ASN1OctetString value) argument
25 ResponderID( X509Name value) argument
[all...]
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
H A DBooleanControl.java32 private boolean value; field in class:BooleanControl
41 this.value = initialValue;
50 public void setValue(boolean value) { argument
51 this.value = value;
55 return this.value;
67 return getType() + " Control with current value: " + getStateLabel(value); //$NON-NLS-1$
/dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/
H A DArray.java513 * Sets the element of the array at the specified index to the value. This
514 * reproduces the effect of {@code array[index] = value}. If the array
515 * component is a primitive type, the value is automatically unwrapped.
521 * @param value
522 * the new value
527 * if {@code array} is not an array or the value cannot be
534 public static void set(Object array, int index, Object value) argument
541 if (value != null &&
542 !array.getClass().getComponentType().isInstance(value)) {
547 ((Object[]) array)[index] = value;
594 setBoolean(Object array, int index, boolean value) argument
623 setByte(Object array, int index, byte value) argument
653 setChar(Object array, int index, char value) argument
687 setDouble(Object array, int index, double value) argument
721 setFloat(Object array, int index, float value) argument
751 setInt(Object array, int index, int value) argument
781 setLong(Object array, int index, long value) argument
811 setShort(Object array, int index, short value) argument
[all...]
/dalvik/libcore/dom/src/test/java/org/w3c/domts/
H A DDocumentBuilderSettingStrategy.java39 boolean value) throws DOMTestIncompatibleException;
45 public void applySetting(DocumentBuilderFactory factory, boolean value)
47 factory.setCoalescing(value);
59 public void applySetting(DocumentBuilderFactory factory, boolean value)
61 factory.setExpandEntityReferences(value);
72 public void applySetting(DocumentBuilderFactory factory, boolean value)
74 factory.setIgnoringElementContentWhitespace(value);
84 public void applySetting(DocumentBuilderFactory factory, boolean value)
86 if (value) {
100 public void applySetting(DocumentBuilderFactory factory, boolean value) throw
37 applySetting( DocumentBuilderFactory factory, boolean value) argument
[all...]
/dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
H A DDocumentBuilderSettingStrategy.java20 boolean value);
26 boolean value) {
27 factory.setCoalescing(value);
37 public void applySetting(DocumentBuilderFactory factory, boolean value) {
38 factory.setExpandEntityReferences(value);
47 public void applySetting(DocumentBuilderFactory factory, boolean value) {
48 factory.setIgnoringElementContentWhitespace(value);
57 public void applySetting(DocumentBuilderFactory factory, boolean value) {
58 if (value) {
69 public void applySetting(DocumentBuilderFactory factory, boolean value)
19 applySetting(DocumentBuilderFactory factory, boolean value) argument
[all...]
/dalvik/libcore/luni/src/main/java/java/io/
H A DEmulatedFieldsForDumping.java59 * Find and set the byte value of a given field named <code>name</code> in
64 * @param value
65 * New value for the field.
68 public void put(String name, byte value) { argument
69 emulatedFields.put(name, value);
73 * Find and set the char value of a given field named <code>name</code> in
78 * @param value
79 * New value for the field.
82 public void put(String name, char value) { argument
83 emulatedFields.put(name, value);
96 put(String name, double value) argument
110 put(String name, float value) argument
124 put(String name, int value) argument
138 put(String name, long value) argument
152 put(String name, Object value) argument
166 put(String name, short value) argument
180 put(String name, boolean value) argument
[all...]
/dalvik/libcore/luni/src/main/java/java/util/
H A DMapEntry.java27 V value; field in class:MapEntry
39 value = theValue;
60 && (value == null ? entry.getValue() == null : value
71 return value;
77 ^ (value == null ? 0 : value.hashCode());
81 V result = value;
82 value = object;
88 return key + "=" + value;
[all...]
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/
H A DIMemorySystem.java84 * Places <code>value</code> into first <code>length</code> bytes of the
94 * @param value
95 * the byte value to set at each location.
99 public void memset(int address, byte value, long length); argument
250 * Sets the given single byte value at the given address.
257 * the address at which to set the byte value.
258 * @param value
259 * the value to set.
261 public void setByte(int address, byte value); argument
264 * Gets the value o
294 setShort(int address, short value) argument
296 setShort(int address, short value, Endianness endianness) argument
329 setInt(int address, int value) argument
331 setInt(int address, int value, Endianness endianness) argument
365 setLong(int address, long value) argument
367 setLong(int address, long value, Endianness endianness) argument
400 setFloat(int address, float value) argument
402 setFloat(int address, float value, Endianness endianness) argument
436 setDouble(int address, double value) argument
438 setDouble(int address, double value, Endianness endianness) argument
474 setAddress(int address, int value) argument
[all...]
H A DPlatformAddressFactory.java66 private static PlatformAddress make(int value, long size) { argument
67 if (value == 0) {
71 return new PlatformAddress(value, size);
76 public synchronized static PlatformAddress on(int value, long size) { argument
77 if (value == 0) {
80 int idx = value >> 5;
85 new PlatformAddress(value, size);
87 if (cachedObj.osaddr == value && cachedObj.size == size) {
93 new PlatformAddress(value, size);
97 public static PlatformAddress on(int value) { argument
101 mapOn(int value, long size) argument
[all...]
/dalvik/libcore/support/src/test/java/tests/util/
H A DCallVerificationStack.java128 * the value to push
138 * the value to push
148 * the value to push
158 * the value to push
168 * the value to push
178 * the value to push
188 * the value to push
208 * @return the value
212 Boolean value = (Boolean) wrapper.getValue();
213 return value
288 private Object value; field in class:CallVerificationStack.BaseTypeWrapper
[all...]
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DConcurrentMap.java26 * with a value, associate it with the given value.
30 * return map.put(key, value);
35 * @param key key with which the specified value is to be associated.
36 * @param value value to be associated with the specified key.
37 * @return previous value associated with specified key, or <tt>null</tt>
45 * @throws ClassCastException if the class of the specified key or value
47 * @throws IllegalArgumentException if some aspect of this key or value
50 * keys or values, and the specified key or value i
54 putIfAbsent(K key, V value) argument
73 remove(Object key, Object value) argument
116 replace(K key, V value) argument
[all...]
/dalvik/libcore/nio/src/main/java/java/nio/
H A DReadOnlyDirectByteBuffer.java72 public ByteBuffer put(byte value) { argument
76 public ByteBuffer put(int index, byte value) { argument
84 public ByteBuffer putDouble(double value) { argument
88 public ByteBuffer putDouble(int index, double value) { argument
92 public ByteBuffer putFloat(float value) { argument
96 public ByteBuffer putFloat(int index, float value) { argument
100 public ByteBuffer putInt(int value) { argument
104 public ByteBuffer putInt(int index, int value) { argument
108 public ByteBuffer putLong(int index, long value) { argument
112 public ByteBuffer putLong(long value) { argument
116 putShort(int index, short value) argument
120 putShort(short value) argument
[all...]

Completed in 2926 milliseconds

1234567891011>>