MCPcopy Create free account
hub / github.com/PixarAnimationStudios/OpenUSD / Find

Method Find

pxr/exec/exec/uncompilationTable.cpp:47–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45}
46
47Exec_UncompilationTable::Entry
48Exec_UncompilationTable::Find(const SdfPath &path)
49{
50 TRACE_FUNCTION();
51
52 const _ConcurrentMap::iterator foundIter = _ruleSets.find(path);
53 if (foundIter != _ruleSets.end()) {
54 return {path, foundIter->second};
55 }
56 return {path, nullptr};
57}
58
59std::vector<Exec_UncompilationTable::Entry>
60Exec_UncompilationTable::UpdateForRecursiveResync(const SdfPath &path)

Calls 2

findMethod · 0.45
endMethod · 0.45