MCPcopy Create free account
hub / github.com/ImageEngine/cortex / find

Method find

src/IECore/StreamIndexedIO.cpp:271–279  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

269 }
270
271 uint64_t find( const IndexedIO::EntryID &s ) const
272 {
273 StringToIdMap::const_iterator it = m_stringToIdMap.find( s );
274 if ( it == m_stringToIdMap.end() )
275 {
276 throw IOException( (boost::format ( "StringCache: could not find string %s!" ) % s.value() ).str() );
277 }
278 return it->second;
279 }
280
281 uint64_t find( const IndexedIO::EntryID &s, bool errIfNotFound = true )
282 {

Callers 6

getCompressionCodeFunction · 0.45
writeDataNodeMethod · 0.45
writeNodeMethod · 0.45
allocateMethod · 0.45
addFreePageMethod · 0.45
writeMethod · 0.45

Calls 5

IOExceptionFunction · 0.85
endMethod · 0.45
valueMethod · 0.45
sizeMethod · 0.45
resizeMethod · 0.45

Tested by

no test coverage detected