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

  /external/v8/src/
scopes.h 41 class VariableMap: public HashMap {
43 VariableMap();
47 explicit VariableMap(bool gotta_love_static_overloading);
49 virtual ~VariableMap();
67 VariableMap* GetMap(Variable::Mode mode) {
74 VariableMap maps_[3];
351 VariableMap variables_;
scopes.cc 79 VariableMap::VariableMap(bool gotta_love_static_overloading) : HashMap() {}
81 VariableMap::VariableMap() : HashMap(Match, &LocalsMapAllocator, 8) {}
82 VariableMap::~VariableMap() {}
85 Variable* VariableMap::Declare(Scope* scope,
100 Variable* VariableMap::Lookup(Handle<String> name) {
463 for (VariableMap::Entry* p = variables_.Start();
583 static void PrintMap(PrettyPrinter* printer, int indent, VariableMap* map)
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcherGen.cpp 59 /// VariableMap - A map from variable names ('$dst') to the recorded operand
62 StringMap<unsigned> VariableMap;
119 unsigned VarMapEntry = VariableMap[Name];
423 // If this node has a name associated with it, capture it in VariableMap. If
426 unsigned &VarMapEntry = VariableMap[N->getName()];
493 unsigned RecNodeEntry = VariableMap[N->getName()];
496 --RecNodeEntry; // Entries in VariableMap are biased.
    [all...]

Completed in 141 milliseconds