HomeSort by relevance Sort by last modified time
    Searched refs:VariableMap (Results 1 - 3 of 3) sorted by null

  /external/v8/src/
scopes.h 18 class VariableMap: public ZoneHashMap {
20 explicit VariableMap(Zone* zone);
22 virtual ~VariableMap();
47 maps_[i] = new(zone->New(sizeof(VariableMap))) VariableMap(zone);
50 VariableMap* GetMap(VariableMode mode) {
57 VariableMap *maps_[3];
437 VariableMap variables_;
scopes.cc 27 VariableMap::VariableMap(Zone* zone)
30 VariableMap::~VariableMap() {}
33 Variable* VariableMap::Declare(Scope* scope, const AstRawString* name,
55 Variable* VariableMap::Lookup(const AstRawString* name) {
615 for (VariableMap::Entry* p = variables_.Start();
840 static void PrintMap(int indent, VariableMap* map) {
841 for (VariableMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) {
944 VariableMap* map = dynamics_->GetMap(mode)
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcherGen.cpp 58 /// VariableMap - A map from variable names ('$dst') to the recorded operand
61 StringMap<unsigned> VariableMap;
65 /// VariableMap because that leads to identity checking if they are
66 /// encountered multiple times. Biased by 1 like VariableMap for
128 unsigned VarMapEntry = VariableMap[Name];
277 unsigned InputOperand = VariableMap[N->getName()] - 1;
447 unsigned &VarMapEntry = VariableMap[Name];
477 // If this node has a name associated with it, capture it in VariableMap. If
    [all...]

Completed in 90 milliseconds