Home
last modified time | relevance | path

Searched refs:intValue (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/external/xserver/hw/xquartz/
H A DX11Controller.m284 int n = nn.intValue;
602 col = [[tableColumn identifier] intValue];
620 col = [[tableColumn identifier] intValue];
675 XQuartzRootlessDefault = !self.enable_fullscreen.intValue;
697 darwinFakeButtons = self.fake_buttons.intValue;
701 XQuartzEnableKeyEquivalents = self.enable_keyequivs.intValue;
706 darwinSyncKeymap = self.sync_keymap.intValue;
710 XQuartzFullscreenMenu = self.enable_fullscreen_menu.intValue;
717 XQuartzOptionSendsAlt = self.option_sends_alt.intValue;
725 [NSApp prefs_set_boolean:@PREFS_CLICK_THROUGH value:self.click_through.intValue];
[all …]
/OK3568_Linux_fs/u-boot/common/
H A Dkgdb.c200 hexToInt(char **ptr, int *intValue) in hexToInt() argument
205 *intValue = 0; in hexToInt()
213 *intValue = (*intValue << 4) | hexValue; in hexToInt()