HomeSort by relevance Sort by last modified time
    Searched refs:put (Results 801 - 825 of 1776) sorted by null

<<31323334353637383940>>

  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsProvider.java 337 finalValues.put(Mms.DATE, timeInMillis / 1000L);
341 finalValues.put(Mms.MESSAGE_BOX, msgBox);
346 finalValues.put(Mms.READ, 1);
354 finalValues.put(Mms.THREAD_ID, Threads.getOrCreateThreadId(getContext(), address));
366 finalValues.put(Addr.MSG_ID, uri.getPathSegments().get(0));
378 finalValues.put(Part.MSG_ID, uri.getPathSegments().get(0));
393 finalValues.put(Part._DATA, path);
429 cv.put(Telephony.MmsSms.WordsTable.ID, (2 << 32) + rowId);
430 cv.put(Telephony.MmsSms.WordsTable.INDEXED_TEXT, values.getAsString("text"));
431 cv.put(Telephony.MmsSms.WordsTable.SOURCE_ROW_ID, rowId)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
AbstractPreferencesTest.java 78 method = "put",
89 pref.put("Value", "String");
95 pref.put(null, "Exception");
109 pref.put(new String(sb), "Exception");
122 pref.put("DoubleValue", new String(sb));
131 pref.put("DoubleValue", "Exception");
153 pref.put("Value", "String");
195 pref.put(keyArray[0], "String");
309 pref.put("Value", "String");
387 pref.put("Value", "String")
    [all...]
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteDatabaseTest.java 772 values.put("name", "Jack");
773 values.put("age", 20);
774 values.put("address", "LA");
801 values.put("Wrong Key", "Wrong value");
814 values.put("name", "Mike");
815 values.put("age", 30);
816 values.put("address", "London");
843 values.put("Wrong Key", "Wrong value");
    [all...]
  /external/proguard/src/proguard/retrace/
ReTrace.java 566 classMap.put(newClassName, className);
579 classFieldMap.put(className, fieldMap);
587 fieldMap.put(newFieldName, fieldSet);
603 classMethodMap.put(className, methodMap);
611 methodMap.put(newMethodName, methodSet);
  /external/webkit/JavaScriptCore/runtime/
ArrayPrototype.cpp 148 obj->put(exec, propertyName, value, slot);
300 arr->put(exec, n, v);
304 arr->put(exec, n, curArg);
346 thisObj->put(exec, length + n, args.at(n));
364 thisObj->put(exec, k, obj2);
369 thisObj->put(exec, lk1, obj);
389 thisObj->put(exec, k - 1, obj);
438 resObj->put(exec, n, v);
495 thisObj->put(exec, i, minObj);
496 thisObj->put(exec, themin, iObj)
    [all...]
RegExpConstructor.cpp 134 JSArray::put(exec, i, jsSubstring(exec, d->lastInput, start, d->lastOvector()[2 * i + 1] - start));
136 JSArray::put(exec, i, jsUndefined());
140 JSArray::put(exec, exec->propertyNames().index, jsNumber(exec, d->lastOvector()[0]), slot);
141 JSArray::put(exec, exec->propertyNames().input, jsString(exec, d->input), slot);
273 void RegExpConstructor::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) function in class:JSC::RegExpConstructor
  /libcore/luni/src/main/java/java/net/
InetAddress.java 219 // and always put IPv4 addresses first. Arrays.sort() is stable, so the
502 addressCache.put(host, addresses);
    [all...]
  /libcore/luni/src/test/java/tests/api/java/io/
ObjectStreamFieldTest.java 463 o.putFields().put("d", new Date());
464 o.putFields().put("i", new Integer(11));
527 putField.put("i", new Integer(1000));
528 putField.put("d", today);
529 putField.put("s", "Richard");
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java 1019 entityMap.put("amp", "&");
1020 entityMap.put("apos", "'");
1021 entityMap.put("gt", ">");
1022 entityMap.put("lt", "<");
1023 entityMap.put("quot", "\"");
    [all...]
  /packages/apps/Email/src/com/android/email/
