HomeSort by relevance Sort by last modified time
    Searched refs:values (Results 751 - 775 of 1385) sorted by null

<<31323334353637383940>>

  /external/openssl/crypto/x509v3/
v3_utl.c 254 STACK_OF(CONF_VALUE) *values = NULL;
286 X509V3_add_value(ntmp, NULL, &values);
302 X509V3_add_value(ntmp, vtmp, &values);
319 X509V3_add_value(ntmp, vtmp, &values);
329 X509V3_add_value(ntmp, NULL, &values);
332 return values;
336 sk_CONF_VALUE_pop_free(values, X509V3_conf_free);
695 /* Treat the IPv6 representation as a list of values
  /external/protobuf/java/src/test/java/com/google/protobuf/
DescriptorsTest.java 77 assertEquals(FieldDescriptor.Type.values().length,
78 FieldDescriptorProto.Type.values().length);
79 for (FieldDescriptor.Type type : FieldDescriptor.Type.values()) {
396 FieldDescriptor.Type[] values1 = FieldDescriptor.Type.values();
397 WireFormat.FieldType[] values2 = WireFormat.FieldType.values();
411 FieldDescriptor.JavaType[] values1 = FieldDescriptor.JavaType.values();
412 WireFormat.JavaType[] values2 = WireFormat.JavaType.values();
  /external/skia/src/animator/
SkMemberInfo.cpp 97 if (dispArray->values.count() <= index)
99 type = dispArray->values.getType();
119 type = dispArray->values.getType();
160 void SkMemberInfo::setValue(SkDisplayable* displayable, const SkOperand values[],
162 SkASSERT(sizeof(values[0].fScalar) == sizeof(values[0])); // no support for 64 bit pointers, yet
169 memcpy(dst, values, count * sizeof(SkOperand));
  /external/tremolo/Tremolo/
bitwise.c 690 unsigned long values[TESTWORDS]; local
705 values[j]=rand();
709 flat[word] |= ((values[j]>>k)&0x1)<<bit;
797 if(temp!=(values[j]&mask[len[j]])){
800 values[j]&mask[len[j]],temp,j-begin,len[j]);
832 if(temp!=(values[j]&mask[len[j]])){
835 values[j]&mask[len[j]],temp,j-begin,len[j]);
  /external/guava/src/com/google/common/collect/
AbstractMultimap.java 46 * a multimap as a map that associates each key with a collection of values. All
51 * #createCollection()}, which creates an empty collection of values for a key.
56 * to create the collection of values for that key. The subclass should not call
63 * through the keys and values in sorted order.
65 * <p>Keys and values may be null, as long as the underlying collection classes
91 * The map variable contains the collection of values associated with each
93 * contain any values for that key, a new collection generated by
95 * remains in the map as long as the multimap has any values for the key. If
96 * all values for the key are removed, the key and collection are removed
102 * empty, the multimap may contain subsequently added values for that key. T
1124 public Collection<V> values() { method
    [all...]
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsLayerQt.cpp     [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsSmsProvider.java 568 ContentValues values = new ContentValues(4); local
571 values.put(ThreadsColumns.DATE, date - date % 1000);
572 values.put(ThreadsColumns.RECIPIENT_IDS, recipientIds);
574 values.put(Threads.TYPE, Threads.BROADCAST_THREAD);
576 values.put(ThreadsColumns.MESSAGE_COUNT, 0);
578 long result = mOpenHelper.getWritableDatabase().insert("threads", null, values);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ViewContactActivity.java 676 // Update the primary values in the data record.
677 ContentValues values = new ContentValues(1); local
678 values.put(Data.IS_SUPER_PRIMARY, 1);
680 values, null, null); local
745 ContentValues values = new ContentValues(3); local
748 values.put(AggregationExceptions.RAW_CONTACT_ID1, aRawContactId);
749 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId);
750 values.put(AggregationExceptions.TYPE, exceptionType);
751 mResolver.update(AggregationExceptions.CONTENT_URI, values, null, null);
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
trietest.c 36 /* Values for setting possibly overlapping, out-of-order ranges of values */
44 * Values for testing:
144 uint32_t values[30]; local
160 values[countValues++]=checkRanges[i].value;
175 if(value!=values[i]) {
177 testName, c, c2, value, values[i]);
208 if(value!=values[i]) {
210 testName, c, c2, value, values[i]);
220 if(value!=values[i])
    [all...]
  /external/icu4c/test/cintltst/
