Lines Matching refs:blockIndex
15 BlockListItem::BlockListItem(const char* label, uint32 blockIndex) in BlockListItem() argument
17 fBlockIndex(blockIndex) in BlockListItem()
79 UnicodeBlockView::IsShowingBlock(int32 blockIndex) const in IsShowingBlock()
81 if (blockIndex < 0 || blockIndex >= (int32)kNumUnicodeBlocks) in IsShowingBlock()
84 if (!fShowPrivateBlocks && kUnicodeBlocks[blockIndex].private_block) in IsShowingBlock()
94 if (kUnicodeBlocks[blockIndex].block != kNoBlock) in IsShowingBlock()
95 return (fUnicodeBlocks & kUnicodeBlocks[blockIndex].block) != kNoBlock; in IsShowingBlock()
98 kUnicodeBlocks[blockIndex].start, in IsShowingBlock()
99 kUnicodeBlocks[blockIndex].end)) in IsShowingBlock()
154 int32 blockIndex = IndexOf(block); in SelectBlockForCharacter() local
156 if (blockIndex >= 0) { in SelectBlockForCharacter()
157 Select(blockIndex); in SelectBlockForCharacter()