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

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/WebCore/bindings/v8/
DOMDataStore.cpp 162 DOMDataStore* store = list[i]; local
163 if (store->domNodeMap().removeIfPresent(node, v8Object)) {
164 ASSERT(store->domData()->owningThread() == WTF::currentThread());
V8DOMMap.h 54 virtual void visitDOMWrapper(DOMDataStore* store, KeyType* key, v8::Persistent<ValueType> object) = 0;
62 virtual void visit(DOMDataStore* store, Visitor* visitor) = 0;
126 virtual void visit(DOMDataStore* store, typename Parent::Visitor* visitor)
131 visitor->visitDOMWrapper(store, it->first, v8::Persistent<ValueType>(it->second));
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
ThreadPanel.java 191 final IPreferenceStore store = DdmUiPreferences.getStore(); local
219 PREFS_THREAD_COL_ID, store);
226 PREFS_THREAD_COL_TID, store);
233 PREFS_THREAD_COL_STATUS, store);
240 PREFS_THREAD_COL_UTIME, store);
247 PREFS_THREAD_COL_STIME, store);
254 PREFS_THREAD_COL_NAME, store);
313 store);
329 if (store != null && store.contains(PREFS_THREAD_SASH))
    [all...]
  /dalvik/vm/mterp/x86/
cvtfp_int.S 25 fistpll (rFP,%ecx,4) # convert and store
27 fistpl (rFP,%ecx,4) # convert and store
OP_APUT.S 1 %default { "reg":"rINST", "store":"movl", "shift":"4" }
23 $store $reg,(%eax)
  /external/chromium/chrome/browser/policy/
profile_policy_connector.h 70 virtual bool Provide(ConfigurationPolicyStoreInterface* store) OVERRIDE;
cloud_policy_controller_unittest.cc 117 MockConfigurationPolicyStore store; local
118 EXPECT_CALL(store, Apply(_, _)).Times(AtLeast(1));
119 cache_->GetManagedPolicyProvider()->Provide(&store);
121 ASSERT_TRUE(store.Get(kPolicyDisableSpdy) != NULL);
122 EXPECT_TRUE(store.Get(kPolicyDisableSpdy)->Equals(&expected));
  /external/valgrind/main/drd/tests/
annotate_ignore_write2.stderr.exp 7 Conflicting store by thread 1 at 0x........ size 4
17 Conflicting store by thread 1 at 0x........ size 4
rwlock_race.stderr.exp 9 Conflicting store by thread 3 at 0x........ size 4
tc16_byterace.stderr.exp 7 Conflicting store by thread 1 at 0x........ size 1
  /external/webkit/Source/WebKit2/Shared/
WebPageCreationParameters.h 54 WebPreferencesStore store; member in struct:WebKit::WebPageCreationParameters
  /packages/apps/Email/src/com/android/email/mail/store/