trietest.c 36 /* Values for setting possibly overlapping, out-of-order ranges of values */
44 * Values for testing:
144 uint32_t values[30]; local
160 values[countValues++]=checkRanges[i].value;
175 if(value!=values[i]) {
177 testName, c, c2, value, values[i]);
208 if(value!=values[i]) {
210 testName, c, c2, value, values[i]);
220 if(value!=values[i])
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSArray.cpp 76 // These values have to be macros to be used in max() and min() without introducing
358 // Fast case is when there is no sparse map, so we can increase the vector size without moving values from it.
370 // Decide how many values it would be best to move from the map.
500 // This function leaves the array in an internally inconsistent state, because it does not move any values from sparse value map
680 // side-effect from swapping the order of equal primitive values.
697 // Converting JavaScript values to strings can be expensive, so we do it once up front and sort based on that.
702 Vector<ValueStringPair> values(lengthNotIncludingUndefined);
703 if (!values.begin()) {
711 values[i].first = value;
715 // In that case, objects pointed to by values in this vector might get garbage-collected
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
GridInputProcessor.java 130 float[] values = event.values; local
134 valueToUse = values[0];
137 valueToUse = -event.values[1];
140 valueToUse = -event.values[0];
143 valueToUse = event.values[1];
156 float shakeValue = values[1] * values[1] + values[2] * values[2]
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationComposite.java 220 String[] values = data.split(SEP); local
221 if (values.length == 6) {
223 if (d.getName().equals(values[0])) {
225 FolderConfiguration config = device.getConfigs().get(values[1]);
227 configName = values[1];
230 String locales[] = values[2].split(SEP_LOCALE);
240 theme = values[3];
241 dock = DockMode.getEnum(values[4]);
245 night = NightMode.getEnum(values[5]);
304 * Initializes a new {@link CustomToggle}. The values set here will be use
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContentValuesTest.java 687 HashMap<String, Object> values = p.readHashMap(ClassLoader.getSystemClassLoader()); local
688 assertNotNull(values);
689 assertEquals(3, values.size());
691 assertEquals(-110, values.get("Integer"));
692 assertEquals("cts", values.get("String"));
693 assertEquals(false, values.get("Boolean"));
  /external/v8/test/mjsunit/
array-functions-prototype.js 65 // values.
96 // right values.
127 // values.
array-unshift.js 58 // ... but sees values from Array.prototype
95 // Note that unshift copies values from prototype into the array.
118 // Check the behaviour when approaching maximal values for length.
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccProvider.java 437 public int update(Uri url, ContentValues values, String where, String[] whereArgs) {
451 pin2 = values.getAsString("pin2");
459 String tag = values.getAsString("tag");
460 String number = values.getAsString("number");
462 String newTag = values.getAsString("newTag");
463 String newNumber = values.getAsString("newNumber");
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
TestActivity.java 128 * ContentValues values = new ContentValues();
129 * values.put(BluetoothShare.URI, stream.toString());
130 * values.put(BluetoothShare.DESTINATION, "FF:FF:FF:00:00:00");
131 * values.put(BluetoothShare.DIRECTION,
133 * getContentResolver().insert(BluetoothShare.CONTENT_URI, values);
236 ContentValues values = new ContentValues();
237 values.put(BluetoothShare.URI, "content://media/external/images/media/" + media);
238 // values.put(BluetoothShare.DESTINATION, "FF:FF:FF:00:00:00");
240 // values.put(BluetoothShare.DESTINATION, "12:34:56:78:9A:BC");
242 // values.put(BluetoothShare.DESTINATION, "00:1B:33:F0:58:FB")
    [all...]
BluetoothOppReceiver.java 201 ContentValues values = new ContentValues(); local
202 values.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN);
203 context.getContentResolver().update(intent.getData(), values, null, null); local
  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java 594 * Fill the specified conversation with the values from the specified
799 ContentValues values = new ContentValues(1); local
800 values.put("seen", 1);
803 values,
834 ContentValues values = new ContentValues(1); local
835 values.put("seen", 1);
838 values,
    [all...]
  /external/webkit/WebCore/plugins/mac/
PluginPackageMac.cpp 172 Vector<const void*, 128> values(propCount);
173 CFDictionaryGetKeysAndValues(mimeDict.get(), keys.data(), values.data());
178 WTF::RetainPtr<CFDictionaryRef> extensionsDict = (CFDictionaryRef)values[i];
  /packages/apps/Contacts/src/com/android/contacts/ui/widget/
ContactEditorView.java 182 ValuesDelta values = state.getValues(); local
183 String accountName = values.getAsString(RawContacts.ACCOUNT_NAME);
195 mRawContactId = values.getAsLong(RawContacts._ID);
  /packages/apps/Mms/src/com/android/mms/
SuggestionsProvider.java 60 public Uri insert(Uri uri, ContentValues values) {
86 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
331 public boolean commitUpdates(Map<? extends Long, ? extends Map<String, Object>> values) {
  /packages/apps/Settings/src/com/android/settings/
ApnSettings.java 249 ContentValues values = new ContentValues(); local
250 values.put(APN_ID, mSelectedKey);
251 resolver.update(PREFERAPN_URI, values, null, null);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
LayoutParamsParser.java 49 * <li>The list of permissions values from <code>android.Manifest$permission</code></li>
367 Collection<ExtViewClassInfo> values = map.values(); local
370 for (ExtViewClassInfo info : values) {

Completed in 1528 milliseconds

<<31323334353637383940>>