MCPcopy Create free account
hub / github.com/beefytech/Beef / EndsWith

Method EndsWith

IDEHelper/Compiler/BfSystem.cpp:332–342  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

330}
331
332bool BfAtomComposite::EndsWith(const BfAtomComposite& other) const
333{
334 int ofs = mSize - other.mSize;
335 if (ofs < 0)
336 return false;
337
338 for (int i = 0; i < other.mSize; i++)
339 if (mParts[i + ofs] != other.mParts[i])
340 return false;
341 return true;
342}
343
344BfAtomComposite BfAtomComposite::GetSub(int start, int len) const
345{

Callers 15

MatchMethodMethod · 0.45
DbgTypedValueToStringMethod · 0.45
PdbTestFileFunction · 0.45
MapImportMethod · 0.45
LocateSymbolMethod · 0.45
FindSubProgramMethod · 0.45
FindTypeMethod · 0.45
ResolveTypeResultMethod · 0.45
ResolveTypeRef_RefMethod · 0.45
ContainsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected