OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:interfaceName
(Results
1 - 25
of
263
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8EventTargetCustom.cpp
39
#define TRY_TO_WRAP_WITH_INTERFACE(
interfaceName
) \
40
if (EventTargetNames::
interfaceName
== desiredInterface) \
41
return toV8(static_cast<
interfaceName
*>(impl), creationContext, isolate);
48
AtomicString desiredInterface = impl->
interfaceName
();
V8EventCustom.cpp
55
#define TRY_TO_WRAP_WITH_INTERFACE(
interfaceName
) \
56
if (EventNames::
interfaceName
== desiredInterface) \
57
return wrap(static_cast<
interfaceName
*>(event), creationContext, isolate);
63
String desiredInterface = event->
interfaceName
();
/external/chromium_org/third_party/WebKit/Source/core/events/
BeforeTextInsertedEvent.cpp
42
const AtomicString& BeforeTextInsertedEvent::
interfaceName
() const
BeforeTextInsertedEvent.h
42
virtual const AtomicString&
interfaceName
() const;
BeforeUnloadEvent.h
47
virtual const AtomicString&
interfaceName
() const OVERRIDE { return EventNames::BeforeUnloadEvent; }
ClipboardEvent.cpp
44
const AtomicString& ClipboardEvent::
interfaceName
() const
ResourceProgressEvent.cpp
49
const AtomicString& ResourceProgressEvent::
interfaceName
() const
CustomEvent.cpp
59
const AtomicString& CustomEvent::
interfaceName
() const
PageTransitionEvent.cpp
62
const AtomicString& PageTransitionEvent::
interfaceName
() const
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
ExceptionState.cpp
107
if (propertyName() &&
interfaceName
() && m_context != UnknownContext) {
109
processedMessage = ExceptionMessages::failedToDelete(propertyName(),
interfaceName
(), message);
111
processedMessage = ExceptionMessages::failedToExecute(propertyName(),
interfaceName
(), message);
113
processedMessage = ExceptionMessages::failedToGet(propertyName(),
interfaceName
(), message);
115
processedMessage = ExceptionMessages::failedToSet(propertyName(),
interfaceName
(), message);
116
} else if (!propertyName() &&
interfaceName
() && m_context == ConstructionContext) {
117
processedMessage = ExceptionMessages::failedToConstruct(
interfaceName
(), message);
/external/chromium_org/third_party/WebKit/Source/core/html/track/
TrackEvent.cpp
55
const AtomicString& TrackEvent::
interfaceName
() const
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGZoomEvent.h
48
virtual const AtomicString&
interfaceName
() const;
/external/chromium_org/third_party/WebKit/Source/core/workers/
SharedWorker.h
48
virtual const AtomicString&
interfaceName
() const OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeyMessageEvent.cpp
55
const AtomicString& MediaKeyMessageEvent::
interfaceName
() const
MediaKeyNeededEvent.cpp
54
const AtomicString& MediaKeyNeededEvent::
interfaceName
() const
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCIceCandidateEvent.h
43
virtual const AtomicString&
interfaceName
() const;
MediaStreamTrackEvent.h
45
virtual const AtomicString&
interfaceName
() const OVERRIDE;
RTCDTMFToneChangeEvent.h
48
virtual const AtomicString&
interfaceName
() const;
RTCDataChannelEvent.h
43
virtual const AtomicString&
interfaceName
() const;
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
OfflineAudioCompletionEvent.h
46
virtual const AtomicString&
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/modules/device_orientation/
DeviceMotionEvent.h
58
virtual const AtomicString&
interfaceName
() const;
73
ASSERT_WITH_SECURITY_IMPLICATION(!event || event->
interfaceName
() == EventNames::DeviceMotionEvent);
DeviceOrientationEvent.h
56
virtual const AtomicString&
interfaceName
() const;
67
ASSERT_WITH_SECURITY_IMPLICATION(!event || event->
interfaceName
() == EventNames::DeviceOrientationEvent);
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontFaceLoadEvent.cpp
59
const AtomicString& CSSFontFaceLoadEvent::
interfaceName
() const
/external/chromium_org/third_party/WebKit/Source/core/speech/
SpeechInputEvent.h
46
virtual const AtomicString&
interfaceName
() const;
Completed in 1049 milliseconds
1
2
3
4
5
6
7
8
9
10
11