HomeSort by relevance Sort by last modified time
    Searched refs:interfaceName (Results 1 - 25 of 307) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8EventTargetCustom.cpp 41 #define TRY_TO_WRAP_WITH_INTERFACE(interfaceName) \
42 if (EventTargetNames::interfaceName == desiredInterface) \
43 return toV8(static_cast<interfaceName*>(impl), creationContext, isolate);
50 AtomicString desiredInterface = impl->interfaceName();
V8EventCustom.cpp 54 #define TRY_TO_WRAP_WITH_INTERFACE(interfaceName) \
55 if (EventNames::interfaceName == desiredInterface) \
56 return wrap(static_cast<interfaceName*>(event), creationContext, isolate);
62 String desiredInterface = event->interfaceName();
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
AudioTrackList.h 23 virtual const AtomicString& interfaceName() const OVERRIDE;
VideoTrackList.h 23 virtual const AtomicString& interfaceName() const OVERRIDE;
AudioTrackList.cpp 35 const AtomicString& AudioTrackList::interfaceName() const
TrackEvent.cpp 53 const AtomicString& TrackEvent::interfaceName() const
  /external/chromium_org/third_party/WebKit/Source/modules/device_light/
DeviceLightEvent.h 42 virtual const AtomicString& interfaceName() const OVERRIDE;
52 DEFINE_TYPE_CASTS(DeviceLightEvent, Event, event, event->interfaceName() == EventNames::DeviceLightEvent, event.interfaceName() == EventNames::DeviceLightEvent);
DeviceLightEvent.cpp 34 const AtomicString& DeviceLightEvent::interfaceName() const
  /external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DeviceMotionEvent.h 59 virtual const AtomicString& interfaceName() const OVERRIDE;
73 DEFINE_TYPE_CASTS(DeviceMotionEvent, Event, event, event->interfaceName() == EventNames::DeviceMotionEvent, event.interfaceName() == EventNames::DeviceMotionEvent);
DeviceOrientationEvent.h 57 virtual const AtomicString& interfaceName() const OVERRIDE;
68 DEFINE_TYPE_CASTS(DeviceOrientationEvent, Event, event, event->interfaceName() == EventNames::DeviceOrientationEvent, event.interfaceName() == EventNames::DeviceOrientationEvent);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ExceptionState.cpp 143 if (propertyName() && interfaceName() && m_context != UnknownContext) {
145 processedMessage = ExceptionMessages::failedToDelete(propertyName(), interfaceName(), message);
147 processedMessage = ExceptionMessages::failedToExecute(propertyName(), interfaceName(), message);
149 processedMessage = ExceptionMessages::failedToGet(propertyName(), interfaceName(), message);
151 processedMessage = ExceptionMessages::failedToSet(propertyName(), interfaceName(), message);
152 } else if (!propertyName() && interfaceName()) {
154 processedMessage = ExceptionMessages::failedToConstruct(interfaceName(), message);
156 processedMessage = ExceptionMessages::failedToEnumerate(interfaceName(), message);
158 processedMessage = ExceptionMessages::failedToDeleteIndexed(interfaceName(), message);
160 processedMessage = ExceptionMessages::failedToGetIndexed(interfaceName(), message)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/events/
BeforeTextInsertedEvent.cpp 40 const AtomicString& BeforeTextInsertedEvent::interfaceName() const
BeforeTextInsertedEvent.h 42 virtual const AtomicString& interfaceName() const OVERRIDE;
BeforeUnloadEvent.h 46 virtual const AtomicString& interfaceName() const OVERRIDE { return EventNames::BeforeUnloadEvent; }
ClipboardEvent.cpp 43 const AtomicString& ClipboardEvent::interfaceName() const
ResourceProgressEvent.cpp 49 const AtomicString& ResourceProgressEvent::interfaceName() const
  /libcore/luni/src/main/java/java/net/
NetworkInterface.java 102 * @throws NullPointerException if {@code interfaceName == null}.
104 public static NetworkInterface getByName(String interfaceName) throws SocketException {
105 if (interfaceName == null) {
106 throw new NullPointerException("interfaceName == null");
108 if (!isValidInterfaceName(interfaceName)) {
112 return getByNameInternal(interfaceName, readIfInet6Lines());
116 * Similar to {@link #getByName(String)} except that {@code interfaceName}
119 private static NetworkInterface getByNameInternal(String interfaceName,
121 int interfaceIndex = readIntFile("/sys/class/net/" + interfaceName + "/ifindex");
125 collectIpv6Addresses(interfaceName, interfaceIndex, addresses, interfaceAddresses
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGZoomEvent.h 49 virtual const AtomicString& interfaceName() const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/workers/
SharedWorker.h 51 virtual const AtomicString& interfaceName() const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeyMessageEvent.cpp 54 const AtomicString& MediaKeyMessageEvent::interfaceName() const
MediaKeyNeededEvent.cpp 54 const AtomicString& MediaKeyNeededEvent::interfaceName() const
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
MediaStreamTrackEvent.h 45 virtual const AtomicString& interfaceName() const OVERRIDE;
RTCDataChannelEvent.h 43 virtual const AtomicString& interfaceName() const OVERRIDE;
RTCIceCandidateEvent.h 43 virtual const AtomicString& interfaceName() const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/modules/push_messaging/
PushEvent.cpp 37 const AtomicString& PushEvent::interfaceName() const

Completed in 791 milliseconds

1 2 3 4 5 6 7 8 91011>>