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

1 2 3 4 5 6 7 8

  /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 24 import com.android.email.mail.store.ExchangeStore;
25 import com.android.email.mail.store.ImapStore;
26 import com.android.email.mail.store.Pop3Store;
40 * Store is the legacy equivalent of the Account class
42 public abstract class Store {
44 * A global suggestion to Store implementors on how much of the body
50 static final HashMap<HostAuth, Store> sStores = new HashMap<HostAuth, Store>();
57 static final HashMap<String, Class<? extends Store>> sStoreClasses =
58 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) {
  /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.
ServiceStore.java 17 package com.android.email.mail.store;
23 import com.android.email.mail.Store;
33 public abstract class ServiceStore extends Store {
39 * Creates a new store for the given account.
  /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,
signed_settings_temp_storage.cc 26 bool SignedSettingsTempStorage::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.
storage_block-inl.h 27 Store();
124 template<typename T> bool StorageBlock<T>::Store() {
126 if (file_->Store(this)) {
131 LOG(ERROR) << "Failed data store.";
132 Trace("Failed data store.");
mapped_file_posix.cc 40 bool MappedFile::Store(const FileBlock* block) {
mapped_file_win.cc 50 bool MappedFile::Store(const FileBlock* block) {
stats.h 74 void Store();
  /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/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 231 /// Attempt to merge an objc_release with a store, load, and objc_retain to form
244 // Walk down to find the store and the release, which may be in either order.
248 StoreInst *Store = 0;
250 for (; !Store || !SawRelease; ++I) {
266 if (Store) {
267 // The store is the point where we're going to put the objc_storeStrong,
272 // We are moving the load down to the store, so check for anything
273 // else which writes to the memory between the load and the store.
274 Store = dyn_cast<StoreInst>(Inst);
275 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
ExtendedPKIXParameters.java 4 import org.bouncycastle.util.Store;
223 * a {@link Store}.
235 if (!(i.next() instanceof Store))
239 + "of type org.bouncycastle.util.Store.");
247 * Adds a Bouncy Castle {@link Store} to find CRLs, certificates, attribute
255 * If <code>store</code> is <code>null</code> it is ignored.
257 * @param store The store to add.
260 public void addStore(Store store)
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapConstants.java 17 package com.android.email.mail.store.imap;
19 import com.android.email.mail.Store;
27 = String.format("BODY.PEEK[]<0.%d>", Store.FETCH_BODY_SANE_SUGGESTED_SIZE);
79 public static final String STORE = "STORE";
87 public static final String UID_STORE = "UID STORE";
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSSignedGenerator.java 38 import org.bouncycastle.util.Store;
211 Store certStore)
218 Store crlStore)
225 Store attrStore)
232 * Add the attribute certificates contained in the passed in store to the
235 * @param store a store of Version 2 attribute certificates
236 * @throws CMSException if an error occurse processing the store.
237 * @deprecated use basic Store method
240 X509Store store)
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcInstrInfo.h 32 Store = (1<<2),
58 /// store to a stack slot, return the virtual or physical register number of

Completed in 603 milliseconds

1 2 3 4 5 6 7 8