Searched defs:MapValue (Results 1 - 5 of 5) sorted by relevance
/external/llvm/include/llvm/Transforms/Utils/ |
H A D | ValueMapper.h | 10 // This file defines the MapValue interface which is used by various parts of 69 Value *MapValue(const Value *V, ValueToValueMapTy &VM, 79 /// MapValue - provide versions that preserve type safety for MDNode and 81 inline MDNode *MapValue(const MDNode *V, ValueToValueMapTy &VM, function in namespace:llvm 85 return cast<MDNode>(MapValue((const Value*)V, VM, Flags, TypeMapper, 88 inline Constant *MapValue(const Constant *V, ValueToValueMapTy &VM, function in namespace:llvm 92 return cast<Constant>(MapValue((const Value*)V, VM, Flags, TypeMapper,
|
/external/llvm/lib/Transforms/Utils/ |
H A D | ValueMapper.cpp | 10 // This file defines the MapValue function, which is shared by various parts of 27 Value *llvm::MapValue(const Value *V, ValueToValueMapTy &VM, RemapFlags Flags, function in class:llvm 75 Value *Mapped_OP = MapValue(OP, VM, Flags, TypeMapper, Materializer); 90 Value *Mapped_Op = MapValue(Op, VM, Flags, TypeMapper, Materializer); 120 cast<Function>(MapValue(BA->getFunction(), VM, Flags, TypeMapper, Materializer)); 121 BasicBlock *BB = cast_or_null<BasicBlock>(MapValue(BA->getBasicBlock(), VM, 132 Mapped = MapValue(Op, VM, Flags, TypeMapper, Materializer); 159 Ops.push_back(MapValue(cast<Constant>(C->getOperand(OpNo)), VM, 188 Value *V = MapValue(*op, VMap, Flags, TypeMapper, Materializer); 200 Value *V = MapValue(P [all...] |
/external/chromium_org/chromeos/network/onc/ |
H A D | onc_mapper.cc | 20 scoped_ptr<base::Value> Mapper::MapValue(const OncValueSignature& signature, function in class:chromeos::onc::Mapper 101 return MapValue(*field_signature->value_signature, onc_value, error); 139 return MapValue(signature, onc_value, error);
|
H A D | onc_validator.cc | 63 MapValue(*object_signature, onc_object, &error); 82 scoped_ptr<base::Value> Validator::MapValue(const OncValueSignature& signature, function in class:chromeos::onc::Validator 95 Mapper::MapValue(signature, onc_value, error);
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/ |
H A D | ItemType.java | 64 itemTypeIntegerMap.put(itemType.MapValue, itemType); 73 public final int MapValue; field in class:ItemType 98 this.MapValue = mapValue; 121 return MapValue <= 0x1000;
|
Completed in 180 milliseconds