HomeSort by relevance Sort by last modified time
    Searched refs:store (Results 26 - 50 of 613) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/os/
LatencyTimer.java 42 volatile HashMap<String, long[]> store = new HashMap<String, long[]>(); field in class:LatencyTimer
81 long[] data = store.get(tag);
83 synchronized(store) {
84 data = store.get(tag);
87 store.put(tag, data);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
AdtPrefs.java 73 /** default store, provided by eclipse */
357 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); local
358 store.setValue(PREFS_LINT_ON_SAVE, on);
367 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); local
368 store.setValue(PREFS_LINT_ON_EXPORT, on);
386 // need to save this new value to the store
387 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); local
388 store.setValue(PREFS_PALETTE_MODE, palette);
398 // need to save this new value to the store
399 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore() local
420 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); local
426 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); local
    [all...]
  /external/chromium/chrome/browser/geolocation/
access_token_store_browsertest.cc 15 // The token store factory implementation expects to be used from any well-known
43 scoped_refptr<AccessTokenStore>* store,
47 if (*store == NULL)
48 (*store) = NewChromePrefsAccessTokenStore();
49 (*store)->LoadAccessTokens(consumer, callback);
60 scoped_refptr<AccessTokenStore> store(NewChromePrefsAccessTokenStore());
66 store->LoadAccessTokens(&consumer, NewCallback(
70 consumer.GetClientData(store.get(), first_handle);
71 store->CancelRequest(first_handle);
75 store->LoadAccessTokens(&consumer, NewCallback
    [all...]
  /external/chromium/chrome/browser/policy/
configuration_policy_provider.h 55 // |store| to apply specific policies. Returns true if the policy could be
57 virtual bool Provide(ConfigurationPolicyStoreInterface* store) = 0;
65 // Decodes the value tree and writes the configuration to the given |store|.
67 ConfigurationPolicyStoreInterface* store);
70 // the given |store|.
72 ConfigurationPolicyStoreInterface* store);
asynchronous_policy_provider.cc 25 ConfigurationPolicyStoreInterface* store) {
28 ApplyPolicyValueTree(loader_->policy(), store);
mock_configuration_policy_provider.cc 36 ConfigurationPolicyStoreInterface* store) {
39 store->Apply(current->first, current->second->DeepCopy());
configuration_policy_provider.cc 27 ConfigurationPolicyStoreInterface* store) {
33 store->Apply(i->policy_type, value->DeepCopy());
42 ConfigurationPolicyStoreInterface* store) {
48 store->Apply(i->policy_type, value->DeepCopy());
dummy_configuration_policy_provider.h 22 virtual bool Provide(ConfigurationPolicyStoreInterface* store);
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_tree_model.h 33 // Make a tree store that has two columns: name and id.
41 // node->representation of the node associated with |selected_id| in |store|.
43 // the tree store will effectively be a list). |only_folders| indicates whether
46 GtkTreeStore* store, GtkTreeIter* selected_iter);
51 GtkTreeStore* store, GtkTreeIter* selected_iter,
54 // Makes a tree view for the store. This will take ownership of |store| and the
56 GtkWidget* MakeTreeViewForStore(GtkTreeStore* store);
  /external/chromium/net/proxy/
proxy_config_service_mac.h 43 virtual void SetDynamicStoreNotificationKeys(SCDynamicStoreRef store) {
44 net_config_watcher_->SetDynamicStoreNotificationKeys(store);
56 void SetDynamicStoreNotificationKeys(SCDynamicStoreRef store);
  /dalvik/vm/mterp/x86-atom/
OP_DOUBLE_TO_FLOAT.S 24 * and store the result in the destination register
35 fstps (rFP, %edx, 4) # store float
OP_FLOAT_TO_DOUBLE.S 24 * and store the result in the destintation register
35 fstpl (rFP, %edx, 4) # store double
  /external/chromium/chrome/browser/importer/
toolbar_importer_utils.cc 25 net::CookieStore* store = local
30 std::string cookies = store->GetCookiesWithOptions(url, options);
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapElementTest.java 17 package com.android.email.mail.store.imap;
19 import com.android.email.mail.store.imap.ImapElement;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/preferences/
NdkPreferenceInitializer.java 29 IPreferenceStore store = Activator.getDefault().getPreferenceStore(); local
31 store.setDefault(NdkManager.NDK_LOCATION, ""); //$NON-NLS-1$
  /external/chromium/chrome/browser/password_manager/
password_store_win_unittest.cc 175 scoped_refptr<PasswordStore> store(
177 EXPECT_TRUE(store->Init());
220 store->GetLogins(*form, &consumer);
225 store->Shutdown();
234 scoped_refptr<PasswordStore> store(
236 EXPECT_TRUE(store->Init());
253 store->GetLogins(*form, &consumer);
256 store->Shutdown();
257 store = NULL;
284 scoped_refptr<PasswordStore> store(
    [all...]
  /bionic/libc/kernel/common/linux/
sysdev.h 32 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
35 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
55 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
58 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /development/ndk/platforms/android-3/include/linux/
sysdev.h 32 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
35 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
55 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
58 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /external/chromium/net/base/
network_config_watcher_mac.h 30 // Called to register the notification keys on |store|.
33 virtual void SetDynamicStoreNotificationKeys(SCDynamicStoreRef store) = 0;
  /external/kernel-headers/original/linux/
sysdev.h 43 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
50 .store = _store, \
97 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
105 .store = _store, \
  /external/webkit/Source/WebKit2/UIProcess/mac/
WebPreferencesMac.mm 39 static void setStringValueIfInUserDefaults(const String& identifier, const String& key, WebPreferencesStore& store)
47 store.setStringValueForKey(key, (NSString *)object);
50 static void setBoolValueIfInUserDefaults(const String& identifier, const String& key, WebPreferencesStore& store)
58 store.setBoolValueForKey(key, [object boolValue]);
61 static void setUInt32ValueIfInUserDefaults(const String& identifier, const String& key, WebPreferencesStore& store)
69 store.setUInt32ValueForKey(key, [object intValue]);
72 static void setDoubleValueIfInUserDefaults(const String& identifier, const String& key, WebPreferencesStore& store)
80 store.setDoubleValueForKey(key, [object doubleValue]);
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
sysdev.h 32 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
35 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
55 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
58 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
sysdev.h 32 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
35 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
55 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
58 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
sysdev.h 32 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
35 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
55 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
58 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
sysdev.h 32 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
35 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
55 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
58 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };

Completed in 615 milliseconds

12 3 4 5 6 7 8 91011>>