Searched refs:hasBlock (Results 1 - 4 of 4) sorted by relevance

/haiku/src/servers/app/
H A DServerFont.cpp654 \param hasBlock boolean to store whether the font contains the specified block
655 \return B_OK; hasBlock will be false if something goes wrong
658 ServerFont::IncludesUnicodeBlock(uint32 start, uint32 end, bool& hasBlock) argument
660 hasBlock = false;
675 while (curCodePoint <= end && hasBlock == false) {
679 hasBlock = true;
H A DServerFont.h174 bool &hasBlock);
H A DServerApp.cpp2394 bool hasBlock; local
2396 status = font.IncludesUnicodeBlock(start, end, hasBlock);
2398 fLink.Attach<bool>(hasBlock);
/haiku/src/kits/interface/
H A DFont.cpp879 bool hasBlock; local
880 link.Read<bool>(&hasBlock);
882 return hasBlock;

Completed in 165 milliseconds