HomeSort by relevance Sort by last modified time
    Searched refs:Store (Results 1 - 25 of 312) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
StoreRef.h 1 //== StoreRef.h - Smart pointer for store objects ---------------*- C++ -*--==//
22 /// Store - This opaque type encapsulates an immutable mapping from
26 typedef const void *Store;
31 Store store; member in class:clang::ento::StoreRef
34 StoreRef(Store, StoreManager &);
40 return x.store == store;
46 Store getStore() const { return store; }
    [all...]
Store.h 1 //== Store.h - Interface for maps from Locations to Values ------*- C++ -*--==//
10 // This file defined the types Store and StoreManager.
55 /// \param[in] store The analysis state.
61 virtual SVal getBinding(Store store, Loc loc, QualType T = QualType()) = 0;
64 /// \param[in] store The analysis state.
70 virtual StoreRef Bind(Store store, Loc loc, SVal val) = 0;
72 virtual StoreRef BindDefault(Store store, const MemRegion *R, SVal V)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Store.java 5 public interface Store
CollectionStore.java 9 * A simple collection backed store.
12 implements Store
19 * @param collection - initial contents for the store, this is copied.
  /packages/apps/Email/tests/src/com/android/email/mail/
StoreTests.java 32 * Tests of StoreInfo & Store lookup in the Store abstract class
35 * runtest -c com.android.email.mail.store.StoreTests email
48 Store.sStores.clear();
56 Store testStore;
66 testStore = Store.getInstance(testAccount, getContext());
67 assertEquals(1, Store.sStores.size());
68 assertSame(testStore, Store.sStores.get(testAccount.mId));
69 Store.sStores.clear();
78 testStore = Store.getInstance(testAccount, getContext())
    [all...]
  /packages/apps/Email/src/com/android/email/mail/
Store.java 23 import com.android.email.mail.store.ImapStore;
24 import com.android.email.mail.store.Pop3Store;
25 import com.android.email.mail.store.ServiceStore;
41 * Store is the legacy equivalent of the Account class
43 public abstract class Store {
45 * A global suggestion to Store implementors on how much of the body
51 static final HashMap<HostAuth, Store> sStores = new HashMap<HostAuth, Store>();
58 static final HashMap<String, Class<? extends Store>> sStoreClasses =
59 new HashMap<String, Class<? extends Store>>();
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
focus_store_gtk.h 23 void Store(GtkWidget* widget);
focus_store_gtk.cc 20 void FocusStoreGtk::Store(GtkWidget* widget) {
  /external/chromium_org/chrome/browser/chromeos/settings/
device_settings_cache.h 17 // There is need (metrics at OOBE stage) to store settings (that normally would
26 bool Store(const enterprise_management::PolicyData &policy,
device_settings_cache_unittest.cc 34 EXPECT_TRUE(device_settings_cache::Store(policy_, &local_state_));
49 EXPECT_TRUE(device_settings_cache::Store(policy_, &local_state_));
  /external/chromium_org/chrome/browser/policy/cloud/
mock_user_cloud_policy_store.h 18 MOCK_METHOD1(Store, void(const enterprise_management::PolicyFetchResponse&));
resource_cache_unittest.cc 38 // Store some data and load it.
39 EXPECT_TRUE(cache.Store(kKey1, kSubA, kData0));
43 // Store more data in another subkey.
44 EXPECT_TRUE(cache.Store(kKey1, kSubB, kData1));
47 EXPECT_TRUE(cache.Store(kKey2, kSubA, kData0));
48 EXPECT_TRUE(cache.Store(kKey2, kSubB, kData1));
49 EXPECT_TRUE(cache.Store(kKey3, kSubA, kData0));
50 EXPECT_TRUE(cache.Store(kKey3, kSubB, kData1));
59 // Store more subkeys.
60 EXPECT_TRUE(cache.Store(kKey1, kSubC, kData1))
    [all...]
cloud_external_data_store.h 34 // Removes all entries from the store whose (policy, hash) pair is not found
38 // Stores |data| under (policy, hash). Returns true if the store succeeded.
39 bool Store(const std::string& policy,
mock_cloud_policy_store.h 18 MOCK_METHOD1(Store, void(const enterprise_management::PolicyFetchResponse&));
39 MOCK_METHOD1(OnStoreLoaded, void(CloudPolicyStore* store));
40 MOCK_METHOD1(OnStoreError, void(CloudPolicyStore* store));
  /external/chromium_org/ui/base/gtk/
focus_store_gtk.h 24 void Store(GtkWidget* widget);
  /external/chromium/chrome/browser/chromeos/login/
signed_settings_temp_storage.h 17 // There is need (proxy settings at OOBE stage) to store settings
26 static bool Store(const std::string& name,
  /external/chromium/net/disk_cache/
mapped_file.h 38 bool Store(const FileBlock* block);
storage_block.h 69 // Loads and store the data.
71 bool Store();
82 bool extended_; // Used to store an entry of more than one block.
  /packages/apps/Email/src/com/android/email/mail/store/
ServiceStore.java 17 package com.android.email.mail.store;
23 import com.android.email.mail.Store;
34 public class ServiceStore extends Store {
38 * Creates a new store for the given account.
48 public static Store newInstance(Account account, Context context) throws MessagingException {
  /external/qemu-pc-bios/bochs/bios/
acpi-dsdt.dsl 111 Store(ShiftLeft(1, nr), B0EJ) \
330 Store (\_SB.PCI0.PX13.DRSA, Local0)
359 Store (\_SB.PCI0.PX13.DRSC, Local0)
387 Store (\_SB.PCI0.PX13.DRSC, Local0)
449 Store (0x0B, Local0)
452 Store (0x09, Local0)
468 Store (PRQ0, Local0)
475 Store (Zero, TMP)
484 Store (Local0, PRQ0)
496 Store (0x0B, Local0
    [all...]
  /external/chromium_org/chrome/browser/chromeos/policy/
device_cloud_policy_store_chromeos.h 36 virtual void Store(
40 // Installs initial policy. This is different from Store() in that it skips
59 // Starts the actual store operation.
62 // Handles store completion operations updates status.
  /external/chromium_org/net/disk_cache/
mapped_file.h 39 bool Store(const FileBlock* block);
storage_block.h 74 // Loads and store the data.
76 bool Store();
88 bool extended_; // Used to store an entry of more than one block.
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 204 /// Attempt to merge an objc_release with a store, load, and objc_retain to form
217 // Walk down to find the store and the release, which may be in either order.
221 StoreInst *Store = 0;
223 for (; !Store || !SawRelease; ++I) {
239 if (Store) {
240 // The store is the point where we're going to put the objc_storeStrong,
245 // We are moving the load down to the store, so check for anything
246 // else which writes to the memory between the load and the store.
247 Store = dyn_cast<StoreInst>(Inst);
248 if (!Store || !Store->isSimple()) return
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509Store.java 4 import org.bouncycastle.util.Store;
12 implements Store

Completed in 1491 milliseconds

1 2 3 4 5 6 7 8 91011>>