HomeSort by relevance Sort by last modified time
    Searched full:interfacename (Results 1 - 25 of 250) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTagNames.in 6 a interfaceName=HTMLAnchorElement
7 abbr interfaceName=HTMLElement
8 acronym interfaceName=HTMLElement
9 address interfaceName=HTMLElement
12 article interfaceName=HTMLElement
13 aside interfaceName=HTMLElement
15 b interfaceName=HTMLElement
17 basefont interfaceName=HTMLElement
18 bdi interfaceName=HTMLBDIElement, JSInterfaceName=HTMLElement
19 bdo interfaceName=HTMLElemen
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTagNames.in 63 hkern interfaceName=SVGHKernElement
74 mpath interfaceName=SVGMPathElement
84 svg interfaceName=SVGSVGElement
90 tspan interfaceName=SVGTSpanElement
94 vkern interfaceName=SVGVKernElement
SVGZoomEvent.h 48 virtual const AtomicString& interfaceName() const;
  /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/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);
ExceptionState.h 64 ExceptionState(Context context, const char* propertyName, const char* interfaceName, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
68 , m_interfaceName(interfaceName)
72 ExceptionState(Context context, const char* interfaceName, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
76 , m_interfaceName(interfaceName)
107 const char* interfaceName() const { return m_interfaceName; }
  /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...]
  /frameworks/base/core/java/android/net/
NetworkUtils.java 38 public native static int enableInterface(String interfaceName);
41 public native static int disableInterface(String interfaceName);
55 * @param interfaceName is the interface to reset
58 public native static int resetConnections(String interfaceName, int mask);
65 * @param interfaceName the name of the interface to configure
70 public native static boolean runDhcp(String interfaceName, DhcpResults dhcpResults);
75 * @param interfaceName the name of the interface to configure
80 public native static boolean runDhcpRenew(String interfaceName, DhcpResults dhcpResults);
84 * @param interfaceName the name of the interface for which the daemon
88 public native static boolean stopDhcp(String interfaceName);
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowWebView.java 96 public void addJavascriptInterface(Object obj, String interfaceName) {
97 javascriptInterfaces.put(interfaceName, obj);
100 public Object getJavascriptInterface(String interfaceName) {
101 return javascriptInterfaces.get(interfaceName);
  /libcore/luni/src/main/java/libcore/net/
RawSocket.java 46 protocolType, String interfaceName)
49 String interfaceName, short protocolType, byte[] destMac, byte[] packet,
62 public RawSocket(String interfaceName, short protocolType)
64 mInterfaceName = interfaceName;
  /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);
  /system/netd/
MDnsSdListener.h 117 void serviceRegister(SocketClient *cli, int requestId, const char *interfaceName,
122 const char *interfaceName, const char *serviceName, const char *regType,
127 void getAddrInfo(SocketClient *cli, int requestId, const char *interfaceName,
MDnsSdListener.cpp 155 const char *interfaceName, const char *serviceName, const char *serviceType,
159 interfaceName, serviceName, serviceType, domain, host, port, txtLen);
171 int interfaceInt = ifaceNameToI(interfaceName);
211 const char *interfaceName, const char *serviceName, const char *regType,
214 ALOGD("resolveService(%d, %s, %s, %s, %s)", requestId, interfaceName,
226 int interfaceInt = ifaceNameToI(interfaceName);
270 const char *interfaceName, uint32_t protocol, const char *hostname) {
271 if (VDBG) ALOGD("getAddrInfo(%d, %s %d, %s)", requestId, interfaceName, protocol, hostname);
281 int interfaceInt = ifaceNameToI(interfaceName);
427 char *interfaceName = NULL; // will use al
    [all...]
  /frameworks/base/core/java/android/net/arp/
ArpPeer.java 56 public ArpPeer(String interfaceName, InetAddress myAddr, String mac,
58 mInterfaceName = interfaceName;
135 String interfaceName = linkProperties.getInterfaceName();
151 ArpPeer peer = new ArpPeer(interfaceName, inetAddress, myMacAddress, gateway);
  /libcore/luni/src/main/native/
libcore_net_RawSocket.cpp 59 jshort protocolType, jstring interfaceName)
62 ScopedUtfChars ifname(env, interfaceName);
102 jstring interfaceName, jshort protocolType, jbyteArray destMac,
111 ScopedUtfChars ifname(env, interfaceName);
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
generate_bindings.pl 120 my $interfaceName = fileparse(basename($idlFile), ".idl");
137 # Record that this attribute is implemented by $interfaceName.
138 $attribute->extendedAttributes->{"ImplementedBy"} = $interfaceName unless $interface->extendedAttributes->{"LegacyImplementedInBaseClass"};
148 # Record that this method is implemented by $interfaceName.
149 $function->extendedAttributes->{"ImplementedBy"} = $interfaceName unless $interface->extendedAttributes->{"LegacyImplementedInBaseClass"};
159 # Record that this constant is implemented by $interfaceName.
160 $constant->extendedAttributes->{"ImplementedBy"} = $interfaceName unless $interface->extendedAttributes->{"LegacyImplementedInBaseClass"};
code_generator_v8.pm 295 my $interfaceName = shift;
313 return $idlFiles->{$interfaceName};
318 my $interfaceName = shift;
320 if (exists $cachedInterfaces->{$interfaceName}) {
321 return $cachedInterfaces->{$interfaceName};
325 my $filename = IDLFileForInterface($interfaceName)
326 or die("Could NOT find IDL file for interface \"$interfaceName\" $!\n");
328 print " | |> Parsing parent IDL \"$filename\" for interface \"$interfaceName\"\n" if $verbose;
335 if ($interface->name eq $interfaceName or $interface->isPartial) {
336 $cachedInterfaces->{$interfaceName} = $interface
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/events/
Event.cpp 108 const AtomicString& Event::interfaceName() const
115 return interfaceName() == name;
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
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontFaceLoadEvent.cpp 59 const AtomicString& CSSFontFaceLoadEvent::interfaceName() const

Completed in 1046 milliseconds

1 2 3 4 5 6 7 8 910