Home
last modified time | relevance | path

Searched refs:cur_it (Results 1 – 3 of 3) sorted by relevance

/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/mac/
DMacKeyboard.cpp148 eventStack::iterator cur_it; in capture() local
150 for (cur_it = pendingEvents.begin(); cur_it != pendingEvents.end(); cur_it++) in capture()
153 if ( (*cur_it).Type == MAC_KEYDOWN || (*cur_it).Type == MAC_KEYREPEAT) in capture()
154 mListener->keyPressed( (*cur_it).Event ); in capture()
155 else if ( (*cur_it).Type == MAC_KEYUP ) in capture()
156 mListener->keyReleased( (*cur_it).Event ); in capture()
DCocoaKeyboard.mm158 eventStack::iterator cur_it;
160 for (cur_it = pendingEvents.begin(); cur_it != pendingEvents.end(); cur_it++)
162 if ( (*cur_it).type() == MAC_KEYDOWN || (*cur_it).type() == MAC_KEYREPEAT)
163 oisKeyboardObj->getEventCallback()->keyPressed( (*cur_it).event() );
164 else if ( (*cur_it).type() == MAC_KEYUP )
165 oisKeyboardObj->getEventCallback()->keyReleased( (*cur_it).event() );
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/
Dcocoa.diff987 eventStack::iterator cur_it;
2253 + eventStack::iterator cur_it;
2255 + for (cur_it = pendingEvents.begin(); cur_it != pendingEvents.end(); cur_it++)
2257 + if ( (*cur_it).type() == MAC_KEYDOWN || (*cur_it).type() == MAC_KEYREPEAT)
2258 + oisKeyboardObj->getEventCallback()->keyPressed( (*cur_it).event() );
2259 + else if ( (*cur_it).type() == MAC_KEYUP )
2260 + oisKeyboardObj->getEventCallback()->keyReleased( (*cur_it).event() );