MessagingController.java 177 private void put(String description, MessagingListener listener, Runnable runnable) { method in class:MessagingController
251 put("listFolders", listener, new Runnable() {
278 localFolders.put(info.mDisplayName, info);
363 put("synchronizeMailbox", listener, new Runnable() {
489 localMessageMap.put(info.mServerId, info);
559 remoteUidMap.put(message.getUid(), message);
680 updateValues.put(EmailContent.Message.FLAG_READ, remoteSeen);
681 updateValues.put(EmailContent.Message.FLAG_FAVORITE, remoteFlagged);
716 // updateValues.put(EmailContent.Mailbox.UNREAD_COUNT, remoteUnreadMessageCount);
    [all...]
SecurityPolicy.java 291 cv.put(AccountColumns.FLAGS, account.mFlags);
308 cv.put(AccountColumns.FLAGS, flags & ~Account.FLAGS_SECURITY_HOLD);
333 // Put up a notification
545 cv.put(AccountColumns.SECURITY_FLAGS, account.mSecurityFlags);
546 cv.put(AccountColumns.SECURITY_SYNC_KEY, account.mSecuritySyncKey);
619 cv.put(AccountColumns.SECURITY_FLAGS, 0);
  /external/guava/src/com/google/common/collect/
LinkedListMultimap.java 54 * multimap.put(key1, foo);
55 * multimap.put(key2, bar);
56 * multimap.put(key1, baz);}</pre>
188 keyToKeyHead.put(key, node);
189 keyToKeyTail.put(key, node);
195 keyToKeyHead.put(key, node);
200 keyToKeyTail.put(key, node);
208 keyToKeyHead.put(key, node);
243 keyToKeyHead.put(node.key, node.nextSibling);
250 keyToKeyTail.put(node.key, node.previousSibling)
458 public boolean put(@Nullable K key, @Nullable V value) { method in class:LinkedListMultimap
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
Bridge.java 228 // the internal version), and put the content in the maps.
241 sRFullMap.put(resType, fullMap);
250 // if the object is an int[] we put it in sRArrayMap
251 sRArrayMap.put((int[]) f.get(null), f.getName());
254 sRMap.put(value, new String[] { f.getName(), resType });
255 fullMap.put(f.getName(), value);
642 outInheritanceMap.put(style, parentStyle);
    [all...]
BridgeContext.java 138 mViewKeyMap.put(view, viewKey);
209 mTypedArrayCache.put(attrs, map);
212 map.put(resid, ta);
221 mTypedArrayCache.put(attrs, map);
229 map.put(resid, ta);
685 attributes.put(i, info[0]);
688 attributes.put(i, null);
707 attributes.put(i, info[0]);
710 attributes.put(i, null);
760 mDynamicIdToStyleMap.put(id, resValue)
    [all...]
  /packages/apps/SoundRecorder/src/com/android/soundrecorder/
SoundRecorder.java 531 values.put(MediaStore.Audio.Playlists.Members.PLAY_ORDER, Integer.valueOf(base + audioId));
532 values.put(MediaStore.Audio.Playlists.Members.AUDIO_ID, audioId);
564 cv.put(MediaStore.Audio.Playlists.NAME, res.getString(R.string.audio_db_playlist_name));
592 cv.put(MediaStore.Audio.Media.IS_MUSIC, "0");
594 cv.put(MediaStore.Audio.Media.TITLE, title);
595 cv.put(MediaStore.Audio.Media.DATA, file.getAbsolutePath());
596 cv.put(MediaStore.Audio.Media.DATE_ADDED, (int) (current / 1000));
597 cv.put(MediaStore.Audio.Media.DATE_MODIFIED, (int) (modDate / 1000));
598 cv.put(MediaStore.Audio.Media.MIME_TYPE, mRequestedType);
599 cv.put(MediaStore.Audio.Media.ARTIST
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
AsyncQueryHandlerTest.java 86 values0.put(DummyProvider.NAME, NAME0);
90 values1.put(DummyProvider.NAME, NAME1);
94 values2.put(DummyProvider.NAME, NAME2);
141 values1.put(DummyProvider.NAME, NAME3);
143 values2.put(DummyProvider.NAME, NAME4);
262 values1.put(DummyProvider.NAME, NAME3);
264 values2.put(DummyProvider.NAME, NAME4);
  /external/protobuf/java/src/main/java/com/google/protobuf/
FieldSet.java 112 fields.put(entry.getKey(), Collections.unmodifiableList(value));
188 fields.put(descriptor, value);
277 fields.put(descriptor, list);
394 fields.put(descriptor, new ArrayList((List) otherValue));
402 fields.put(descriptor, otherValue);
405 fields.put(descriptor,
412 fields.put(descriptor, otherValue);
  /frameworks/base/core/java/android/pim/vcard/
VCardComposer.java 140 sImMap.put(Im.PROTOCOL_AIM, VCardConstants.PROPERTY_X_AIM);
141 sImMap.put(Im.PROTOCOL_MSN, VCardConstants.PROPERTY_X_MSN);
142 sImMap.put(Im.PROTOCOL_YAHOO, VCardConstants.PROPERTY_X_YAHOO);
143 sImMap.put(Im.PROTOCOL_ICQ, VCardConstants.PROPERTY_X_ICQ);
144 sImMap.put(Im.PROTOCOL_JABBER, VCardConstants.PROPERTY_X_JABBER);
145 sImMap.put(Im.PROTOCOL_SKYPE, VCardConstants.PROPERTY_X_SKYPE_USERNAME);
579 contentValuesListMap.put(key, contentValuesList);
  /libcore/luni/src/main/java/org/apache/xml/utils/
DOMHelper.java 575 /** Object to put into the m_NSInfos table that tells that a node has not been
580 /** Object to put into the m_NSInfos table that tells that a node has not been
585 /** Object to put into the m_NSInfos table that tells that a node has not been
590 /** Object to put into the m_NSInfos table that tells that a node has been
595 /** Object to put into the m_NSInfos table that tells that a node has been
600 /** Object to put into the m_NSInfos table that tells that a node has been
741 m_NSInfos.put(parent, nsInfo);
778 m_NSInfos.put(m_candidateNoAncestorXMLNS.elementAt(i),
783 m_NSInfos.put(m_candidateNoAncestorXMLNS.elementAt(i),
800 m_NSInfos.put(n, m_NSInfoNullWithXMLNS)
    [all...]
  /build/tools/droiddoc/src/
ClassInfo.java 272 // put something here in case someone uses it
397 all.put(key, method);
407 all.put(key, method);
414 MethodInfo old = all.put(key, method);
438 all.put(f.name(), f);
465 all.put(key, f);
478 fields.put(f.name(), f.cloneForClass(owner));
501 fields.put(f.name(), f);
519 methods.put(m.name()+m.signature(), m.cloneForClass(owner));
542 methods.put(m.name()+m.signature(), m)
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java     [all...]
  /frameworks/base/core/java/android/accounts/
AccountManagerService.java 423 values.put(ACCOUNTS_NAME, account.name);
424 values.put(ACCOUNTS_TYPE, account.type);
425 values.put(ACCOUNTS_PASSWORD, password);
450 values.put(EXTRAS_KEY, key);
451 values.put(EXTRAS_ACCOUNTS_ID, accountId);
452 values.put(EXTRAS_VALUE, value);
638 values.put(AUTHTOKENS_ACCOUNTS_ID, accountId);
639 values.put(AUTHTOKENS_TYPE, type);
640 values.put(AUTHTOKENS_AUTHTOKEN, authToken);
714 values.put(ACCOUNTS_PASSWORD, password)
    [all...]
  /frameworks/base/core/java/android/server/
BluetoothService.java 720 mState.put(getAddressFromObjectPath(device).toUpperCase(),
765 mState.put(address, state);
857 mPinAttempt.put(address, new Integer(newAttempt));
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
ConcurrentSkipListSubMapTest.java 25 map.put(zero, "Z");
26 map.put(one, "A");
27 map.put(five, "E");
28 map.put(three, "C");
29 map.put(two, "B");
30 map.put(four, "D");
31 map.put(seven, "F");
43 map.put(m1, "A");
44 map.put(m5, "E");
45 map.put(m3, "C")
    [all...]
ArrayBlockingQueueTest.java 268 * put(null) throws NPE
273 q.put(null);
279 * all elements successfully put are contained
285 q.put(I);
292 * put blocks interruptibly if full
299 q.put(i);
303 q.put(99);
317 * put blocks waiting for take when full
325 q.put(i);
327 q.put(99)
    [all...]

Completed in 4595 milliseconds

<<31323334353637383940>>