ExchangeStore.java 17 package com.android.email.mail.store;
21 import com.android.email.mail.Store;
28 * Our Exchange service does not use the sender/store model.
35 public static Store newInstance(Account account, Context context) throws MessagingException {
40 * Creates a new store for the given account.
ImapConnection.java 17 package com.android.email.mail.store;
24 import com.android.email.mail.store.ImapStore.ImapException;
25 import com.android.email.mail.store.imap.ImapConstants;
26 import com.android.email.mail.store.imap.ImapList;
27 import com.android.email.mail.store.imap.ImapResponse;
28 import com.android.email.mail.store.imap.ImapResponseParser;
29 import com.android.email.mail.store.imap.ImapUtility;
83 ImapConnection(ImapStore store, String username, String password) {
84 setStore(store, username, password);
87 void setStore(ImapStore store, String username, String password)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractIncludeRefactoringTest.java 120 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); local
121 AdtPrefs.init(store);
123 prefs.initializeStoreWithDefaults(store);
124 store.setValue(AdtPrefs.PREFS_FORMAT_GUI_XML, true);
  /external/valgrind/main/exp-bbv/tests/x86/
rep_prefix.S 33 # Load and Store Instructions
39 # test 8-bit store
43 rep stosb # store d 16384 times, auto-increment
54 # test 16-bit store
56 mov $0x020d,%ax # store 0x020d
60 rep stosw # store 8192 times, auto-increment
71 # test 32-bit store
73 mov $0x0feb1378,%eax # store 0x0feb1378
77 rep stosl # store 4096 times, auto-increment
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/
PdtPlugin.java 67 // this always return a store, even a temp one if an error occurred.
68 IPreferenceStore store = sPlugin.getPreferenceStore(); local
71 String devTree = store.getString(PrefPage.PREFS_DEVTREE_DIR);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BasicValueFactory.h 51 StoreRef store; member in class:clang::ento::LazyCompoundValData
55 : store(st), region(r) {}
57 const void *getStore() const { return store.getStore(); }
61 const StoreRef &store,
64 void Profile(llvm::FoldingSetNodeID& ID) { Profile(ID, store, region); }
178 const LazyCompoundValData *getLazyCompoundValData(const StoreRef &store,
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapListTest.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.ImapElement;
22 import com.android.email.mail.store.imap.ImapList;
23 import com.android.email.mail.store.imap.ImapSimpleString;
24 import com.android.email.mail.store.imap.ImapString;
ImapResponseParserTest.java 17 package com.android.email.mail.store.imap;
19 import static com.android.email.mail.store.imap.ImapTestUtils.assertElement;
20 import static com.android.email.mail.store.imap.ImapTestUtils.buildList;
21 import static com.android.email.mail.store.imap.ImapTestUtils.buildResponse;
22 import static com.android.email.mail.store.imap.ImapTestUtils.createFixedLengthInputStream;
24 import com.android.email.mail.store.imap.ImapResponseParser.ByeException;
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_database.cc 27 // Filename suffix for download store.
29 // Filename suffix for client-side phishing detection whitelist store.
32 // Filename suffix for browse store.
189 void UpdateChunkRanges(SafeBrowsingStore* store,
196 store->GetAddChunks(&add_chunks);
197 store->GetSubChunks(&sub_chunks);
452 DVLOG(3) << "Get store for list: " << list_id;
512 DVLOG(1) << "Init browse store: " << browse_filename_.value();
530 DVLOG(1) << "Init download store: " << download_filename_.value();
538 DVLOG(1) << "Init csd whitelist store: " << csd_whitelist_filename_.value()
733 SafeBrowsingStore* store = GetStore(list_id); local
774 SafeBrowsingStore* store = GetStore(list_id); local
803 SafeBrowsingStore* store = GetStore(list_id); local
848 SafeBrowsingStore* store = GetStore(list_id); local
881 SafeBrowsingStore* store = GetStore(list_id); local
907 SafeBrowsingStore* store = GetStore(list_id); local
    [all...]
  /external/openssl/apps/
crl.c 113 X509_STORE *store = NULL; local
240 store = X509_STORE_new();
241 lookup=X509_STORE_add_lookup(store,X509_LOOKUP_file());
246 lookup=X509_STORE_add_lookup(store,X509_LOOKUP_hash_dir());
252 if(!X509_STORE_CTX_init(&ctx, store, NULL, NULL)) {
254 "Error initialising X509 store\n");
397 if(store) {
399 X509_STORE_free(store);
  /external/openssl/crypto/x509/
x509_vfy.c 252 * we can find it in the store. We must have an exact
268 /* We have a match: replace certificate with store version
287 /* We now lookup certs from the certificate store */
    [all...]
  /bionic/libc/kernel/common/linux/
device.h 64 ssize_t (*store)(struct bus_type *, const char * buf, size_t count); member in struct:bus_attribute
90 ssize_t (*store)(struct device_driver *, const char * buf, size_t count); member in struct:driver_attribute
122 ssize_t (*store)(struct class *, const char * buf, size_t count); member in struct:class_attribute
130 ssize_t (*store)(struct class_device *, const char * buf, size_t count); member in struct:class_device_attribute
166 ssize_t (*store)(struct device *dev, struct device_attribute *attr, member in struct:device_attribute
  /development/ndk/platforms/android-3/include/linux/
device.h 64 ssize_t (*store)(struct bus_type *, const char * buf, size_t count); member in struct:bus_attribute
90 ssize_t (*store)(struct device_driver *, const char * buf, size_t count); member in struct:driver_attribute
122 ssize_t (*store)(struct class *, const char * buf, size_t count); member in struct:class_attribute
130 ssize_t (*store)(struct class_device *, const char * buf, size_t count); member in struct:class_device_attribute
166 ssize_t (*store)(struct device *dev, struct device_attribute *attr, member in struct:device_attribute
  /external/clang/lib/StaticAnalyzer/Core/
BasicValueFactory.cpp 17 #include "clang/StaticAnalyzer/Core/PathSensitive/Store.h"
29 const StoreRef &store,
31 ID.AddPointer(store.getStore());
130 BasicValueFactory::getLazyCompoundValData(const StoreRef &store,
133 LazyCompoundValData::Profile(ID, store, region);
141 new (D) LazyCompoundValData(store, region);

Completed in 1328 milliseconds

1 2 3 4 56 7 8 91011>>