Home
last modified time | relevance | path

Searched refs:aCode (Results 1 – 25 of 62) sorted by relevance

123

/trunk/main/svx/source/dialog/
H A Dgraphctl.cxx400 KeyCode aCode( rKEvt.GetKeyCode() ); in KeyInput() local
403 switch ( aCode.GetCode() ) in KeyInput()
454 if( !aCode.IsMod1() && !aCode.IsMod2() ) in KeyInput()
456 bool bForward = !aCode.IsShift(); in KeyInput()
467 else if(aCode.IsMod1()) in KeyInput()
484 if ( aCode.IsMod1() ) in KeyInput()
497 if ( aCode.IsMod1() ) in KeyInput()
515 if (aCode.GetCode() == KEY_UP) in KeyInput()
521 else if (aCode.GetCode() == KEY_DOWN) in KeyInput()
527 else if (aCode.GetCode() == KEY_LEFT) in KeyInput()
[all …]
/trunk/main/vcl/source/fontsubset/
H A Dxlat.cxx119 sal_uInt16 aCode = aTempArray[0]; in convertOne() local
121 aCode = (aCode << 8) + (aTempArray[i] & 0xFF); in convertOne()
122 return aCode; in convertOne()
148 sal_uInt16 aCode = aTempArray[0]; in convertStr() local
150 aCode = (aCode << 8) + (aTempArray[i] & 0xFF); in convertStr()
151 pDst[n] = aCode; in convertStr()
/trunk/main/vcl/os2/source/window/
H A Dsalframe.cxx1825 aCode += 'F'; in GetKeyName()
1892 aCode += '+'; in GetKeyName()
1895 aCode += '-'; in GetKeyName()
1898 aCode += '*'; in GetKeyName()
1901 aCode += '/'; in GetKeyName()
1904 aCode += '.'; in GetKeyName()
1907 aCode += ','; in GetKeyName()
1910 aCode += '<'; in GetKeyName()
1913 aCode += '>'; in GetKeyName()
1916 aCode += '='; in GetKeyName()
[all …]
/trunk/main/basctl/source/dlged/
H A Ddlgedfunc.cxx138 KeyCode aCode = rKEvt.GetKeyCode(); in KeyInput() local
139 sal_uInt16 nCode = aCode.GetCode(); in KeyInput()
165 if ( !aCode.IsMod1() && !aCode.IsMod2() ) in KeyInput()
168 if ( !pView->MarkNextObj( !aCode.IsShift() ) ) in KeyInput()
172 pView->MarkNextObj( !aCode.IsShift() ); in KeyInput()
180 else if ( aCode.IsMod1() ) in KeyInput()
184 ((SdrHdlList&)rHdlList).TravelFocusHdl( !aCode.IsShift() ); in KeyInput()
232 if ( pView->AreObjectsMarked() && !aCode.IsMod1() ) in KeyInput()
234 if ( aCode.IsMod2() ) in KeyInput()
/trunk/main/basic/source/comp/
H A Dcodegen.cxx36 : rMod( r ), aCode( p, nInc ) in SbiCodeGen()
47 return aCode.GetSize(); in GetPC()
85 aCode += (sal_uInt8) eOpcode; in Gen()
96 aCode += (sal_uInt8) eOpcode; in Gen()
98 aCode += nOpnd; in Gen()
109 aCode += (sal_uInt8) eOpcode; in Gen()
111 aCode += nOpnd1; in Gen()
112 aCode += nOpnd2; in Gen()
317 p->AddCode( aCode.GetBuffer(), aCode.GetSize() ); in Save()
/trunk/main/sc/source/ui/drawfunc/
H A Dfudraw.cxx350 KeyCode aCode = rKEvt.GetKeyCode(); in KeyInput() local
352 if ( !aCode.IsMod1() && !aCode.IsMod2() ) in KeyInput()
355 if(!pView->MarkNextObj( !aCode.IsShift() )) in KeyInput()
363 pView->MarkNextObj(!aCode.IsShift()); in KeyInput()
407 KeyCode aCode = rKEvt.GetKeyCode(); in KeyInput() local
409 if ( aCode.IsMod1() ) in KeyInput()
432 KeyCode aCode = rKEvt.GetKeyCode(); in KeyInput() local
434 if ( aCode.IsMod1() ) in KeyInput()
/trunk/main/sd/source/ui/func/
H A Dfudraw.cxx457 KeyCode aCode = rKEvt.GetKeyCode(); in KeyInput() local
459 if ( !aCode.IsMod1() && !aCode.IsMod2() ) in KeyInput()
471 if(!mpView->MarkNextObj( !aCode.IsShift() )) in KeyInput()
479 mpView->MarkNextObj(!aCode.IsShift()); in KeyInput()
494 KeyCode aCode = rKEvt.GetKeyCode(); in KeyInput() local
496 if ( aCode.IsMod1() ) in KeyInput()
513 KeyCode aCode = rKEvt.GetKeyCode(); in KeyInput() local
515 if ( aCode.IsMod1() ) in KeyInput()
/trunk/main/formula/source/ui/dlg/
H A Dfuncutl.cxx125 KeyCode aCode = rKEvt.GetKeyCode(); in KeyInput() local
126 sal_Bool bUp = (aCode.GetCode() == KEY_UP); in KeyInput()
127 sal_Bool bDown = (aCode.GetCode() == KEY_DOWN); in KeyInput()
131 && ( !aCode.IsShift() && !aCode.IsMod1() && !aCode.IsMod2() ) in KeyInput()
/trunk/main/sw/source/filter/html/
H A DSwAppletImpl.cxx159 String aCode, aName, aCodeBase; in CreateApplet() local
168 aCode = rArg.GetArgument(); in CreateApplet()
177 if( !aCode.Len() ) in CreateApplet()
179 CreateApplet( aCode, aName, bMayScript, aCodeBase, rBaseURL ); in CreateApplet()
/trunk/main/sc/source/ui/navipi/
H A Dnavipi.cxx120 KeyCode aCode = pKEvt->GetKeyCode(); in Notify() local
122 if ( !aCode.IsMod1() && !aCode.IsMod2() ) in Notify()
128 if ( aCode.GetCode() == KEY_RETURN ) in Notify()
330 KeyCode aCode = pKEvt->GetKeyCode(); in Notify() local
331 if ( aCode.GetCode() == KEY_RETURN && !aCode.IsMod1() && !aCode.IsMod2() ) in Notify()
H A Dscenwnd.cxx129 KeyCode aCode = rNEvt.GetKeyEvent()->GetKeyCode(); in Notify() local
130 switch( aCode.GetCode() ) in Notify()
/trunk/main/basic/source/inc/
H A Dcodegen.hxx36 SbiBuffer aCode; // Code-Puffer member in SbiCodeGen
47 void Patch( sal_uInt32 o, sal_uInt32 v ){ aCode.Patch( o, v ); } in Patch()
48 void BackChain( sal_uInt32 off ) { aCode.Chain( off ); } in BackChain()
/trunk/main/i18npool/source/localedata/
H A DLocaleNode.cxx716 OUString aCode( n->getValue()); in generateCode() local
721 if (aCode.indexOf( aPar1 ) > 0 || aCode.indexOf( aPar2 ) > 0 || in generateCode()
722 aCode.indexOf( aPar3 ) > 0 || aCode.indexOf( aPar4 ) > 0) in generateCode()
730 OUString aCode( n->getValue()); in generateCode() local
740 nDec = aCode.indexOf( pSep->getValue()); in generateCode()
750 nGrp = aCode.indexOf( pSep->getValue()); in generateCode()
769 nTime = aCode.indexOf( pSep->getValue()); in generateCode()
779 n100s = aCode.indexOf( pSep->getValue()); in generateCode()
785 n100s = aCode.indexOf( a100s.makeStringAndClear()); in generateCode()
/trunk/main/sw/source/ui/index/
H A Dcnttab.cxx689 KeyCode aCode = rKEvt.GetKeyCode(); in KeyInput() local
694 if(aCode.GetCode() == KEY_ADD ) in KeyInput()
1852 KeyCode aCode = rKEvt.GetKeyCode(); in KeyInput() local
1863 else if ( (aCode.GetCode() == KEY_F3) && aCode.IsShift() && !aCode.IsMod1() && !aCode.IsMod2() ) in KeyInput()
1988 KeyCode aCode = rKEvt.GetKeyCode(); in KeyInput() local
1989 if(aCode.GetCode() == KEY_RIGHT) in KeyInput()
1994 else if(aCode.GetCode() == KEY_LEFT ) in KeyInput()
1999 else if(aCode.GetCode() == KEY_DELETE) in KeyInput()
2005 else if ( (aCode.GetCode() == KEY_F3) && aCode.IsShift() && !aCode.IsMod1() && !aCode.IsMod2() ) in KeyInput()
2669 KeyCode aCode = rKEvt.GetKeyCode(); in Notify() local
[all …]
/trunk/main/svtools/source/control/
H A Dinettbc.cxx969 KeyCode aCode( rKey.GetCode() ); in ProcessKey() local
970 if ( aCode == KEY_RETURN && GetText().Len() ) in ProcessKey()
1006 else if ( aCode == KEY_RETURN && !GetText().Len() && GetOpenHdl().IsSet() ) in ProcessKey()
1013 else if( aCode == KEY_ESCAPE ) in ProcessKey()
1053 KeyCode aCode( rKey.GetCode() ); in PreNotify() local
1058 else if( ( aCode == KEY_UP || aCode == KEY_DOWN ) && !rKey.IsMod2() ) in PreNotify()
/trunk/main/sc/source/ui/view/
H A Dtabvwsh4.cxx1289 KeyCode aCode = rKEvt.GetKeyCode(); in TabKeyInput() local
1290 sal_Bool bShift = aCode.IsShift(); in TabKeyInput()
1291 sal_Bool bControl = aCode.IsMod1(); in TabKeyInput()
1292 sal_Bool bAlt = aCode.IsMod2(); in TabKeyInput()
1293 sal_uInt16 nCode = aCode.GetCode(); in TabKeyInput()
1321 sal_uInt16 nModi = aCode.GetModifier(); in TabKeyInput()
1322 sal_uInt16 nGroup = aCode.GetGroup(); in TabKeyInput()
1365 KeyFuncType eFunc = aCode.GetFunction(); in TabKeyInput()
/trunk/main/sc/source/ui/miscdlgs/
H A Doptsolver.cxx142 KeyCode aCode = rKEvt.GetKeyCode(); in KeyInput() local
143 bool bUp = (aCode.GetCode() == KEY_UP); in KeyInput()
144 bool bDown = (aCode.GetCode() == KEY_DOWN); in KeyInput()
145 if ( !aCode.IsShift() && !aCode.IsMod1() && !aCode.IsMod2() && ( bUp || bDown ) ) in KeyInput()
/trunk/main/sw/source/ui/misc/
H A Dglosbib.cxx536 KeyCode aCode = rKEvent.GetKeyCode(); in KeyInput() local
537 if( KEYGROUP_CURSOR == aCode.GetGroup() || in KeyInput()
538 ( KEYGROUP_MISC == aCode.GetGroup() && in KeyInput()
539 KEY_DELETE >= aCode.GetCode() ) || in KeyInput()
/trunk/main/sw/source/ui/ribbar/
H A Dinputwin.cxx544 const KeyCode aCode = rEvent.GetKeyCode(); in KeyInput() local
545 if(aCode == KEY_RETURN || aCode == KEY_F2 ) in KeyInput()
547 else if(aCode == KEY_ESCAPE ) in KeyInput()
/trunk/main/sc/source/ui/dbgui/
H A Dasciiopt.cxx219 String aCode = aToken.GetToken( i, '/' ); in ReadFromString() local
220 if ( aCode.EqualsAscii(pStrMrg) ) in ReadFromString()
224 sal_Int32 nVal = aCode.ToInt32(); in ReadFromString()
/trunk/main/framework/source/dispatch/
H A Dmenudispatcher.cxx284 KeyCode aCode = aAccel.GetKeyCode( nId ); in impl_setAccelerators() local
285 if ( aCode.GetCode() ) in impl_setAccelerators()
286 pMenu->SetAccelKey( nId, aCode ); in impl_setAccelerators()
/trunk/main/sc/source/ui/sidebar/
H A DNumberFormatPropertyPanel.cxx336 String aCode = pItem->GetValue(); in NotifyItemUpdate() local
352 sal_uInt16 aLen = aCode.Len(); in NotifyItemUpdate()
359 sal_Unicode cChar = aCode.GetChar(nCount); in NotifyItemUpdate()
/trunk/main/basctl/source/basicide/
H A Dscriptdocument.cxx1422 Any aCode; in getModule() local
1423 if ( !m_pImpl->getModuleOrDialog( E_SCRIPTS, _rLibName, _rModName, aCode ) ) in getModule()
1425 OSL_VERIFY( aCode >>= _out_rModuleSource ); in getModule()
1473 Any aCode; in getDialog() local
1474 if ( !m_pImpl->getModuleOrDialog( E_DIALOGS, _rLibName, _rDialogName, aCode ) ) in getDialog()
1476 OSL_VERIFY( aCode >>= _out_rDialogProvider ); in getDialog()
/trunk/main/sc/source/ui/unoobj/
H A Dtokenuno.cxx166 ScTokenArray aCode; in printFormula() local
167 (void)ScTokenConversion::ConvertToTokenArray( *pDoc, aCode, aTokens ); in printFormula()
170 ScCompiler aCompiler( pDoc, aRefPos, aCode); in printFormula()
/trunk/main/offapi/com/sun/star/mozilla/
H A DXProxyRunner.idl51 @param aCode
57 long Run( [in]XCodeProxy aCode);

Completed in 199 milliseconds

123