HomeSort by relevance Sort by last modified time
    Searched full:put (Results 201 - 225 of 4625) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/kernel-headers/original/linux/
klist.h 25 void (*put)(struct klist_node *); member in struct:klist
30 void (*put)(struct klist_node *));
  /external/netperf/
nettest_unix.h 29 /* is used to put it into the proper order on */
45 /* is used to put it into the proper order on */
74 /* is used to put it into the proper order on */
88 /* is used to put it into the proper order on */
114 /* is used to put it into the proper order on */
128 /* is used to put it into the proper order on */
158 /* is used to put it into the proper order on */
173 /* is used to put it into the proper order on */
  /external/stlport/stlport/stl/
_num_put.h 60 iter_type put(iter_type __s, ios_base& __f, char_type __fill, function in class:num_put
65 iter_type put(iter_type __s, ios_base& __f, char_type __fill, function in class:num_put
70 iter_type put(iter_type __s, ios_base& __f, char_type __fill, function in class:num_put
76 iter_type put(iter_type __s, ios_base& __f, char_type __fill, function in class:num_put
81 iter_type put(iter_type __s, ios_base& __f, char_type __fill, function in class:num_put
87 iter_type put(iter_type __s, ios_base& __f, char_type __fill, function in class:num_put
93 iter_type put(iter_type __s, ios_base& __f, char_type __fill, function in class:num_put
99 iter_type put(iter_type __s, ios_base& __f, char_type __fill, function in class:num_put
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduBody.java 45 // Put part to mPartMapByContentId.
48 mPartMapByContentId.put(new String(contentId), part);
51 // Put part to mPartMapByContentLocation.
55 mPartMapByContentLocation.put(clc, part);
58 // Put part to mPartMapByName.
62 mPartMapByName.put(clc, part);
65 // Put part to mPartMapByFileName.
69 mPartMapByFileName.put(clc, part);
  /frameworks/base/core/java/com/google/android/mms/util/
PduCache.java 69 MATCH_TO_MSGBOX_ID_MAP.put(MMS_INBOX, Mms.MESSAGE_BOX_INBOX);
70 MATCH_TO_MSGBOX_ID_MAP.put(MMS_SENT, Mms.MESSAGE_BOX_SENT);
71 MATCH_TO_MSGBOX_ID_MAP.put(MMS_DRAFTS, Mms.MESSAGE_BOX_DRAFTS);
72 MATCH_TO_MSGBOX_ID_MAP.put(MMS_OUTBOX, Mms.MESSAGE_BOX_OUTBOX);
94 synchronized public boolean put(Uri uri, PduCacheEntry entry) { method in class:PduCache
99 mMessageBoxes.put(msgBoxId, msgBox);
106 mThreads.put(threadId, thread);
110 boolean result = super.put(finalKey, entry);
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsUtils.java 48 cv.put(AccountColumns.IS_DEFAULT, account.mIsDefault);
49 cv.put(AccountColumns.DISPLAY_NAME, account.getDisplayName());
50 cv.put(AccountColumns.SENDER_NAME, account.getSenderName());
51 cv.put(AccountColumns.SIGNATURE, account.getSignature());
52 cv.put(AccountColumns.SYNC_INTERVAL, account.mSyncInterval);
53 cv.put(AccountColumns.RINGTONE_URI, account.mRingtoneUri);
54 cv.put(AccountColumns.FLAGS, account.mFlags);
55 cv.put(AccountColumns.SYNC_LOOKBACK, account.mSyncLookback);
  /dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MDGoldenData.java 54 goldenData.put("SHA-1", new byte[] {
63 goldenData.put("SHA-1_NU", new byte[] {
71 goldenData.put("SHA", goldenData.get("SHA-1"));
72 goldenData.put("SHA_NU", goldenData.get("SHA-1_NU"));
74 goldenData.put("SHA1", goldenData.get("SHA-1"));
75 goldenData.put("SHA1_NU", goldenData.get("SHA-1_NU"));
77 goldenData.put("SHA-256", new byte[] {
87 goldenData.put("SHA-256_NU", new byte[] {
97 goldenData.put("SHA-384", new byte[] {
111 goldenData.put("SHA-384_NU", new byte[]
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
ImageManager.java 127 values.put(Images.Media.SIZE, size);
171 values.put(Images.Media.TITLE, title);
176 values.put(Images.Media.DISPLAY_NAME, filename);
177 values.put(Images.Media.DATE_TAKEN, dateTaken);
178 values.put(Images.Media.DATE_MODIFIED, dateTaken);
179 values.put(Images.Media.DATE_ADDED, dateAdded);
180 values.put(Images.Media.MIME_TYPE, "image/jpeg");
181 values.put(Images.Media.ORIENTATION, degree[0]);
182 values.put(Images.Media.DATA, filePath);
183 values.put(Images.Media.SIZE, size)
    [all...]
  /dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
ConnectionTest.java 46 thePublicStatics.put("TRANSACTION_SERIALIZABLE", new Integer(8));
47 thePublicStatics.put("TRANSACTION_REPEATABLE_READ", new Integer(4));
48 thePublicStatics.put("TRANSACTION_READ_COMMITTED", new Integer(2));
49 thePublicStatics.put("TRANSACTION_READ_UNCOMMITTED", new Integer(1));
50 thePublicStatics.put("TRANSACTION_NONE", new Integer(0));
  /external/bluetooth/glib/gio/win32/
gwinhttpfileoutputstream.c 126 L"PUT",
135 _g_winhttp_set_error (error, GetLastError (), "PUT request");
152 _g_winhttp_set_error (error, GetLastError (), "PUT request");
165 _g_winhttp_set_error (error, GetLastError (), "PUT request");
177 "PUT request"))
  /external/guava/src/com/google/common/collect/
ImmutableSetMultimap.java 71 builder.put(k1, v1);
82 builder.put(k1, v1);
83 builder.put(k2, v2);
95 builder.put(k1, v1);
96 builder.put(k2, v2);
97 builder.put(k3, v3);
109 builder.put(k1, v1);
110 builder.put(k2, v2);
111 builder.put(k3, v3);
112 builder.put(k4, v4)
185 @Override public Builder<K, V> put(K key, V value) { method in class:ImmutableSetMultimap.Builder
    [all...]
  /packages/apps/IM/src/com/android/im/imps/
SmsSplitter.java 80 mOutBuffer.put(mData, 0, mPreambleEnd);
82 mOutBuffer.put((byte) ('a' + mCurrentSegment));
83 mOutBuffer.put((byte) ('a' + mSegmentCount - 1));
85 mOutBuffer.put((byte) ' ');
92 mOutBuffer.put(mData, offset, len);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
SocialProvider.java 88 columns.put(Contacts.DISPLAY_NAME, "contact." + Contacts.DISPLAY_NAME + " AS "
94 columns.put(RawContacts._ID, Tables.RAW_CONTACTS + "." + RawContacts._ID + " AS _id");
95 columns.put(RawContacts.CONTACT_ID, RawContacts.CONTACT_ID);
100 columns.put(Activities._ID, "activities._id AS _id");
101 columns.put(Activities.RES_PACKAGE, PackagesColumns.PACKAGE + " AS "
103 columns.put(Activities.MIMETYPE, Activities.MIMETYPE);
104 columns.put(Activities.RAW_ID, Activities.RAW_ID);
105 columns.put(Activities.IN_REPLY_TO, Activities.IN_REPLY_TO);
106 columns.put(Activities.AUTHOR_CONTACT_ID, Activities.AUTHOR_CONTACT_ID);
107 columns.put(Activities.TARGET_CONTACT_ID, Activities.TARGET_CONTACT_ID)
    [all...]
  /packages/apps/Email/src/com/android/exchange/adapter/
CalendarSyncAdapter.java 296 attendeeCv.put(Attendees.ATTENDEE_NAME, organizerName);
299 attendeeCv.put(Attendees.ATTENDEE_EMAIL, organizerEmail);
301 attendeeCv.put(Attendees.ATTENDEE_RELATIONSHIP, Attendees.RELATIONSHIP_ORGANIZER);
302 attendeeCv.put(Attendees.ATTENDEE_TYPE, Attendees.TYPE_REQUIRED);
303 attendeeCv.put(Attendees.ATTENDEE_STATUS, Attendees.ATTENDEE_STATUS_ACCEPTED);
341 cv.put(EVENT_TIMEZONE2_COLUMN, originalTimeZone);
342 cv.put(Events.EVENT_TIMEZONE, UTC_TIMEZONE.getID());
357 cv.put(Events.ORIGINAL_INSTANCE_TIME, cal.getTimeInMillis());
362 cv.put(Events.DTSTART, startTime);
366 cv.put(Events.DURATION, "P" + ((endTime - startTime) / DAYS) + "D")
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ClassZeroActivity.java 185 values.put(Inbox.ADDRESS, sms.getDisplayOriginatingAddress());
189 values.put(Inbox.DATE, new Long(System.currentTimeMillis()));
190 values.put(Inbox.PROTOCOL, sms.getProtocolIdentifier());
191 values.put(Inbox.READ, Integer.valueOf(mRead ? 1 : 0));
192 values.put(Inbox.SEEN, Integer.valueOf(mRead ? 1 : 0));
195 values.put(Inbox.SUBJECT, sms.getPseudoSubject());
197 values.put(Inbox.REPLY_PATH_PRESENT, sms.isReplyPathPresent() ? 1 : 0);
198 values.put(Inbox.SERVICE_CENTER, sms.getServiceCenterAddress());
205 values.put(Inbox.BODY, sms.getMessageBody());
236 values.put(Inbox.BODY, sms.getDisplayMessageBody())
    [all...]
  /packages/apps/IM/src/com/android/im/provider/
ImpsProvider.java     [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProvider2.java 177 put(syncIdKey, instances); method
473 values.put("dtstart", get2445ToMillis(timezone, dtStart2445));
474 values.put("dtend", get2445ToMillis(timezone, dtEnd2445));
    [all...]
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
Security2Test.java 145 table.put(key, new Integer(before.intValue() + 1));
147 table.put(key, new Integer(1));
234 filter.put("KeyStore.BKS", "");
235 filter.put("Signature.SHA1withDSA", "");
246 filter.put("MessageDigest.SHA-384", "");
247 filter.put("CertificateFactory.X.509", "");
248 filter.put("KeyFactory.RSA", "");
260 filter.put("MessageDigest.SHA1", "");
261 filter.put("TrustManagerFactory.X509", "");
273 filter.put("CertificateFactory.X509", "")
    [all...]
  /development/tools/apkcheck/src/com/android/apkcheck/
TypeUtils.java 32 sQuickConvert.put("boolean", "Z");
33 sQuickConvert.put("byte", "B");
34 sQuickConvert.put("char", "C");
35 sQuickConvert.put("short", "S");
36 sQuickConvert.put("int", "I");
37 sQuickConvert.put("float", "F");
38 sQuickConvert.put("long", "J");
39 sQuickConvert.put("double", "D");
40 sQuickConvert.put("void", "V");
41 sQuickConvert.put("java.lang.Object", "Ljava/lang/Object;")
    [all...]
  /packages/apps/IM/src/com/android/im/service/
ImConnectionAdapter.java 165 cookie.put(c.getString(COLUMN_SESSION_COOKIE_NAME),
290 values.put(Imps.SessionCookies.NAME, entry.getKey());
291 values.put(Imps.SessionCookies.VALUE, entry.getValue());
316 values.put(Imps.AccountStatus.ACCOUNT, mAccountId);
317 values.put(Imps.AccountStatus.PRESENCE_STATUS, presenceStatus);
318 values.put(Imps.AccountStatus.CONNECTION_STATUS, connectionStatus);
452 values.put(Imps.Invitation.PROVIDER, mProviderId);
453 values.put(Imps.Invitation.ACCOUNT, mAccountId);
454 values.put(Imps.Invitation.INVITE_ID, invitation.getInviteID());
455 values.put(Imps.Invitation.SENDER, sender)
    [all...]
  /packages/apps/Mms/tests/src/com/android/mms/
RecyclerTest.java 44 * NOTE: you first have to put the unix words file on the device:
52 * NOTE: you first have to put the unix words file on the device:
144 // values.put(Sms.ERROR_CODE, 0);
145 values.put(Inbox.ADDRESS, address);
149 values.put(Inbox.DATE, new Long(System.currentTimeMillis()));
150 values.put(Inbox.PROTOCOL, 0);
151 values.put(Inbox.READ, Integer.valueOf(0));
153 // values.put(Inbox.SUBJECT, sms.getPseudoSubject());
155 values.put(Inbox.REPLY_PATH_PRESENT, 0);
156 values.put(Inbox.SERVICE_CENTER, 0)
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/x501/
AttributeTypeAndValue.java 188 RFC1779_NAMES.put(CN.getName(), CN);
189 RFC1779_NAMES.put(L.getName(), L);
190 RFC1779_NAMES.put(ST.getName(), ST);
191 RFC1779_NAMES.put(O.getName(), O);
192 RFC1779_NAMES.put(OU.getName(), OU);
193 RFC1779_NAMES.put(C.getName(), C);
194 RFC1779_NAMES.put(STREET.getName(), STREET);
201 RFC2253_NAMES.put(DC.getName(), DC);
202 RFC2253_NAMES.put(UID.getName(), UID);
207 RFC2459_NAMES.put(DNQ.getName(), DNQ)
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
DOMConfigurationImpl.java 56 PARAMETERS.put("canonical-form", new FixedParameter(false));
62 PARAMETERS.put("cdata-sections", new BooleanParameter() {
74 PARAMETERS.put("check-character-normalization", new FixedParameter(false));
79 PARAMETERS.put("comments", new BooleanParameter() {
92 PARAMETERS.put("datatype-normalization", new BooleanParameter() {
110 PARAMETERS.put("element-content-whitespace", new FixedParameter(true));
115 PARAMETERS.put("entities", new BooleanParameter() {
127 PARAMETERS.put("error-handler", new Parameter() {
153 PARAMETERS.put("infoset", new BooleanParameter() {
183 PARAMETERS.put("namespaces", new BooleanParameter()
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/
ContentProviderOperationTest.java 48 sTestValues1.put("a", 1);
49 sTestValues1.put("b", "two");
112 expected.put("a1", 103);
113 expected.put("a2", 101);
231 values.put("a", "in1");
232 values.put("a2", "in2");
233 values.put("b", "in3");
234 values.put("c", "in4");
243 expectedValues.put("a1", (long) 103);
244 expectedValues.put("a2", (long) 101)
    [all...]
  /dalvik/libcore/sql/src/test/java/tests/java/sql/
SelectFunctionalityTest.java 265 value.put(1, DatabaseCreator.defaultString + "1");
266 value.put(2, DatabaseCreator.defaultString + "1");
267 value.put(3, DatabaseCreator.defaultString + "1");
268 value.put(4, DatabaseCreator.defaultString + "1");
269 value.put(5, DatabaseCreator.defaultString + "1");
307 value.put(3001, 2008);
308 value.put(3002, 2007);
309 value.put(3006, 2008);
310 value.put(3009, 2002);
311 value.put(3007, 2004)
    [all...]

Completed in 105 milliseconds

1 2 3 4 5 6 7 891011>>