/external/icu4c/i18n/ |
ucurr.cpp | 2120 UList *values = ulist_createEmptyList(status); local [all...] |
/external/jpeg/ |
jmemdosa.asm | 19 ; values, which everybody returns in AX. 259 ; The XMScontext structure contains values for the AX,DX,BX,SI,DS registers. 260 ; These are loaded, the XMS call is performed, and the new values of the 340 ; The EMScontext structure contains values for the AX,DX,BX,SI,DS registers. 341 ; These are loaded, the EMS trap is performed, and the new values of the
|
/external/libvpx/vp8/common/x86/ |
loopfilter_sse2.asm | 185 pxor xmm2, [GLOBAL(t80)] ; p1 offset to convert to signed values 186 pxor xmm7, [GLOBAL(t80)] ; q1 offset to convert to signed values 189 pxor xmm6, [GLOBAL(t80)] ; offset to convert to signed values 192 pxor xmm0, [GLOBAL(t80)] ; offset to convert to signed values 203 pand xmm1, xmm2 ; mask filter values we don't care about 404 pxor xmm2, [GLOBAL(t80)] ; p1 offset to convert to signed values 405 pxor xmm7, [GLOBAL(t80)] ; q1 offset to convert to signed values 406 pxor xmm6, [GLOBAL(t80)] ; offset to convert to signed values 407 pxor xmm0, [GLOBAL(t80)] ; offset to convert to signed values 420 pand xmm1, xmm2 ; mask filter values we don't care abou [all...] |
/external/webkit/SunSpider/tests/parse-only/ |
concat-jquery-mootools-prototype.js | 181 // Check to see if we're setting style values 195 // ignore negative width and height values 420 values = [], 441 values.push( value ); 445 return values; 468 var values = jQuery.makeArray(value); 471 this.selected = (jQuery.inArray( this.value, values ) >= 0 || 472 jQuery.inArray( this.text, values ) >= 0); 475 if ( !values.length ) 585 // Only deal with non-null/undefined values [all...] |
prototype-1.6.0.3.js | 162 values: function(object) { 163 var values = []; 165 values.push(object[property]); 166 return values; 874 var values = $A(arguments); 876 return !values.include(value); 1042 values: function() { 1066 var key = encodeURIComponent(pair.key), values = pair.value; 1068 if (values && typeof values == 'object') [all...] |
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/ |
DoubleTest.java | 280 double[] values = new double[] { Double.NEGATIVE_INFINITY, -Double.MAX_VALUE, -2d, local 283 for (int i = 0; i < values.length; i++) { 284 double d1 = values[i]; 288 for (int j = i + 1; j < values.length; j++) { 289 double d2 = values[j]; 406 assertTrue("Should have identical values ", dd.doubleValue() == d.doubleValue()); 540 notes = "Verifies boundary values and the loop due to the difference in the expected output string.", 1538 double[] values = new double[] { Double.NEGATIVE_INFINITY, -Double.MAX_VALUE, -2d, local [all...] |
/build/tools/droiddoc/src/ |
ClassInfo.java | 417 mMethods = all.values().toArray(new MethodInfo[all.size()]); 469 mFields = all.values().toArray(new FieldInfo[0]); 505 mSelfFields = fields.values().toArray(new FieldInfo[fields.size()]); 546 mSelfMethods = methods.values().toArray(new MethodInfo[methods.size()]); 617 mSelfAttributes = attrs.values().toArray(new AttributeInfo[attrs.size()]); 958 for (ClassInfo cl: direct.values()) { 966 for (ClassInfo cl: indirect.values()) { [all...] |
/packages/apps/Camera/src/com/android/camera/ |
VideoCamera.java | 1053 ContentValues values = new ContentValues(7); local [all...] |
/external/icu4c/common/ |
uloc.c | 58 char *values, int32_t valuesCapacity, int32_t *valLen, 609 char *values, int32_t valuesCapacity, int32_t *valLen, [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/ |
X509Name.java | 216 * default look up table translating OID values into their common symbols following 222 * look up table translating OID values into their common symbols following the convention in RFC 2253 228 * look up table translating OID values into their common symbols following the convention in RFC 1779 239 * look up table translating OID values into their common symbols 245 * look up table translating string values into their OIDS - 530 * Takes two vectors one of the oids and the other of the values. 534 Vector values) 536 this(oids, values, new X509DefaultEntryConverter()); 540 * Takes two vectors one of the oids and the other of the values. 547 Vector values, [all...] |
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
DatabaseHelper.java | 140 // Load inital settings values 206 db.execSQL("INSERT INTO system ('name', 'value') values ('network_preference', '" + 291 db.execSQL("INSERT INTO system ('name', 'value') values ('" 332 + " VALUES(?,?);"); 349 db.execSQL("INSERT OR IGNORE INTO secure(name,value) values('" + 364 db.execSQL("INSERT INTO system(name,value) values('zoom','2');"); 377 + " VALUES(?,?);"); 405 db.execSQL("INSERT INTO system ('name', 'value') values ('" 420 + " VALUES(?,?);"); 436 db.execSQL("INSERT OR IGNORE INTO secure(name,value) values('" 851 ContentValues values = new ContentValues(); local [all...] |
/libcore/luni/src/main/java/java/security/ |
Provider.java | 265 public Collection<Object> values() { method in class:Provider 266 return Collections.unmodifiableCollection(super.values()); 517 lastServicesSet = new HashSet<Service>(serviceTable.values()); 522 lastServicesSet.addAll(propertyServiceTable.values()); 674 for (Iterator<Service> it = propertyServiceTable.values().iterator(); it [all...] |
/libcore/luni/src/main/java/java/util/ |
HashMap.java | 35 * <p>All elements are permitted as keys or values, including null. 55 * @param <V> the type of mapped values 123 private transient Collection<V> values; field in class:HashMap 250 result.values = null; 690 * Returns a collection of the values contained in this map. The collection 708 * @return a collection of the values contained in this map. 710 @Override public Collection<V> values() { method in class:HashMap 711 Collection<V> vs = values; 712 return (vs != null) ? vs : (values = new Values()); [all...] |
Hashtable.java | 34 * <p>Neither keys nor values can be null. (Use {@code HashMap} or {@code LinkedHashMap} if you 35 * need null keys or values.) 38 * @param <V> the type of mapped values 102 private transient Collection<V> values; field in class:Hashtable 227 result.values = null; 605 * Returns a collection of the values contained in this {@code Hashtable}. 609 * @return a collection of the values. 611 public synchronized Collection<V> values() { method in class:Hashtable 612 Collection<V> vs = values; 613 return (vs != null) ? vs : (values = new Values()) [all...] |
/packages/apps/Settings/src/com/android/settings/ |
TextToSpeechSettings.java | 71 // TODO move default Locale values to TextToSpeech.Engine 234 // Find the default TTS values in the settings, initialize and store the 274 // Default language / country / variant : these three values map to a single ListPref 733 ArrayList<CharSequence> values = new ArrayList<CharSequence>(); local 739 values.add(pluginPackageName); 745 values.add(pluginPackageName) [all...] |
/cts/tests/tests/database/src/android/database/cts/ |
DatabaseCursorTest.java | 100 mDatabase.execSQL("INSERT INTO test (data) VALUES ('" + sString1 + "');"); 101 mDatabase.execSQL("INSERT INTO test (data) VALUES ('" + sString2 + "');"); 102 mDatabase.execSQL("INSERT INTO test (data) VALUES ('" + sString3 + "');"); 109 mDatabase.execSQL("INSERT INTO test (d, s) VALUES (" + i + "," + i % 2 + ");"); 162 String sql = "INSERT INTO test (s, d, l, b) VALUES (?,?,?,?)"; 203 ContentValues values = new ContentValues(); local 204 values.put("data", 42.11); 205 long id = mDatabase.insert("test", "data", values); 316 sql.append("INSERT INTO test (data) VALUES ('"); 374 String sql = "INSERT INTO test (data) VALUES (?);" [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
RopperMachine.java | 550 IntList values = cases.getValues(); local 551 insn = new SwitchInsn(rop, pos, dest, sources, values); 552 primarySuccessorIndex = values.size(); 611 * all the constant values in a table. [all...] |
/external/chromium/net/base/ |
x509_certificate_mac.cc | 193 std::vector<std::string>* values[] = { local 200 DCHECK(arraysize(kOIDs) == arraysize(values)); 213 values[oid]->push_back(value);
|
x509_certificate_nss.cc | 77 // ScopedCERTValOutParam manages destruction of values in the CERTValOutParam 81 // When it goes out of scope, it destroys values of cert_po_trustAnchor 117 // Map PORT_GetError() return values to our network error codes. 148 // Map PORT_GetError() return values to our cert status flags. 231 std::vector<std::string>* values[] = { local 236 DCHECK(arraysize(kOIDs) == arraysize(values)); 251 values[oid]->push_back(value);
|
x509_certificate_win.cc | 394 std::vector<std::string>* values[] = { local 401 DCHECK(arraysize(kPrefixes) == arraysize(values)); 413 values[i]->push_back(value);
|
/external/dbus/dbus/ |
dbus-marshal-recursive-util.c | 114 * @returns #TRUE if the data blocks have the same values 998 * modify only some of the sub-values). OK in a test suite, but we 2147 dbus_int16_t values[MAX_MULTI_COUNT]; local 2166 dbus_int16_t *values; local 2284 dbus_int32_t values[MAX_MULTI_COUNT]; local 2303 dbus_int32_t *values; local [all...] |
/external/openssl/crypto/x509v3/ |
v3_asid.c | 283 * Extract min and max values from an ASIdOrRange. 500 STACK_OF(CONF_VALUE) *values) 510 for (i = 0; i < sk_CONF_VALUE_num(values); i++) { 511 CONF_VALUE *val = sk_CONF_VALUE_value(values, i);
|
/external/v8/src/ |
v8natives.js | 373 // Default values from ES5 8.6.1. 563 // desc (we need to preserve the existing values from current). 745 // NOTE: Both Boolean objects and values can enter here as 754 // NOTE: Both Boolean objects and values can enter here as 797 // NOTE: Both Number objects and values can enter here as 829 // NOTE: Both Number objects and values can enter here as
|
/frameworks/base/core/java/android/inputmethodservice/ |
Keyboard.java | 168 * Edge flags for this row of keys. Possible values that can be assigned are 420 int[] values = new int[count]; local 425 values[count++] = Integer.parseInt(st.nextToken()); 430 return values; 811 // Round it to avoid values like 47.9999 from getting truncated
|
/frameworks/base/core/java/com/android/internal/widget/ |
ContactHeaderWidget.java | 57 * can bind specific values on the header, or use helper methods like 644 final ContentValues values = new ContentValues(1); local 645 values.put(Contacts.STARRED, mStarredView.isChecked()); 646 mContentResolver.update(mContactUri, values, null, null);
|