HomeSort by relevance Sort by last modified time
    Searched full:value (Results 1826 - 1850 of 15709) sorted by null

<<71727374757677787980>>

  /dalvik/libcore/luni/src/main/java/java/lang/
StringBuilder.java 100 * Appends the string representation of the specified {@code boolean} value.
101 * The {@code boolean} value is converted to a String according to the rule
105 * the {@code boolean} value to append.
115 * Appends the string representation of the specified {@code char} value.
116 * The {@code char} value is converted to a string according to the rule
120 * the {@code char} value to append.
130 * Appends the string representation of the specified {@code int} value. The
131 * {@code int} value is converted to a string according to the rule defined
135 * the {@code int} value to append.
145 * Appends the string representation of the specified {@code long} value
682 char[] value = (char[]) in.readObject(); local
    [all...]
  /external/icu4c/tools/genprops/
props2.c 169 int32_t value; local
181 value=u_getPropertyValueEnum(sen->prop, s);
182 if(value<0) {
185 value=UBLOCK_GREEK; /* Unicode 3.2 renames this to "Greek and Coptic" */
187 value=UBLOCK_COMBINING_MARKS_FOR_SYMBOLS; /* Unicode 3.2 renames this to "Combining Diacritical Marks for Symbols" */
189 value=UBLOCK_PRIVATE_USE; /* Unicode 3.2 renames this to "Private Use Area" */
193 if(value<0) {
199 uv=(uint32_t)(value<<sen->vecShift);
201 fprintf(stderr, "genprops error: %s value overflow (0x%x) at %s\n",
363 fprintf(stderr, "genprops error: shift value %d>=32 for %s %s\n"
524 uint32_t value, start, end, version; local
578 uint32_t start, end, value, oldProps32; local
    [all...]
  /bionic/libm/src/
math_private.h 29 * value. That is non-ANSI, and, moreover, the gcc instruction
45 double value; member in union:__anon540
59 double value; member in union:__anon542
74 ew_u.value = (d); \
84 gh_u.value = (d); \
93 gl_u.value = (d); \
104 (d) = iw_u.value; \
112 sh_u.value = (d); \
114 (d) = sh_u.value; \
122 sl_u.value = (d);
134 float value; member in union:__anon544
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
StringTokenizerTest.java 135 assertTrue("hasMoreElements returned incorrect value", st
141 assertTrue("hasMoreElements returned incorrect value", !st
180 assertEquals("nextElement returned incorrect value", "This", ((String) st
182 assertEquals("nextElement returned incorrect value", "is", ((String) st
184 assertEquals("nextElement returned incorrect value", "a", ((String) st
186 assertEquals("nextElement returned incorrect value", "test", ((String) st
188 assertEquals("nextElement returned incorrect value", "String", ((String) st
212 assertEquals("nextToken returned incorrect value",
214 assertEquals("nextToken returned incorrect value",
216 assertEquals("nextToken returned incorrect value",
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/x509/
X509V3CertificateGenerator.java 188 DEREncodable value)
190 this.addExtension(new DERObjectIdentifier(oid), critical, value);
199 DEREncodable value)
212 dOut.writeObject(value);
216 throw new IllegalArgumentException("error encoding value: " + e);
224 * The value parameter becomes the contents of the octet string associated
230 byte[] value)
232 this.addExtension(new DERObjectIdentifier(oid), critical, value);
241 byte[] value)
249 extensions.put(oid, new X509Extension(critical, new DEROctetString(value)));
273 ASN1Encodable value = X509ExtensionUtil.fromExtensionValue(extValue); local
    [all...]
  /dalvik/libcore/xml/src/main/java/org/xml/sax/
AttributeList.java 43 * String value = atts.getValue(i);
52 * <p>As an alternative, the application can request the value or
99 * #IMPLIED without a value specified in the start tag) will be
122 * return the value "CDATA" as stated in the XML 1.0 Recommentation
123 * (clause 3.3.3, "Attribute-Value Normalization").</p>
138 * Return the value of an attribute in the list (by position).
140 * <p>If the attribute value is a list of tokens (IDREFS,
145 * @return The attribute value as a string, or
163 * <p>The return value is the same as the return value fo
    [all...]
  /dalvik/vm/hprof/
HprofOutput.c 24 #define U2_TO_BUF_BE(buf, offset, value) \
28 u2 value_ = (u2)(value); \
33 #define U4_TO_BUF_BE(buf, offset, value) \
37 u4 value_ = (u4)(value); \
44 #define U8_TO_BUF_BE(buf, offset, value) \
48 u8 value_ = (u8)(value); \
230 hprofAddU1ToRecord(hprof_record_t *rec, u1 value)
239 rec->body[rec->length++] = value;
278 hprofAddU2ToRecord(hprof_record_t *rec, u2 value)
280 return hprofAddU2ListToRecord(rec, &value, 1)
    [all...]
  /external/icu4c/common/
utrie.c 99 /* reset the initially allocated blocks to the initial value */
217 * @return TRUE if the value was successfully set
220 utrie_set32(UNewTrie *trie, UChar32 c, uint32_t value) {
233 trie->data[block+(c&UTRIE_MASK)]=value;
262 uint32_t value, uint32_t initialValue, UBool overwrite) {
269 *block++=value;
274 *block=value;
282 utrie_setRange32(UNewTrie *trie, UChar32 start, UChar32 limit, uint32_t value, UBool overwrite) {
284 * repeat value in [start..limit[
314 value, initialValue, overwrite)
406 uint32_t value; local
720 uint32_t value, initialValue; local
1062 uint32_t value, prevValue, initialValue; local
    [all...]
  /external/icu4c/test/cintltst/
sprpdata.c 110 getValues(uint32_t result, int32_t* value, UBool* isIndex){
115 * Initial value stored in the mapping table
125 /* ascertain if the value is index or delta */
128 *value = result >> 2;
132 *value = (int16_t)result;
133 *value = (*value >> 2);
139 value = 0;
152 int32_t value=0, index=0, delta=0; local
161 retType = getValues(result,&value,&isIndex)
233 int32_t value=0; local
    [all...]
  /external/proguard/src/proguard/evaluation/value/
FloatValue.java 21 package proguard.evaluation.value;
26 * This class represents a partially evaluated float value.
33 * Returns the specific float value, if applicable.
35 public float value() method in class:FloatValue
44 * Returns the negated value of this FloatValue.
114 * Returns an IntegerValue with value -1, 0, or 1, if this FloatValue is
123 * Returns an IntegerValue with value 1, 0, or -1, if this FloatValue is
212 * Returns an IntegerValue with value -1, 0, or 1, if this FloatValue is
225 * Returns an IntegerValue with value 1, 0, or -1, if this FloatValue is
315 * Returns an IntegerValue with value -1, 0, or 1, if this FloatValue i
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_ph_gl.c 48 int ph_GL_GetAttribute(_THIS, SDL_GLattr attrib, int* value)
53 *value=this->gl_config.double_buffer;
56 *value=this->gl_config.stencil_size;
59 *value=this->gl_config.depth_size;
63 *value=this->gl_config.red_size;
66 *value=this->gl_config.green_size;
69 *value=this->gl_config.blue_size;
72 *value=this->gl_config.alpha_size;
75 *value=this->gl_config.accum_red_size;
78 *value=this->gl_config.accum_green_size
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.5.36-4.js 28 value getMonth( ). If date is not specified, this behaves as if date were
29 specified with the value getDate( ).
31 1. Let t be the result of LocalTime(this time value); but if this time
32 value is NaN, let t be +0.
40 7. Set the [[Value]] property of the this value to TimeClip(Result(6)).
41 8. Return the value of the [[Value]] property of the this value.
66 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
    [all...]
15.9.5.36-5.js 28 value getMonth( ). If date is not specified, this behaves as if date were
29 specified with the value getDate( ).
31 1. Let t be the result of LocalTime(this time value); but if this time
32 value is NaN, let t be +0.
40 7. Set the [[Value]] property of the this value to TimeClip(Result(6)).
41 8. Return the value of the [[Value]] property of the this value.
66 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
    [all...]
15.9.5.36-6.js 28 value getMonth( ). If date is not specified, this behaves as if date were
29 specified with the value getDate( ).
31 1. Let t be the result of LocalTime(this time value); but if this time
32 value is NaN, let t be +0.
40 7. Set the [[Value]] property of the this value to TimeClip(Result(6)).
41 8. Return the value of the [[Value]] property of the this value.
66 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
    [all...]
15.9.5.36-7.js 28 value getMonth( ). If date is not specified, this behaves as if date were
29 specified with the value getDate( ).
31 1. Let t be the result of LocalTime(this time value); but if this time
32 value is NaN, let t be +0.
40 7. Set the [[Value]] property of the this value to TimeClip(Result(6)).
41 8. Return the value of the [[Value]] property of the this value.
66 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
    [all...]
15.9.5.37-2.js 28 value getUTCMonth( ). If date is not specified, this behaves as if date
29 were specified with the value getUTCDate( ).
31 1. Let t be this time value; but if this time value is NaN, let t be +0.
39 7. Set the [[Value]] property of the this value to TimeClip(Result(6)).
40 8. Return the value of the [[Value]] property of the this value.
64 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
    [all...]
15.9.5.37-3.js 28 value getUTCMonth( ). If date is not specified, this behaves as if date
29 were specified with the value getUTCDate( ).
31 1. Let t be this time value; but if this time value is NaN, let t be +0.
39 7. Set the [[Value]] property of the this value to TimeClip(Result(6)).
40 8. Return the value of the [[Value]] property of the this value.
64 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
    [all...]
15.9.5.37-4.js 28 value getUTCMonth( ). If date is not specified, this behaves as if date
29 were specified with the value getUTCDate( ).
31 1. Let t be this time value; but if this time value is NaN, let t be +0.
39 7. Set the [[Value]] property of the this value to TimeClip(Result(6)).
40 8. Return the value of the [[Value]] property of the this value.
64 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
    [all...]
15.9.5.37-5.js 28 value getUTCMonth( ). If date is not specified, this behaves as if date
29 were specified with the value getUTCDate( ).
31 1. Let t be this time value; but if this time value is NaN, let t be +0.
39 7. Set the [[Value]] property of the this value to TimeClip(Result(6)).
40 8. Return the value of the [[Value]] property of the this value.
64 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.8.3.js 46 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
108 function MyObject(value) {
109 this.value = value;
110 this.valueOf = new Function( "return this.value" );
111 this.toString = new Function( "return this.value +''" );
113 function MyValueObject(value) {
114 this.value = value;
115 this.valueOf = new Function( "return this.value" );
    [all...]
11.8.4.js 47 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
110 function MyObject(value) {
111 this.value = value;
112 this.valueOf = new Function( "return this.value" );
113 this.toString = new Function( "return this.value +''" );
115 function MyValueObject(value) {
116 this.value = value;
117 this.valueOf = new Function( "return this.value" );
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
AdvancedSettings.java 152 int value = Settings.System.getInt(getContentResolver(), local
154 pref.setValue(String.valueOf(value));
196 boolean value = ((Boolean) newValue).booleanValue();
200 Settings.System.WIFI_USE_STATIC_IP, value ? 1 : 0);
205 String value = (String) newValue; local
207 if (!isIpAddress(value)) {
212 preference.setSummary(value);
215 Settings.System.putString(getContentResolver(), mSettingNames[i], value); local
224 private boolean isIpAddress(String value) {
227 int end = value.indexOf('.')
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/CUDK/Inc/
TI_AdapterDBG.h 43 word is an optional parameter, whose value depends
46 Return: TI_RESULT_OK on success. Any other value indicates an error.
61 Return: TI_RESULT_OK on success. Any other value indicates an error.
74 Return: TI_RESULT_OK on success. Any other value indicates an error.
85 available, include "1 << desired severity value" in the bitmask.
95 Return: TI_RESULT_OK on success. Any other value indicates an error.
108 Return: TI_RESULT_OK on success. Any other value indicates an error.
121 Return: TI_RESULT_OK on success. Any other value indicates an error.
133 Return: TI_RESULT_OK on success. Any other value indicates an error.
146 Return: TI_RESULT_OK on success. Any other value indicates an error
    [all...]
  /external/icu4c/i18n/
digitlst.h 58 * A DigitList is really a representation of a floating point value.
59 * It may be an integer value; we assume that a double has sufficient
64 * 10 exponent associated with it. The value represented by a DigitList
126 * Utility routine to get the value of the digit list
128 * @return the value of the digit list.
133 * Utility routine to get the value of the digit list
136 * @return the value of the digit list, return 0 if it is zero length
141 * Utility routine to get the value of the digit list
144 * @return the value of the digit list, return 0 if it is zero length
167 * Utility routine to set the value of the digit list from a doubl
    [all...]
  /external/v8/src/mips/
simulator-mips.h 65 // the address of "this" to get a value on the current execution stack and then
66 // calculates the stack limit based on that value.
148 // Accessors for register state. Reading the pc value adheres to the MIPS
151 void set_register(int reg, int32_t value);
154 void set_fpu_register(int fpureg, int32_t value);
155 void set_fpu_register_double(int fpureg, double value);
159 // Special case of set_register and get_register to access the raw PC value.
160 void set_pc(int32_t value);
185 // Known bad pc value to ensure that the simulator does not execute
188 // A pc value used to signal the simulator to stop execution. Generall
    [all...]

Completed in 1171 milliseconds

<<71727374757677787980>>