Home | History | Annotate | Download | only in cc

Lines Matching refs:windowBitmap

183     // Each bit of windowBitmap indicates a window.
185 private ArrayList<CaptionWindowLayout> getWindowsFromBitmap(int windowBitmap) {
188 if ((windowBitmap & (1 << i)) != 0) {
198 private void clearWindows(int windowBitmap) {
199 if (windowBitmap == 0) {
202 for (CaptionWindowLayout windowLayout : getWindowsFromBitmap(windowBitmap)) {
207 private void displayWindows(int windowBitmap) {
208 if (windowBitmap == 0) {
211 for (CaptionWindowLayout windowLayout : getWindowsFromBitmap(windowBitmap)) {
216 private void hideWindows(int windowBitmap) {
217 if (windowBitmap == 0) {
220 for (CaptionWindowLayout windowLayout : getWindowsFromBitmap(windowBitmap)) {
225 private void toggleWindows(int windowBitmap) {
226 if (windowBitmap == 0) {
229 for (CaptionWindowLayout windowLayout : getWindowsFromBitmap(windowBitmap)) {
238 private void deleteWindows(int windowBitmap) {
239 if (windowBitmap == 0) {
242 for (CaptionWindowLayout windowLayout : getWindowsFromBitmap(windowBitmap)) {