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

1 2 34 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/preferences/
PrefPage.java 36 IPreferenceStore store = PdtPlugin.getDefault().getPreferenceStore(); local
37 setPreferenceStore(store);
  /external/chromium/chrome/browser/policy/
asynchronous_policy_provider.h 42 virtual bool Provide(ConfigurationPolicyStoreInterface* store);
dummy_configuration_policy_provider.cc 21 ConfigurationPolicyStoreInterface* store) {
mock_configuration_policy_provider.h 31 virtual bool Provide(ConfigurationPolicyStoreInterface* store);
  /external/valgrind/main/drd/tests/
hg03_inherit.stderr.exp 3 Conflicting store by thread 3 at 0x........ size 4
9 Conflicting store by thread 3 at 0x........ size 4
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_tree_model.cc 19 void AddSingleNodeToTreeStore(GtkTreeStore* store, const BookmarkNode* node,
21 gtk_tree_store_append(store, iter, parent);
27 gtk_tree_store_set(store, iter,
104 GtkTreeStore* store, GtkTreeIter* selected_iter) {
107 AddToTreeStoreAt(root_node->GetChild(i), selected_id, store, selected_iter,
112 GtkWidget* MakeTreeViewForStore(GtkTreeStore* store) {
121 store);
128 GtkWidget* tree_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(store));
129 // Let |tree_view| own the store.
130 g_object_unref(store);
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
password_manager_handler.cc 147 PasswordStore* store = GetPasswordStore(); local
149 store->RemoveLogin(*password_list_[i]);
154 PasswordStore* store = GetPasswordStore(); local
156 store->RemoveLogin(*password_exception_list_[i]);
202 PasswordStore* store = page_->GetPasswordStore(); local
203 if (store != NULL) {
205 store->CancelRequest(pending_login_query_);
207 pending_login_query_ = store->GetAutofillableLogins(this);
209 LOG(ERROR) << "No password store! Cannot display passwords.";
231 PasswordStore* store = page_->GetPasswordStore() local
    [all...]
  /external/proguard/src/proguard/evaluation/
TracedVariables.java 35 * to the most recent variable that has been initialized by a store operation.
72 * Sets the Value that will be stored along with all store instructions.
117 producerVariables.store(index, value);
165 public void store(int index, Value value) method in class:TracedVariables
167 // Is this store operation an initialization of the variable?
175 // Store the value itself in the variable.
176 super.store(index, value);
178 // Store the producer value in its producer variable.
179 producerVariables.store(index, producerValue);
184 producerVariables.store(index+1, producerValue)
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapResponseTest.java 17 package com.android.email.mail.store.imap;
19 import static com.android.email.mail.store.imap.ImapTestUtils.*;
21 import com.android.email.mail.store.imap.ImapConstants;
22 import com.android.email.mail.store.imap.ImapResponse;
23 import com.android.email.mail.store.imap.ImapSimpleString;
  /external/chromium/chrome/browser/ui/gtk/
certificate_viewer.cc 69 // Indices and column count for the certificate chain hierarchy tree store.
77 // Indices and column count for the certificate fields tree store.
84 // Fill the tree store with the certificate hierarchy, and set |leaf| to the
89 // Fill the tree store with the details of the given certificate.
91 GtkTreeStore* store, net::X509Certificate::OSCertHandle cert);
93 // Create a tree store filled with the details of the given certificate.
320 GtkTreeStore* store, net::X509Certificate::OSCertHandle cert) {
322 gtk_tree_store_append(store, &top, NULL);
324 store, &top,
330 gtk_tree_store_append(store, &cert_iter, &top)
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
StackTracePanel.java 165 * @param store
169 String prefs_stack_col_native, IPreferenceStore store) {
180 prefs_stack_col_class, store);
187 prefs_stack_col_method, store);
194 prefs_stack_col_file, store);
201 prefs_stack_col_line, store);
208 prefs_stack_col_native, store);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
WelcomeWizard.java 50 * @param store preferences for usage statistics collection etc
52 public WelcomeWizard(DdmsPreferenceStore store) {
53 mStore = store;
78 DdmsPreferenceStore store = new DdmsPreferenceStore(); local
80 // Workaround: Store a new ping id if one doesn't exist, regardless of
92 if (!store.hasPingId()) {
93 store.generateNewPingId();
96 store.setPingOptIn(isUsageCollectionApproved);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
CookieManagerTest.java 92 private static CookieManager store(String[][] cookies, method in class:CookieManagerTest
141 CookieManager manager = store(
161 manager = store(new String[][] { cookies[2] }, responseHeaders, null);
169 manager = store(new String[][] { cookies[3] }, responseHeaders, null);
178 manager = store(new String[][] { cookies[4] }, responseHeaders,
186 manager = store(new String[][] { cookies[3] }, responseHeaders,
193 manager = store(new String[][] { cookies[5] }, responseHeaders,
226 return "A dummy store";
253 CookieStore store = new DummyStore(); local
254 CookieManager cookieManager = new CookieManager(store,
302 CookieStore store = cookieManager.getCookieStore(); local
    [all...]
  /external/chromium/net/base/
network_config_watcher_mac.cc 21 void DynamicStoreCallback(SCDynamicStoreRef /* store */,
90 // Add a run loop source for a dynamic store to the current run loop.
98 base::mac::ScopedCFTypeRef<SCDynamicStoreRef> store(SCDynamicStoreCreate(
101 NULL, store.get(), 0));
106 delegate_->SetDynamicStoreNotificationKeys(store.get());
  /external/v8/test/mjsunit/
megamorphic-callbacks.js 32 function store(o) { function
46 store(o);
62 // Perform the store checks.
64 assertEquals(200, o.y_mirror, "normal store");
65 store(o);
66 assertEquals(42, o.y_mirror, "ic store");
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/util/
EnvironmentHelper.java 40 p.store(bos, "");
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PKIXCRLUtil.java 119 X509Store store = (X509Store)obj; local
123 crls.addAll(store.getMatches(crlSelect));
129 "Exception searching in X.509 CRL store.", e);
134 CertStore store = (CertStore)obj; local
138 crls.addAll(store.getCRLs(crlSelect));
144 "Exception searching in X.509 CRL store.", e);
  /external/jpeg/
Android.mk 16 # use ashmem as libjpeg decoder's backing store
22 # use sdcard as libjpeg decoder's backing store
  /external/openssl/crypto/store/
str_locl.h 1 /* crypto/store/str_locl.h -*- mode:C; c-file-style: "eay" -*- */
63 #include <openssl/store.h>
76 /* Initialise the STORE with private data */
78 /* Initialise the STORE with private data */
86 /* Store an object of a given type. */
100 /* Store-level function to make any necessary update operations. */
102 /* Store-level function to get exclusive access to the store. */
104 /* Store-level function to release exclusive access to the store. *
    [all...]
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
complex_rep.S 12 mov $0xfeb131978,%rax # value to store
18 rep stosb # store 1024 times
19 rep stosb # should store 0 times
20 rep stosb # should store 0 times
  /external/valgrind/main/exp-bbv/tests/x86/
complex_rep.S 12 mov $0xfeb1378,%eax # value to store
18 rep stosb # store 1024 times
19 rep stosb # should store 0 times
20 rep stosb # should store 0 times
  /external/webkit/Source/WebCore/bindings/v8/
IntrusiveDOMWrapperMap.h 94 void visit(DOMDataStore* store, typename Traits::Visitor* visitor)
99 visitEntries(store, m_chunks->m_entries, m_current, visitor);
101 visitEntries(store, chunk->m_entries, chunk->m_entries + CHUNK_SIZE, visitor);
117 static void visitEntries(DOMDataStore* store, T* first, T* last, typename Traits::Visitor* visitor)
120 Traits::visit(store, entry, visitor);
154 virtual void visit(DOMDataStore* store, Visitor* visitor)
156 m_table.visit(store, visitor);
202 static void visit(DOMDataStore* store, v8::Persistent<v8::Object>* entry, Visitor* visitor)
207 visitor->visitDOMWrapper(store, node, *entry);
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheStorage.h 83 bool store(ApplicationCacheResource*, ApplicationCache*);
111 bool store(ApplicationCacheGroup*, GroupStorageIDJournal*);
112 bool store(ApplicationCache*, ResourceStorageIDJournal*);
113 bool store(ApplicationCacheResource*, unsigned cacheStorageID);
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLSessionTest.java 79 KeyStore store = server.getStore(); local
80 X509Certificate cert = (X509Certificate)store.getCertificate("mykey");
138 KeyStore store = client.getStore(); local
139 Certificate cert = store.getCertificate("mykey");
149 KeyStore store = client.getStore(); local
150 X509Certificate cert = (X509Certificate)store.getCertificate("mykey");
490 private KeyStore store; field in class:SSLSessionTest.TestServer
502 store = provideKeys ? getKeyStore(keys) : null;
503 KeyManager[] keyManagers = store != null ? getKeyManagers(store) : null
572 private KeyStore store; field in class:SSLSessionTest.TestClient
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapElement.java 17 package com.android.email.mail.store.imap;

Completed in 684 milliseconds

1 2 34 5 6 7 8 91011>>