Searched defs:keyIdentifier (Results 1 - 14 of 14) sorted by relevance

/external/webkit/Source/WebKit2/Shared/
H A DWebKeyboardEvent.cpp33 WebKeyboardEvent::WebKeyboardEvent(Type type, const String& text, const String& unmodifiedText, const String& keyIdentifier, int windowsVirtualKeyCode, int nativeVirtualKeyCode, int macCharCode, bool isAutoRepeat, bool isKeypad, bool isSystemKey, Modifiers modifiers, double timestamp) argument
37 , m_keyIdentifier(keyIdentifier)
H A DWebEvent.h217 WebKeyboardEvent(Type, const String& text, const String& unmodifiedText, const String& keyIdentifier, int windowsVirtualKeyCode, int nativeVirtualKeyCode, int macCharCode, bool isAutoRepeat, bool isKeypad, bool isSystemKey, Modifiers, double timestamp);
221 const String& keyIdentifier() const { return m_keyIdentifier; } function in class:WebKit::WebKeyboardEvent
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
H A DAuthorityKeyIdentifier.java25 * keyIdentifier [0] IMPLICIT KeyIdentifier OPTIONAL,
155 byte[] keyIdentifier)
157 this.keyidentifier = new DEROctetString(keyIdentifier);
167 byte[] keyIdentifier,
171 this.keyidentifier = new DEROctetString(keyIdentifier);
154 AuthorityKeyIdentifier( byte[] keyIdentifier) argument
166 AuthorityKeyIdentifier( byte[] keyIdentifier, GeneralNames name, BigInteger serialNumber) argument
/external/webkit/Source/WebCore/dom/
H A DKeyboardEvent.cpp65 , m_keyIdentifier(key.keyIdentifier())
72 const String &keyIdentifier, unsigned keyLocation,
76 , m_keyIdentifier(keyIdentifier)
87 const String &keyIdentifier, unsigned keyLocation,
95 m_keyIdentifier = keyIdentifier;
104 bool KeyboardEvent::getModifierState(const String& keyIdentifier) const
106 if (keyIdentifier == "Control")
108 if (keyIdentifier == "Shift")
110 if (keyIdentifier == "Alt")
112 if (keyIdentifier
71 KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view, const String &keyIdentifier, unsigned keyLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) argument
86 initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, const String &keyIdentifier, unsigned keyLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) argument
[all...]
H A DKeyboardEvent.h66 const String& keyIdentifier, unsigned keyLocation,
69 return adoptRef(new KeyboardEvent(type, canBubble, cancelable, view, keyIdentifier, keyLocation,
75 const String& keyIdentifier, unsigned keyLocation,
78 const String& keyIdentifier() const { return m_keyIdentifier; } function in class:WebCore::KeyboardEvent
81 bool getModifierState(const String& keyIdentifier) const;
102 const String& keyIdentifier, unsigned keyLocation,
65 create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, const String& keyIdentifier, unsigned keyLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) argument
H A DSelectElement.cpp569 const String& keyIdentifier = static_cast<KeyboardEvent*>(event)->keyIdentifier(); local
574 if (keyIdentifier == "Down" || keyIdentifier == "Up") {
601 if (keyIdentifier == "Down" || keyIdentifier == "Right") {
604 } else if (keyIdentifier == "Up" || keyIdentifier == "Left") {
607 } else if (keyIdentifier == "PageDown") {
610 } else if (keyIdentifier
784 const String& keyIdentifier = static_cast<KeyboardEvent*>(event)->keyIdentifier(); local
[all...]
/external/webkit/Source/WebKit2/Shared/qt/
H A DWebEventFactoryQt.cpp155 const String keyIdentifier = keyIdentifierForQtKeyCode(event->key()); local
162 return WebKeyboardEvent(type, text, unmodifiedText, keyIdentifier, windowsVirtualKeyCode, nativeVirtualKeyCode, macCharCode, isAutoRepeat, isKeypad, isSystemKey, modifiers, timestamp);
/external/webkit/Source/WebKit2/Shared/win/
H A DWebEventFactory.cpp451 String keyIdentifier = keyIdentifierFromEvent(wparam, type); local
461 return WebKeyboardEvent(type, text, unmodifiedText, keyIdentifier, windowsVirtualKeyCode, nativeVirtualKeyCode, macCharCode, autoRepeat, isKeypad, isSystemKey, modifiers, timestamp);
/external/chromium/chrome/browser/resources/keyboard/
H A Dmain.js43 this.keyIdentifier = id;
178 sendKeyFunction(this.modes_[mode].keyIdentifier);
611 var keyEvent = {'type': 'keydown', 'keyIdentifier': key};
/external/webkit/Source/WebCore/platform/
H A DPlatformKeyboardEvent.h148 String keyIdentifier() const { return m_keyIdentifier; } function in class:WebCore::PlatformKeyboardEvent
/external/webkit/Source/WebKit/chromium/public/
H A DWebInputEvent.h214 char keyIdentifier[keyIdentifierLengthCap]; member in class:WebKit::WebKeyboardEvent
235 memset(&keyIdentifier, 0, sizeof(keyIdentifier));
238 // Sets keyIdentifier based on the value of windowsKeyCode. This is
/external/webkit/Source/WebKit/win/
H A DDOMEventsClasses.cpp271 HRESULT STDMETHODCALLTYPE DOMKeyboardEvent::keyIdentifier( function in class:DOMKeyboardEvent
355 /* [in] */ BSTR /*keyIdentifier*/,
/external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
H A DX509CertSelectorTest.java96 protected byte[] keyIdentifier = null; field in class:X509CertSelectorTest.TestCert
210 this.keyIdentifier = subjectKeyID.clone();
377 return ASN1OctetString.getInstance().encode(keyIdentifier);
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h1115 @property(readonly, copy) NSString *keyIdentifier; variable
1125 - (void)initKeyboardEvent:(NSString *)type canBubble:(BOOL)canBubble cancelable:(BOOL)cancelable view:(DOMAbstractView *)view keyIdentifier:(NSString *)keyIdentifier keyLocation:(unsigned)keyLocation ctrlKey:(BOOL)ctrlKey altKey:(BOOL)altKey shiftKey:(BOOL)shiftKey metaKey:(BOOL)metaKey altGraphKey:(BOOL)altGraphKey AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
1126 - (void)initKeyboardEvent:(NSString *)type canBubble:(BOOL)canBubble cancelable:(BOOL)cancelable view:(DOMAbstractView *)view keyIdentifier:(NSString *)keyIdentifier keyLocation:(unsigned)keyLocation ctrlKey:(BOOL)ctrlKey altKey:(BOOL)altKey shiftKey:(BOOL)shiftKey metaKey:(BOOL)metaKey AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;

Completed in 424 milliseconds