Searched defs:ValueMap (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/chrome/browser/content_settings/
H A Dcontent_settings_default_provider.h71 typedef std::map<ContentSettingsType, ValuePtr> ValueMap; typedef in class:content_settings::DefaultProvider
73 ValueMap default_settings_;
/external/chromium_org/components/policy/core/common/
H A Dregistry_dict_win.h39 CaseInsensitiveStringCompare> ValueMap; typedef in class:policy::RegistryDict
80 const ValueMap& values() const { return values_; }
84 ValueMap values_;
/external/llvm/include/llvm/IR/
H A DValueSymbolTable.h46 typedef StringMap<Value*> ValueMap; typedef in class:llvm::ValueSymbolTable
48 /// @brief An iterator over a ValueMap.
49 typedef ValueMap::iterator iterator;
51 /// @brief A const_iterator over a ValueMap.
52 typedef ValueMap::const_iterator const_iterator;
125 ValueMap vmap; ///< The map that holds the symbol table.
H A DValueMap.h1 //===- ValueMap.h - Safe map from Values to data ----------------*- C++ -*-===//
10 // This file defines the ValueMap class. ValueMap maps Value* or any subclass
17 // You can override a ValueMap's Config parameter to control exactly what
19 // legal to call back into the ValueMap from a Config's callbacks. Config
21 // implementations of all the methods ValueMap uses. See ValueMapConfig for
46 /// ValueMap<>. User Configs should inherit from this class to be as compatible
47 /// as possible with future versions of ValueMap.
52 /// If FollowRAUW is true, the ValueMap will update mappings on RAUW. If it's
53 /// false, the ValueMap wil
77 class ValueMap { class in namespace:llvm
92 explicit ValueMap(unsigned NumInitBuckets = 64) function in class:llvm::ValueMap
94 explicit ValueMap(const ExtraData &Data, unsigned NumInitBuckets = 64) function in class:llvm::ValueMap
[all...]
/external/chromium_org/base/
H A Dvalues.h43 typedef std::map<std::string, Value*> ValueMap; typedef in namespace:base
361 ValueMap::const_iterator it_;
369 ValueMap dictionary_;
/external/lldb/include/lldb/DataFormatters/
H A DFormatManager.h36 typedef ValueNavigator::MapType ValueMap; typedef in class:lldb_private::FormatManager
/external/llvm/include/llvm/CodeGen/
H A DFunctionLoweringInfo.h70 /// ValueMap - Since we emit code for the function a basic block at a time,
73 DenseMap<const Value*, unsigned> ValueMap; member in class:llvm::FunctionLoweringInfo
139 return ValueMap.count(V);
147 unsigned &R = ValueMap[V];
193 // PHIs with no uses have no ValueMap entry.
194 DenseMap<const Value*, unsigned>::const_iterator It = ValueMap.find(PN);
195 if (It == ValueMap.end())
/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp137 ValueMapType::const_iterator I = ValueMap.find(V);
138 assert(I != ValueMap.end() && "Value not in slotcalculator!");
143 print(dbgs(), ValueMap, "Default"); local
198 // Rebuild the modified portion of ValueMap.
200 ValueMap[Values[CstStart].first] = CstStart+1;
309 unsigned &ValueID = ValueMap[V];
343 ValueMap[V] = Values.size();
399 if (ValueMap.count(V)) return;
466 ValueMap[BB] = BasicBlocks.size();
509 /// Remove purged values from the ValueMap
[all...]
H A DValueEnumerator.h51 ValueMapType ValueMap; member in class:llvm::ValueEnumerator
78 /// incorporated function. Their reverse mapping is stored in ValueMap.
/external/llvm/lib/CodeGen/
H A DSplitKit.h274 typedef DenseMap<std::pair<unsigned, unsigned>, ValueForcePair> ValueMap; typedef in class:llvm::SplitEditor
288 ValueMap Values;
/external/llvm/lib/Transforms/Scalar/
H A DLoopRotation.cpp128 ValueToValueMapTy &ValueMap) {
145 Value *OrigPreHeaderVal = ValueMap[OrigHeaderVal];
369 // Begin by walking OrigHeader and populating ValueMap with an entry for
372 ValueToValueMapTy ValueMap; local
377 ValueMap[PN] = PN->getIncomingValueForBlock(OrigPreheader);
403 RemapInstruction(C, ValueMap,
414 ValueMap[Inst] = V;
419 ValueMap[Inst] = C;
439 RewriteUsesOfClonedInstructions(OrigHeader, OrigPreheader, ValueMap);
126 RewriteUsesOfClonedInstructions(BasicBlock *OrigHeader, BasicBlock *OrigPreheader, ValueToValueMapTy &ValueMap) argument
H A DJumpThreading.cpp1334 DenseMap<Instruction*, Value*> &ValueMap) {
1343 DenseMap<Instruction*, Value*>::iterator I = ValueMap.find(Inst);
1344 if (I != ValueMap.end())
1331 AddPHINodeEntriesForMappedBlock(BasicBlock *PHIBB, BasicBlock *OldPred, BasicBlock *NewPred, DenseMap<Instruction*, Value*> &ValueMap) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_build_util.h125 typedef bimap<Location, Value *> ValueMap; typedef in class:nv50_ir::BuildUtil
136 inline bool exists(ValueMap&, unsigned int i, unsigned int c);
138 Value *load(ValueMap&, int i, int c, Value *ptr);
139 void store(ValueMap&, int i, int c, Value *ptr, Value *value);
140 Value *acquire(ValueMap&, int i, int c);
143 inline Value *lookup(ValueMap&, unsigned i, unsigned c);
144 inline Value *insert(ValueMap&, unsigned i, unsigned c, Value *v);
286 BuildUtil::DataArray::exists(ValueMap &m, unsigned int i, unsigned int c)
293 BuildUtil::DataArray::lookup(ValueMap &m, unsigned i, unsigned c)
295 ValueMap
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_build_util.h125 typedef bimap<Location, Value *> ValueMap; typedef in class:nv50_ir::BuildUtil
136 inline bool exists(ValueMap&, unsigned int i, unsigned int c);
138 Value *load(ValueMap&, int i, int c, Value *ptr);
139 void store(ValueMap&, int i, int c, Value *ptr, Value *value);
140 Value *acquire(ValueMap&, int i, int c);
143 inline Value *lookup(ValueMap&, unsigned i, unsigned c);
144 inline Value *insert(ValueMap&, unsigned i, unsigned c, Value *v);
286 BuildUtil::DataArray::exists(ValueMap &m, unsigned int i, unsigned int c)
293 BuildUtil::DataArray::lookup(ValueMap &m, unsigned i, unsigned c)
295 ValueMap
[all...]
/external/lldb/source/Expression/
H A DIRInterpreter.cpp63 typedef std::map <const Value*, lldb::addr_t> ValueMap; typedef in class:InterpreterStackFrame
65 ValueMap m_values;
111 ValueMap::iterator i = m_values.find(value);
389 ValueMap::iterator i = m_values.find(value);
/external/chromium_org/net/spdy/
H A Dspdy_protocol.h762 typedef std::map<SpdySettingsIds, Value> ValueMap; typedef in class:net::SpdySettingsIR
769 const ValueMap& values() const { return values_; }
791 ValueMap values_;
/external/llvm/lib/IR/
H A DAsmWriter.cpp304 /// ValueMap - A mapping of Values to slot numbers.
305 typedef DenseMap<const Value*, unsigned> ValueMap; typedef in class:llvm::SlotTracker
316 ValueMap mMap;
320 ValueMap fMap;
575 ValueMap::iterator MI = mMap.find(V);
597 ValueMap::iterator FI = fMap.find(V);
/external/llvm/lib/Linker/
H A DLinkModules.cpp387 /// ValueMap - Mapping of values from what they used to be in Src, to what
388 /// they are now in DstM. ValueToValueMapTy is a ValueMap, which involves
391 ValueToValueMapTy ValueMap; member in class:__anon25870::ModuleLinker
871 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
931 ValueMap[SGV] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGV->getType()));
971 ValueMap[SGV] = NewDGV;
1010 ValueMap[SF] = ConstantExpr::getBitCast(DGV, TypeMap.get(SF->getType()));
1052 ValueMap[SF] = NewDF;
1091 ValueMap[SGA] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGA->getType()));
1123 ValueMap[SG
[all...]
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp85 typedef std::map<const Value*,std::string> ValueMap; typedef in namespace:__anon26007
98 ValueMap ValueNames;
431 ValueMap::iterator I = ValueNames.find(val);
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp368 struct ValueMap { struct in class:__anon26368::InnerLoopVectorizer
371 ValueMap(unsigned UnrollFactor) : UF(UnrollFactor) {} function in struct:__anon26368::InnerLoopVectorizer::ValueMap
453 ValueMap WidenMap;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 4475 milliseconds