HomeSort by relevance Sort by last modified time
    Searched refs:values (Results 301 - 325 of 3027) sorted by null

<<11121314151617181920>>

  /external/chromium/base/threading/
thread_local_storage_unittest.cc 74 int values[kNumThreads]; local
82 values[index] = kInitialTlsValue;
83 thread_delegates[index] = new ThreadLocalStorageRunner(&values[index]);
96 EXPECT_EQ(values[index], kInitialTlsValue);
  /external/chromium/chrome/browser/autofill/
autofill_host.h 45 virtual void AutoFillSuggestionsReturned(const std::vector<string16>& values, const std::vector<string16>& labels, const std::vector<string16>& icons, const std::vector<int>& unique_ids) = 0;
  /external/chromium/webkit/glue/
idb_bindings.h 23 std::vector<WebKit::WebIDBKey>* values);
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
tokens.py 41 values: Dictionary of values returned from the tokens regex match.
50 def __init__(self, string, token_type, line, line_number, values=None):
58 values: A dict of named values within the token. For instance, a
67 self.values = values
124 self.values, self.line_number,
  /external/guava/guava/src/com/google/common/collect/
AbstractSortedSetMultimap.java 42 * values
53 * Returns a collection view of all values associated with a key. If no
60 * <p>Because a {@code SortedSetMultimap} has unique sorted values for a given
69 * Removes all values associated with a given key. The returned collection is
72 * <p>Because a {@code SortedSetMultimap} has unique sorted values for a given
81 * Stores a collection of values with the same key, replacing any existing
82 * values for that key. The returned collection is immutable.
84 * <p>Because a {@code SortedSetMultimap} has unique sorted values for a given
88 * <p>Any duplicates in {@code values} will be stored in the multimap once.
91 K key, Iterable<? extends V> values) {
119 @Override public Collection<V> values() { method in class:AbstractSortedSetMultimap
    [all...]
  /external/harfbuzz_ng/src/
hb-gobject-enums.cc.tmpl 56 static const G@Type@Value values[] = {
67 g_@type@_register_static (g_intern_static_string ("@EnumName@"), values);
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
FunctionExecutor.java 19 import com.google.clearsilver.jsilver.values.Value;
  /external/libffi/testsuite/libffi.call/
struct5.c 27 void *values[MAX_ARGS]; local
46 values[0] = &ts5_arg1;
47 values[1] = &ts5_arg2;
57 ffi_call (&cif, FFI_FN(struct5), ts5_result, values);
  /external/nist-sip/java/javax/sip/
DialogState.java 14 return values()[state];
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
SQLiteDatabaseTest.java 33 ContentValues values = new ContentValues(); local
34 values.put("id", id);
35 values.put("name", "Norris");
37 long replaceId = database.replace("table_name", null, values);
  /external/skia/src/svg/
SkSVGFeColorMatrix.cpp 17 SVG_ATTRIBUTE(values)
  /external/webkit/Source/WebCore/storage/
IDBKeyPathBackendImpl.cpp 35 void IDBKeyPathBackendImpl::createIDBKeysFromSerializedValuesAndKeyPath(const Vector<RefPtr<SerializedScriptValue>&, 0> values, const String& keyPath, Vector<RefPtr<IDBKey>, 0>& keys)
IDBKeyPathBackendImpl.h 40 static void createIDBKeysFromSerializedValuesAndKeyPath(const Vector<RefPtr<SerializedScriptValue>, 0>& values, const String& keyPath, Vector<RefPtr<IDBKey>, 0>& keys);
  /external/webkit/Source/WebKit2/Shared/API/c/
WKArray.h 39 WK_EXPORT WKArrayRef WKArrayCreate(WKTypeRef* values, size_t numberOfValues);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
FontSize.java 43 for (FontSize e : FontSize.values()) {
TextAlignment.java 45 for (TextAlignment e : TextAlignment.values()) {
  /libcore/luni/src/main/java/java/lang/
InheritableThreadLocal.java 54 Values values(Thread current) { method in class:InheritableThreadLocal
59 Values initializeValues(Thread current) {
60 return current.inheritableValues = new Values();
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
PolicyInformation.java 92 Object[] values = (Object[]) in.content;
93 return new PolicyInformation(ObjectIdentifier.toString((int[]) values[0]));
96 @Override protected void getValues(Object object, Object[] values) {
98 values[0] = ObjectIdentifier.toIntArray(pi.policyIdentifier);
  /packages/apps/Contacts/src/com/android/contacts/model/dataitem/
ImDataItem.java 32 /* package */ ImDataItem(ContentValues values) {
33 super(values);
37 private ImDataItem(ContentValues values, boolean createdFromEmail) {
38 super(values);
57 * Values are one of Im.TYPE_*
68 * Values are one of Im.PROTOCOL_
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/tests/testauth/
TestSyncAdapter.java 55 ContentValues values = new ContentValues(); local
56 values.put(RawContacts.ACCOUNT_NAME, account.name);
57 values.put(RawContacts.ACCOUNT_TYPE, account.type);
58 final int count = cr.update(RawContacts.CONTENT_URI, values,
  /packages/apps/Mms/src/com/android/mms/ui/
ClassZeroActivity.java 186 ContentValues values = new ContentValues(); local
188 values.put(Inbox.ADDRESS, sms.getDisplayOriginatingAddress());
192 values.put(Inbox.DATE, new Long(System.currentTimeMillis()));
193 values.put(Inbox.PROTOCOL, sms.getProtocolIdentifier());
194 values.put(Inbox.READ, Integer.valueOf(mRead ? 1 : 0));
195 values.put(Inbox.SEEN, Integer.valueOf(mRead ? 1 : 0));
198 values.put(Inbox.SUBJECT, sms.getPseudoSubject());
200 values.put(Inbox.REPLY_PATH_PRESENT, sms.isReplyPathPresent() ? 1 : 0);
201 values.put(Inbox.SERVICE_CENTER, sms.getServiceCenterAddress());
202 return values;
206 ContentValues values = extractContentValues(sms); local
238 ContentValues values = extractContentValues(sms); local
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ProfileDatabaseHelper.java 69 ContentValues values = new ContentValues(); local
70 values.put(SEQUENCE_NAME, table);
71 values.put(SEQUENCE_SEQ, Profile.MIN_ID);
72 db.insert(SEQUENCE_TABLE, null, values);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/database/
DeletedContactsTableUtil.java 57 ContentValues values = new ContentValues(); local
58 values.put(ContactsContract.DeletedContacts.CONTACT_ID, contactId);
59 values.put(ContactsContract.DeletedContacts.CONTACT_DELETED_TIMESTAMP,
62 return db.insertWithOnConflict(ContactsDatabaseHelper.Tables.DELETED_CONTACTS, null, values,
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
CallerInfoIntegrationTest.java 41 ContentValues values = new ContentValues(); local
42 values.put(RawContacts.CUSTOM_RINGTONE, "ring");
43 values.put(RawContacts.SEND_TO_VOICEMAIL, 1);
45 Uri rawContactUri = mResolver.insert(RawContacts.CONTENT_URI, values);
ContactsProvider2TransactionTest.java 63 final ContentValues values = cv(RawContacts.LAST_TIME_CONTACTED, 12345); local
67 mResolver.insert(RawContacts.CONTENT_URI, values);
77 mResolver.insert(Profile.CONTENT_RAW_CONTACTS_URI, values);
90 final ContentValues values = cv(RawContacts.LAST_TIME_CONTACTED, 12345); local
93 mResolver.insert(RawContacts.CONTENT_URI, values);
94 mResolver.insert(Profile.CONTENT_RAW_CONTACTS_URI, values);
96 values.clear();
97 values.put(RawContacts.LAST_TIME_CONTACTED, 99999);
101 assertTrue(mResolver.update(RawContacts.CONTENT_URI, values, null, null) > 0);
111 assertTrue(mResolver.update(Profile.CONTENT_RAW_CONTACTS_URI, values, null, null) > 0)
124 final ContentValues values = cv(RawContacts.LAST_TIME_CONTACTED, 12345); local
153 final ContentValues values = cv(RawContacts.LAST_TIME_CONTACTED, 12345); local
    [all...]

Completed in 1704 milliseconds

<<11121314151617181920>>