Lines Matching refs:variable
18 ObjectID* variable; member
21 Key(ObjectID* variable, TypeComponentPath* path) in Key()
23 variable(variable), in Key()
30 return variable->HashValue() ^ path->HashValue(); in HashValue()
35 return *variable == *other.variable && *path == *other.path; in operator ==()
45 InfoEntry(ObjectID* variable, TypeComponentPath* path) in InfoEntry()
47 Key(variable, path), in InfoEntry()
51 variable->AcquireReference(); in InfoEntry()
58 variable->ReleaseReference(); in ~InfoEntry()
132 StackFrameValueInfos::GetInfo(ObjectID* variable, in GetInfo() argument
137 Key(variable, (TypeComponentPath*)path)); in GetInfo()
156 StackFrameValueInfos::HasInfo(ObjectID* variable, in HasInfo() argument
159 return fValues->Lookup(Key(variable, (TypeComponentPath*)path)) != NULL; in HasInfo()
164 StackFrameValueInfos::SetInfo(ObjectID* variable, TypeComponentPath* path, in SetInfo() argument
167 InfoEntry* entry = fValues->Lookup(Key(variable, path)); in SetInfo()
169 entry = new(std::nothrow) InfoEntry(variable, path); in SetInfo()