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/chrome/browser/policy/
H A Dregistry_dict_win.h37 CaseInsensitiveStringCompare> ValueMap; typedef in class:policy::RegistryDict
79 const ValueMap& values() const { return values_; }
83 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.
/external/llvm/include/llvm/ADT/
H A DValueMap.h1 //===- llvm/ADT/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.
50 /// If FollowRAUW is true, the ValueMap will update mappings on RAUW. If it's
51 /// false, the ValueMap wil
75 class ValueMap { class in namespace:llvm
89 explicit ValueMap(unsigned NumInitBuckets = 64) function in class:llvm::ValueMap
91 explicit ValueMap(const ExtraData &Data, unsigned NumInitBuckets = 64) function in class:llvm::ValueMap
[all...]
/external/chromium/base/
H A Dvalues.h43 typedef std::map<std::string, Value*> ValueMap; typedef
320 explicit key_iterator(ValueMap::const_iterator itr) { itr_ = itr; }
330 ValueMap::const_iterator itr_;
341 ValueMap dictionary_;
/external/chromium_org/base/
H A Dvalues.h46 typedef std::map<std::string, Value*> ValueMap; typedef in namespace:base
353 ValueMap::const_iterator it_;
361 ValueMap dictionary_;
/external/chromium_org/third_party/icu/source/common/
H A Dpropname.h119 /* ValueMap */
123 * enumerated properties), there is a ValueMap object. This object
135 struct ValueMap { struct
170 /* to ValueMap objects */
187 const ValueMap* getValueMap(EnumValue prop) const;
475 * 4: # ValueMap array [x one for each enumerated prop i]
/external/llvm/include/llvm/CodeGen/
H A DFunctionLoweringInfo.h69 /// ValueMap - Since we emit code for the function a basic block at a time,
72 DenseMap<const Value*, unsigned> ValueMap; member in class:llvm::FunctionLoweringInfo
138 return ValueMap.count(V);
146 unsigned &R = ValueMap[V];
192 // PHIs with no uses have no ValueMap entry.
193 DenseMap<const Value*, unsigned>::const_iterator It = ValueMap.find(PN);
194 if (It == ValueMap.end())
/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp129 ValueMapType::const_iterator I = ValueMap.find(V);
130 assert(I != ValueMap.end() && "Value not in slotcalculator!");
135 print(dbgs(), ValueMap, "Default"); local
201 // Rebuild the modified portion of ValueMap.
203 ValueMap[Values[CstStart].first] = CstStart+1;
312 unsigned &ValueID = ValueMap[V];
342 ValueMap[V] = Values.size();
398 if (ValueMap.count(V)) return;
465 ValueMap[BB] = BasicBlocks.size();
508 /// Remove purged values from the ValueMap
[all...]
H A DValueEnumerator.h49 ValueMapType ValueMap; member in class:llvm::ValueEnumerator
72 /// 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.cpp104 ValueToValueMapTy &ValueMap) {
121 Value *OrigPreHeaderVal = ValueMap[OrigHeaderVal];
344 // Begin by walking OrigHeader and populating ValueMap with an entry for
347 ValueToValueMapTy ValueMap; local
352 ValueMap[PN] = PN->getIncomingValueForBlock(OrigPreheader);
378 RemapInstruction(C, ValueMap,
389 ValueMap[Inst] = V;
394 ValueMap[Inst] = C;
414 RewriteUsesOfClonedInstructions(OrigHeader, OrigPreheader, ValueMap);
102 RewriteUsesOfClonedInstructions(BasicBlock *OrigHeader, BasicBlock *OrigPreheader, ValueToValueMapTy &ValueMap) argument
H A DJumpThreading.cpp1315 DenseMap<Instruction*, Value*> &ValueMap) {
1324 DenseMap<Instruction*, Value*>::iterator I = ValueMap.find(Inst);
1325 if (I != ValueMap.end())
1312 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/llvm/lib/Linker/
H A DLinkModules.cpp385 /// ValueMap - Mapping of values from what they used to be in Src, to what
386 /// they are now in DstM. ValueToValueMapTy is a ValueMap, which involves
389 ValueToValueMapTy ValueMap; member in class:__anon21280::ModuleLinker
735 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
779 ValueMap[SGV] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGV->getType()));
809 ValueMap[SGV] = NewDGV;
833 ValueMap[SF] = ConstantExpr::getBitCast(DGV, TypeMap.get(SF->getType()));
865 ValueMap[SF] = NewDF;
889 ValueMap[SGA] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGA->getType()));
913 ValueMap[SG
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_protocol.h569 typedef std::map<SpdySettingsIds, Value> ValueMap; typedef in class:net::SpdySettingsIR
576 const ValueMap& values() const { return values_; }
595 ValueMap values_;
/external/llvm/lib/IR/
H A DAsmWriter.cpp301 /// ValueMap - A mapping of Values to slot numbers.
302 typedef DenseMap<const Value*, unsigned> ValueMap; typedef in class:llvm::SlotTracker
313 ValueMap mMap;
317 ValueMap fMap;
572 ValueMap::iterator MI = mMap.find(V);
594 ValueMap::iterator FI = fMap.find(V);
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp84 typedef std::map<const Value*,std::string> ValueMap; typedef in namespace:__anon21390
97 ValueMap ValueNames;
424 ValueMap::iterator I = ValueNames.find(val);
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp242 struct ValueMap { struct in class:__anon21735::InnerLoopVectorizer
245 ValueMap(unsigned UnrollFactor) : UF(UnrollFactor) {} function in struct:__anon21735::InnerLoopVectorizer::ValueMap
325 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 392 milliseconds