HomeSort by relevance Sort by last modified time
    Searched refs:Store (Results 1 - 25 of 379) 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/llvm/lib/IR/
MetadataImpl.h 23 static T *getUniqued(DenseSet<T *, InfoT> &Store,
25 auto I = Store.find_as(Key);
26 return I == Store.end() ? nullptr : *I;
32 llvm_unreachable("Cannot unique without a uniquing-store");
43 T *MDNode::storeImpl(T *N, StorageType Storage, StoreT &Store) {
46 Store.insert(N);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Store.java 6 * A generic interface describing a simple store of objects.
10 public interface Store<T>
  /packages/apps/Email/tests/src/com/android/email/mail/
StoreTests.java 33 * Tests of StoreInfo & Store lookup in the Store abstract class
36 * runtest -c com.android.email.mail.store.StoreTests email
49 Store.sStores.clear();
61 Store testStore;
71 testStore = Store.getInstance(testAccount, getContext());
72 assertEquals(1, Store.sStores.size());
73 assertSame(testStore, Store.sStores.get(testAccount.mId));
74 Store.sStores.clear();
83 testStore = Store.getInstance(testAccount, getContext())
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/
PKIXCRLStore.java 7 import org.bouncycastle.util.Store;
11 * Generic interface for a PKIX based CRL store.
16 extends Store<T>
PKIXCertStore.java 7 import org.bouncycastle.util.Store;
11 * Generic interface for a PKIX based certificate store.
16 extends Store<T>
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
mipsr6@24k-triple-stores-6.d 3 #name: 24K: Triple Store (Store Macro Check)
24k-triple-stores-10.d 3 #name: 24K: Triple Store (Intervening data #2)
24k-triple-stores-11.d 3 #name: 24K: Triple Store (gprel relocs)
24k-triple-stores-2-llsc.d 3 #name: 24K: Triple Store (Range Check, sc)
micromips@24k-triple-stores-10.d 3 #name: 24K: Triple Store (Intervening data #2)
micromips@24k-triple-stores-2-llsc.d 3 #name: 24K: Triple Store (Range Check, sc)
  /packages/apps/Email/provider_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>>();
94 Store store = sStores.get(hostAuth); local
116 final Store store; local
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 199 StoreInst *Store = nullptr;
205 // Walk down to find the store and the release, which may be in either order.
209 // If we found the store we were looking for and saw the release,
211 if (Store && SawRelease)
214 // Now we know that we have not seen either the store or the release. If I
222 // Otherwise, we check if Inst is a "good" store. Grab the instruction class
233 // If we have seen the store, but not the release...
234 if (Store) {
236 // current position to the store. This implies proving that any
237 // instruction in between Store and the Release conservatively can not us
    [all...]
  /external/google-breakpad/src/processor/
address_map_unittest.cc 90 ASSERT_TRUE(test_map.Store(1,
103 ASSERT_TRUE(test_map.Store(10,
114 ASSERT_TRUE(test_map.Store(5,
117 ASSERT_TRUE(test_map.Store(20,
119 ASSERT_TRUE(test_map.Store(15,
121 ASSERT_FALSE(test_map.Store(10,
123 ASSERT_TRUE(test_map.Store(16,
125 ASSERT_TRUE(test_map.Store(14,
address_map.h 56 bool Store(const AddressType &address, const EntryType &entry);
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ServiceStore.java 17 package com.android.email.mail.store;
23 import com.android.email.mail.Store;
35 public class ServiceStore extends Store {
39 * Creates a new store for the given account.
49 public static Store newInstance(Account account, Context context) throws MessagingException {
  /external/v8/src/compiler/
js-create-lowering.cc 48 // Primitive store into a field.
49 void Store(const FieldAccess& access, Node* value) {
54 // Primitive store into an element.
55 void Store(ElementAccess const& access, Node* index, Node* value) {
69 Store(AccessBuilder::ForMap(), map);
70 Store(AccessBuilder::ForFixedArrayLength(), jsgraph()->Constant(length));
73 // Compound store of a constant into a field.
74 void Store(const FieldAccess& access, Handle<Object> value) {
75 Store(access, jsgraph()->Constant(value));
263 a.Store(AccessBuilder::ForMap(), initial_map)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopLoadElimination.cpp 14 // transformation. The source value of each store then propagated to the user
54 /// \brief Represent a store-to-forwarding candidate.
57 StoreInst *Store;
59 StoreToLoadForwardingCandidate(LoadInst *Load, StoreInst *Store)
60 : Load(Load), Store(Store) {}
62 /// \brief Return true if the dependence from the store to the load has a
66 Value *StorePtr = Store->getPointerOperand();
94 OS << *Cand.Store << " -->\n";
101 /// \brief Check if the store dominates all latches, so as long as there is n
    [all...]
  /external/webrtc/webrtc/modules/video_processing/test/
readYUV420file.m 31 % Store luminance
34 % Store U channel
37 % Store V channel
  /external/webrtc/webrtc/video/
report_block_stats.h 35 void Store(const RtcpStatistics& rtcp_stats,
  /external/v8/test/unittests/compiler/
escape-analysis-unittest.cc 77 Node* Store(const FieldAccess& access, Node* allocation, Node* value,
214 Store(FieldAccessAtIndex(0), allocation, object1);
236 Store(FieldAccessAtIndex(0), allocation, object1);
261 Store(FieldAccessAtIndex(0), allocation, object1);
284 Store(FieldAccessAtIndex(0), allocation1, object1);
289 Store(FieldAccessAtIndex(0), allocation2, finish1);
312 Store(FieldAccessAtIndex(0), allocation, object1);
318 Store(FieldAccessAtIndex(0), allocation, object1, finish, ifFalse);
320 Store(FieldAccessAtIndex(0), allocation, object2, finish, ifTrue);
346 Store(FieldAccessAtIndex(0), allocation, object1)
    [all...]
  /external/libmpeg2/common/arm/
impeg2_inter_pred.s 110 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst
114 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst
116 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst
118 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst
120 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst
122 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst
124 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst
126 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst
128 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst
130 vst1.8 {d0, d1}, [r5], r3 @Store and increment ds
    [all...]
  /external/v8/test/mjsunit/regress/
regress-358088.js 18 f(o); // Store should go generic.

Completed in 475 milliseconds

1 2 3 4 5 6 7 8 91011>>