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

1 2

  /external/bouncycastle/src/main/java/org/bouncycastle/util/
Store.java 5 public interface Store
  /external/chromium/chrome/browser/chromeos/login/
signed_settings_temp_storage.cc 26 bool SignedSettingsTempStorage::Store(const std::string& name,
  /external/chromium/chrome/browser/ui/gtk/
focus_store_gtk.cc 20 void FocusStoreGtk::Store(GtkWidget* widget) {
  /external/chromium/net/disk_cache/
mapped_file_posix.cc 40 bool MappedFile::Store(const FileBlock* block) {
mapped_file_win.cc 50 bool MappedFile::Store(const FileBlock* 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.");
stats.cc 232 void Stats::Store() {
  /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...]
  /external/clang/include/clang/Index/
Handlers.h 66 StoreTy Store;
70 Store.push_back(Obj);
74 iterator begin() const { return Store.begin(); }
75 iterator end() const { return Store.end(); }
  /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...]
  /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
SparcISelLowering.cpp 303 // Store remaining ArgRegs to the stack if this is a varargs function.
436 // store SRet argument in %sp+64
452 //if it is double-word aligned, just store.
465 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl,
469 SDValue Hi = DAG.getLoad(MVT::i32, dl, Store, StackPtr,
475 SDValue Lo = DAG.getLoad(MVT::i32, dl, Store, StackPtr,
485 //Store the low part in stack.
496 // Store the high part.
503 // Store the low part.
527 // Create a store off the stack pointer for this argument
    [all...]
  /external/chromium/chrome/browser/policy/
user_policy_identity_strategy.cc 38 void Store(const std::string& token, const std::string& device_id);
70 void UserPolicyIdentityStrategy::TokenCache::Store(
198 cache_->Store(device_token_, device_id_);
  /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/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 116 // Lower the bit-convert to a store/load from the stack.
128 // Emit a store to the stack slot.
129 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, InOp, StackPtr, PtrInfo,
133 Lo = DAG.getLoad(NOutVT, dl, Store, StackPtr, PtrInfo, false, false, 0);
141 Hi = DAG.getLoad(NOutVT, dl, Store, StackPtr,
294 // Otherwise, store to a temporary and load out again as the new type.
LegalizeVectorOps.cpp 138 } else if (Op.getOpcode() == ISD::STORE) {
360 // Store Stride in bytes
370 SDValue Store = DAG.getTruncStore(Chain, dl, Ex, BasePTR,
377 Stores.push_back(Store);
LegalizeTypes.cpp     [all...]
LegalizeDAG.cpp 382 /// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
397 // same size, then a (misaligned) int store.
403 // Do a (aligned) store to a stack slot, then copy from the stack slot
417 // Perform the original store, only redirected to the stack slot.
418 SDValue Store = DAG.getTruncStore(Chain, dl,
428 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
431 // Store it to the final location. Remember the store.
443 // The last store may be partial. Do a truncating store. On big-endia
    [all...]
  /external/v8/src/
ic.cc 202 // For keyed load/store/call, the most likely cause of cache failure is
345 // Reset the map check of the inlined inobject property store (if
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 725 // Store the frame pointer to the setjmp buffer.
731 // Store the stack pointer to the setjmp buffer.
    [all...]
CGCall.cpp 498 llvm::StoreInst *Store =
500 // FIXME: Use better alignment / avoid requiring aligned store.
501 Store->setAlignment(1);
505 // Function to store a first-class aggregate into memory. We prefer to
506 // store the elements rather than the aggregate to be more friendly to
528 /// CreateCoercedStore - Create a store to \arg DstPtr from \arg Src,
563 // If store is legal, just bitcast the src pointer.
567 // FIXME: Use better alignment / avoid requiring aligned store.
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp 466 // Lower fpround and fpextend nodes that target the FP stack to be store and
512 // FIXME: optimize the case where the src/dest is a load or store?
513 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
517 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
    [all...]
X86InstrInfo.cpp 64 // Minimum alignment required for load/store.
268 // Index 0, folded load and store, no alignment requirement.
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 137 setOperationAction(ISD::STORE, MVT::i32, Custom);
159 setTargetDAGCombine(ISD::STORE);
175 case ISD::STORE: return LowerSTORE(Op, DAG);
496 assert(!ST->isTruncatingStore() && "Unexpected store type");
497 assert(ST->getMemoryVT() == MVT::i32 && "Unexpected store EVT");
503 // Leave aligned store alone.
760 // Store the incremented VAList to the legalized pointer
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.cc 96 void MacroAssembler::Store(ExternalReference destination, Register source) {
    [all...]

Completed in 579 milliseconds

1 2