/aoo4110/main/xmerge/source/wordsmith/java/org/openoffice/xmerge/converter/xml/sxw/wordsmith/ |
H A D | WseTextRun.java | 81 private byte modifiers = 0; field in WseTextRun 119 modifiers |= BOLD; in WseTextRun() 121 modifiers |= ITALIC; in WseTextRun() 123 modifiers |= UNDERLINE; in WseTextRun() 125 modifiers |= STRIKETHRU; in WseTextRun() 127 modifiers |= SUPERSCRIPT; in WseTextRun() 129 modifiers |= SUBSCRIPT; in WseTextRun() 179 modifiers = dataArray[startIndex++]; in WseTextRun() 250 b[6] = modifiers; in getBytes() 276 if ((modifiers & BOLD) != 0) mod |= TextStyle.BOLD; in makeStyle() [all …]
|
/aoo4110/main/vcl/aqua/source/window/ |
H A D | salframeview.mm | 1082 [self sendKeyInputAndReleaseToFrame: KEY_TAB character: '\t' modifiers: 0]; 1094 [self sendKeyInputAndReleaseToFrame: KEY_LEFT character: 0 modifiers: 0]; 1112 [self sendKeyInputAndReleaseToFrame: KEY_RIGHT character: 0 modifiers: 0]; 1312 [self sendKeyInputAndReleaseToFrame: KEY_UP character: 0 modifiers: 0]; 1318 [self sendKeyInputAndReleaseToFrame: KEY_DOWN character: 0 modifiers: 0]; 1324 // #i91267# make enter and shift-enter work by evaluating the modifiers 1331 [self sendKeyInputAndReleaseToFrame: KEY_BACKSPACE character: '\b' modifiers: 0]; 1337 [self sendKeyInputAndReleaseToFrame: KEY_DELETE character: 0x7f modifiers: 0]; 1343 [self sendKeyInputAndReleaseToFrame: KEY_BACKSPACE character: '\b' modifiers: 0]; 1421 [self sendKeyInputAndReleaseToFrame: KEY_ESCAPE character: 0x1b modifiers: 0]; [all …]
|
/aoo4110/main/apple_remote/ |
H A D | GlobalKeyboardDevice.m | 69 unsigned int modifiers = cmdKey + shiftKey /*+ optionKey*/ + controlKey; 71 [self mapRemoteButton:kRemoteButtonPlus defaultKeycode:F1 defaultModifiers:modifiers]; 72 [self mapRemoteButton:kRemoteButtonMinus defaultKeycode:F2 defaultModifiers:modifiers]; 73 [self mapRemoteButton:kRemoteButtonPlay defaultKeycode:F3 defaultModifiers:modifiers]; 74 [self mapRemoteButton:kRemoteButtonLeft defaultKeycode:F4 defaultModifiers:modifiers]; 75 [self mapRemoteButton:kRemoteButtonRight defaultKeycode:F5 defaultModifiers:modifiers]; 76 [self mapRemoteButton:kRemoteButtonMenu defaultKeycode:F6 defaultModifiers:modifiers]; 122 unsigned int modifiers = defaultModifiers; 123 if (modifiersCfg) modifiers = [modifiersCfg unsignedIntValue]; 128 …[self registerHotKeyCode: keycode modifiers: modifiers remoteEventIdentifier: remoteButtonIdentif… [all …]
|
/aoo4110/main/cli_ure/source/basetypes/uno/ |
H A D | PolymorphicType.cs | 287 ParameterModifier[] modifiers) in GetConstructorImpl() argument 290 bindingAttr, binder, callConvention, types, modifiers); in GetConstructorImpl() 353 ParameterModifier[] modifiers) in GetMethodImpl() argument 356 name, bindingAttr, binder, callConvention, types, modifiers); in GetMethodImpl() 389 ParameterModifier[] modifiers) in GetPropertyImpl() argument 392 name, bindingAttr, binder, returnType, types, modifiers); in GetPropertyImpl() 406 ParameterModifier[] modifiers, in InvokeMember() argument 411 name, invokeAttr, binder, target, args, modifiers, culture, namedParameters); in InvokeMember()
|
/aoo4110/main/xmerge/source/pocketword/java/org/openoffice/xmerge/converter/xml/sxw/pocketword/ |
H A D | Paragraph.java | 186 int modifiers = 0; in parseText() local 293 modifiers |= TextStyle.BOLD; in parseText() 298 modifiers ^= TextStyle.BOLD; in parseText() 307 modifiers |= TextStyle.ITALIC; in parseText() 311 modifiers ^= TextStyle.ITALIC; in parseText() 320 modifiers |= TextStyle.UNDERLINE; in parseText() 324 modifiers ^= TextStyle.UNDERLINE; in parseText() 333 modifiers |= TextStyle.STRIKETHRU; in parseText() 337 modifiers ^= TextStyle.STRIKETHRU; in parseText() 370 mask, modifiers, fontSize, fontName, null); in parseText()
|
/aoo4110/main/accessibility/bridge/org/openoffice/java/accessibility/ |
H A D | AccessibleKeyBinding.java | 41 int modifiers = 0; in convertModifiers() local 43 modifiers = modifiers | java.awt.event.KeyEvent.SHIFT_DOWN_MASK; in convertModifiers() 47 modifiers = modifiers | java.awt.event.KeyEvent.CTRL_DOWN_MASK; in convertModifiers() 51 modifiers = modifiers | java.awt.event.KeyEvent.ALT_DOWN_MASK; in convertModifiers() 55 modifiers = modifiers | java.awt.event.KeyEvent.META_DOWN_MASK; in convertModifiers() 58 return modifiers; in convertModifiers()
|
/aoo4110/main/apple_remote/inc/ |
H A D | GlobalKeyboardDevice.h | 50 - (BOOL)registerHotKeyCode: (unsigned int) keycode modifiers: (unsigned int) modifiers remoteEventI… in registerHotKeyCode:modifiers:remoteEventIdentifier:()
|
/aoo4110/test/testassistant/src/org/openoffice/test/assistant/views/ |
H A D | UIMapOp.java | 324 fieldDeclaration.modifiers().add(ast.newModifier(ModifierKeyword.PUBLIC_KEYWORD)); in define() 325 fieldDeclaration.modifiers().add(ast.newModifier(ModifierKeyword.STATIC_KEYWORD)); in define() 326 fieldDeclaration.modifiers().add(ast.newModifier(ModifierKeyword.FINAL_KEYWORD)); in define()
|
H A D | ControlInfo.java | 43 int modifiers = field.getModifiers(); 44 …if (modifiers == (Modifier.PUBLIC | Modifier.STATIC | Modifier.FINAL) && field.getType() == Intege…
|
/aoo4110/main/scripting/java/com/sun/star/script/framework/provider/java/ |
H A D | StrictResolver.java | 84 int modifiers = m.getModifiers(); in getProxy() local 85 if ( !Modifier.isStatic( modifiers ) ) in getProxy()
|
/aoo4110/main/accessibility/bridge/org/openoffice/accessibility/ |
H A D | KeyHandler.java | 42 public VCLKeyEvent(Component c, int id, int modifiers, int keyCode, char keyChar) { in VCLKeyEvent() argument 43 super(c, id, System.currentTimeMillis(), modifiers, keyCode, keyChar); in VCLKeyEvent()
|
/aoo4110/main/vcl/inc/aqua/ |
H A D | salframeview.h | 112 -(BOOL)sendKeyInputAndReleaseToFrame: (sal_uInt16)nKeyCode character: (sal_Unicode)aChar modifiers:… in sendKeyInputAndReleaseToFrame:character:modifiers:() 113 -(BOOL)sendKeyToFrameDirect: (sal_uInt16)nKeyCode character: (sal_Unicode)aChar modifiers: (unsigne… in sendKeyToFrameDirect:character:modifiers:()
|
/aoo4110/main/winaccessibility/source/UAccCOM/ |
H A D | AccessibleKeyStroke.h | 28 short modifiers; member
|
/aoo4110/main/winaccessibility/source/UAccCOMIDL/ |
H A D | AccessibleKeyStroke.idl | 23 short modifiers;
|
/aoo4110/extras/l10n/source/gu/ |
H A D | localize.sdf | 9676 …es the native number format code of the corresponding locale. The other modifiers produce differen… 9678 …oductname\"\>%PRODUCTNAME\</item\> internally maps [DBNumX] modifiers to [NatNumN] modifiers. 2… 9679 …5020301.xhp 0 help par_idN11234 0 gu Displaying dates using [NatNum] modifiers can have a diffe… 16501 …pose key to the right of the space bar, then enter the first and second modifiers. \</caseinline\>…
|
/aoo4110/extras/l10n/source/bs/ |
H A D | localize.sdf | 11021 …es the native number format code of the corresponding locale. The other modifiers produce differen… 11023 …oductname\"\>%PRODUCTNAME\</item\> internally maps [DBNumX] modifiers to [NatNumN] modifiers. 2… 11024 …5020301.xhp 0 help par_idN11234 0 bs Displaying dates using [NatNum] modifiers can have a diffe… 19412 …pose key to the right of the space bar, then enter the first and second modifiers. \</caseinline\>…
|
/aoo4110/extras/l10n/source/hr/ |
H A D | localize.sdf | 22239 …oductname\"\>%PRODUCTNAME\</item\> internally maps [DBNumX] modifiers to [NatNumN] modifiers. 2… 22356 …es the native number format code of the corresponding locale. The other modifiers produce differen… 22415 …5020301.xhp 0 help par_idN11234 0 hr Displaying dates using [NatNum] modifiers can have a diffe… 32185 …pose key to the right of the space bar, then enter the first and second modifiers. \</caseinline\>…
|
/aoo4110/extras/l10n/source/he/ |
H A D | localize.sdf | 47937 …pose key to the right of the space bar, then enter the first and second modifiers.\</caseinline\>\… 52960 …es the native number format code of the corresponding locale. The other modifiers produce differen… 52962 …oductname\"\>%PRODUCTNAME\</item\> internally maps [DBNumX] modifiers to [NatNumN] modifiers. 2… 52963 …5020301.xhp 0 help par_idN11234 0 he Displaying dates using [NatNum] modifiers can have a diffe…
|
/aoo4110/extras/l10n/source/hi/ |
H A D | localize.sdf | 47937 …pose key to the right of the space bar, then enter the first and second modifiers.\</caseinline\>\… 52960 …es the native number format code of the corresponding locale. The other modifiers produce differen… 52962 …oductname\"\>%PRODUCTNAME\</item\> internally maps [DBNumX] modifiers to [NatNumN] modifiers. 2… 52963 …5020301.xhp 0 help par_idN11234 0 hi Displaying dates using [NatNum] modifiers can have a diffe…
|
/aoo4110/extras/l10n/source/kk/ |
H A D | localize.sdf | 47937 …pose key to the right of the space bar, then enter the first and second modifiers.\</caseinline\>\… 52960 …es the native number format code of the corresponding locale. The other modifiers produce differen… 52962 …oductname\"\>%PRODUCTNAME\</item\> internally maps [DBNumX] modifiers to [NatNumN] modifiers. 2… 52963 …5020301.xhp 0 help par_idN11234 0 kk Displaying dates using [NatNum] modifiers can have a diffe…
|
/aoo4110/extras/l10n/source/cy/ |
H A D | localize.sdf | 11280 …es the native number format code of the corresponding locale. The other modifiers produce differen… 11282 …oductname\"\>%PRODUCTNAME\</item\> internally maps [DBNumX] modifiers to [NatNumN] modifiers. 2… 11283 …5020301.xhp 0 help par_idN11234 0 cy Displaying dates using [NatNum] modifiers can have a diffe… 19690 …pose key to the right of the space bar, then enter the first and second modifiers. \</caseinline\>…
|
/aoo4110/extras/l10n/source/sr/ |
H A D | localize.sdf | 47937 …pose key to the right of the space bar, then enter the first and second modifiers.\</caseinline\>\… 52960 …es the native number format code of the corresponding locale. The other modifiers produce differen… 52962 …oductname\"\>%PRODUCTNAME\</item\> internally maps [DBNumX] modifiers to [NatNumN] modifiers. 2… 52963 …5020301.xhp 0 help par_idN11234 0 sr Displaying dates using [NatNum] modifiers can have a diffe…
|
/aoo4110/extras/l10n/source/uz/ |
H A D | localize.sdf | 11650 …es the native number format code of the corresponding locale. The other modifiers produce differen… 11652 …oductname\"\>%PRODUCTNAME\</item\> internally maps [DBNumX] modifiers to [NatNumN] modifiers. 2… 11653 …5020301.xhp 0 help par_idN11234 0 uz Displaying dates using [NatNum] modifiers can have a diffe… 20630 …pose key to the right of the space bar, then enter the first and second modifiers. \</caseinline\>…
|
/aoo4110/extras/l10n/source/th/ |
H A D | localize.sdf | 47937 …pose key to the right of the space bar, then enter the first and second modifiers.\</caseinline\>\… 52960 …es the native number format code of the corresponding locale. The other modifiers produce differen… 52962 …oductname\"\>%PRODUCTNAME\</item\> internally maps [DBNumX] modifiers to [NatNumN] modifiers. 2… 52963 …5020301.xhp 0 help par_idN11234 0 th Displaying dates using [NatNum] modifiers can have a diffe…
|
/aoo4110/extras/l10n/source/sw-TZ/ |
H A D | localize.sdf | 20484 …oductname\"\>%PRODUCTNAME\</item\> internally maps [DBNumX] modifiers to [NatNumN] modifiers. 2… 20601 …es the native number format code of the corresponding locale. The other modifiers produce differen… 20660 …0301.xhp 0 help par_idN11234 0 sw-TZ Displaying dates using [NatNum] modifiers can have a diffe… 29784 …pose key to the right of the space bar, then enter the first and second modifiers. \</caseinline\>…
|