HomeSort by relevance Sort by last modified time
    Searched defs:MapValue (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/Transforms/Utils/
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,
85 return cast<MDNode>(MapValue((const Value*)V, VM, Flags, TypeMapper,
88 inline Constant *MapValue(const Constant *V, ValueToValueMapTy &VM,
92 return cast<Constant>(MapValue((const Value*)V, VM, Flags, TypeMapper,
  /external/chromium_org/chromeos/network/onc/
onc_mapper.cc 20 scoped_ptr<base::Value> Mapper::MapValue(const OncValueSignature& signature,
101 return MapValue(*field_signature->value_signature, onc_value, error);
139 return MapValue(signature, onc_value, error);
onc_validator.cc 72 MapValue(*object_signature, onc_object, &error);
91 scoped_ptr<base::Value> Validator::MapValue(
105 Mapper::MapValue(signature, onc_value, error);
  /external/llvm/lib/Transforms/Utils/
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,
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(PN->getIncomingBlock(i), VMap, Flags)
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
ItemType.java 64 itemTypeIntegerMap.put(itemType.MapValue, itemType);
73 public final int MapValue;
92 * @param mapValue value when represented in a MapItem
97 private ItemType(int mapValue, int sectionIndex, int itemAlignment, String typeName) {
98 this.MapValue = mapValue;
121 return MapValue <= 0x1000;

Completed in 394 milliseconds