Lines Matching refs:fVariableMap
146 * Variable (from fVariableMap), use that to look up the current skvm::Vals holding the
265 std::unordered_map<const Variable*, size_t> fVariableMap; // [Variable, first slot in fSlots]
375 // fVariableMap to remember where every variable is stored.
383 SkASSERT(fVariableMap.find(&var) == fVariableMap.end());
385 // For most variables, fVariableMap stores an index into fSlots, but for children,
386 // fVariableMap stores the index to pass to fSample(Shader|ColorFilter|Blender)
388 fVariableMap[&var] = fpCount++;
397 // and populates fVariableMap.
550 auto entry = fVariableMap.find(&v);
551 if (entry != fVariableMap.end()) {
573 fVariableMap[&v] = slot;
1043 auto child_it = fVariableMap.find(&c.child());
1044 SkASSERT(child_it != fVariableMap.end());