Searched refs:szKey (Results 1 – 6 of 6) sorted by relevance
/external/pdfium/xfa/src/fdp/src/css/ |
D | fde_csscache.cpp | 35 void CFDE_CSSStyleSheetCache::AddStyleSheet(const CFX_ByteStringC& szKey, in AddStyleSheet() argument 44 auto it = m_Stylesheets.find(szKey); in AddStyleSheet() 57 m_Stylesheets[szKey] = in AddStyleSheet() 62 const CFX_ByteStringC& szKey) const { in GetStyleSheet() 63 auto it = m_Stylesheets.find(szKey); in GetStyleSheet() 72 void CFDE_CSSStyleSheetCache::RemoveStyleSheet(const CFX_ByteStringC& szKey) { in RemoveStyleSheet() argument 73 auto it = m_Stylesheets.find(szKey); in RemoveStyleSheet()
|
D | fde_csscache.h | 28 virtual void AddStyleSheet(const CFX_ByteStringC& szKey, 30 virtual IFDE_CSSStyleSheet* GetStyleSheet(const CFX_ByteStringC& szKey) const; 31 virtual void RemoveStyleSheet(const CFX_ByteStringC& szKey);
|
/external/webrtc/webrtc/modules/audio_device/linux/ |
D | audio_device_alsa_linux.cc | 2206 char szKey[32]; in KeyPressed() local 2214 XQueryKeymap(_XDisplay, szKey); in KeyPressed() 2217 for (i = 0; i < sizeof(szKey); i++) in KeyPressed() 2218 state |= (szKey[i] ^ _oldKeyState[i]) & szKey[i]; in KeyPressed() 2221 memcpy((char*)_oldKeyState, (char*)szKey, sizeof(_oldKeyState)); in KeyPressed()
|
D | audio_device_pulse_linux.cc | 2988 char szKey[32]; in KeyPressed() local 2996 XQueryKeymap(_XDisplay, szKey); in KeyPressed() 2999 for (i = 0; i < sizeof(szKey); i++) in KeyPressed() 3000 state |= (szKey[i] ^ _oldKeyState[i]) & szKey[i]; in KeyPressed() 3003 memcpy((char*)_oldKeyState, (char*)szKey, sizeof(_oldKeyState)); in KeyPressed()
|
/external/opencv3/modules/highgui/src/ |
D | window_w32.cpp | 308 char szKey[1024]; in icvLoadWindowPos() local 309 strcpy( szKey, icvWindowPosRootKey ); in icvLoadWindowPos() 310 strcat( szKey, name ); in icvLoadWindowPos() 315 if( RegOpenKeyEx(HKEY_CURRENT_USER,szKey,0,KEY_QUERY_VALUE,&hkey) == ERROR_SUCCESS ) in icvLoadWindowPos() 349 char szKey[1024]; in icvSaveWindowPos() local 351 strcpy( szKey, icvWindowPosRootKey ); in icvSaveWindowPos() 352 strcat( szKey, name ); in icvSaveWindowPos() 354 if( RegOpenKeyEx( HKEY_CURRENT_USER,szKey,0,KEY_READ,&hkey) != ERROR_SUCCESS ) in icvSaveWindowPos() 389 …if( RegCreateKeyEx(HKEY_CURRENT_USER,szKey,0,NULL,REG_OPTION_NON_VOLATILE, KEY_WRITE, 0, &hkey, NU… in icvSaveWindowPos() 395 if( RegOpenKeyEx( HKEY_CURRENT_USER,szKey,0,KEY_WRITE,&hkey) != ERROR_SUCCESS ) in icvSaveWindowPos()
|
/external/pdfium/xfa/src/fdp/include/ |
D | fde_css.h | 474 virtual void AddStyleSheet(const CFX_ByteStringC& szKey, 477 const CFX_ByteStringC& szKey) const = 0; 478 virtual void RemoveStyleSheet(const CFX_ByteStringC& szKey) = 0;
|