Home
last modified time | relevance | path

Searched refs:isAttribute (Results 1 – 18 of 18) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/
DV8EventListenerList.h46 static PassRefPtr<V8EventListener> findWrapper(v8::Local<v8::Value> value, bool isAttribute) in findWrapper() argument
52 v8::Handle<v8::String> wrapperProperty = getHiddenProperty(isAttribute); in findWrapper()
57 … static PassRefPtr<V8EventListener> findOrCreateWrapper(v8::Local<v8::Value>, bool isAttribute);
59 static void clearWrapper(v8::Handle<v8::Object> listenerObject, bool isAttribute) in clearWrapper() argument
61 v8::Handle<v8::String> wrapperProperty = getHiddenProperty(isAttribute); in clearWrapper()
76 static inline v8::Handle<v8::String> getHiddenProperty(bool isAttribute) in getHiddenProperty() argument
78 … return isAttribute ? V8HiddenPropertyName::attributeListener() : V8HiddenPropertyName::listener(); in getHiddenProperty()
83 …entListener> V8EventListenerList::findOrCreateWrapper(v8::Local<v8::Value> value, bool isAttribute) in findOrCreateWrapper() argument
90 v8::Handle<v8::String> wrapperProperty = getHiddenProperty(isAttribute); in findOrCreateWrapper()
96 …PassRefPtr<V8EventListener> wrapperPtr = WrapperType::create(object, isAttribute, WorldContextHand… in findOrCreateWrapper()
DV8EventListener.h47 …static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, const … in create() argument
49 return adoptRef(new V8EventListener(listener, isAttribute, worldContext)); in create()
53 …V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldC…
DV8EventListener.cpp38 V8EventListener::V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, const WorldConte… in V8EventListener() argument
39 : V8AbstractEventListener(isAttribute, worldContext) in V8EventListener()
DV8AbstractEventListener.cpp55 V8AbstractEventListener::V8AbstractEventListener(bool isAttribute, const WorldContextHandle& worldC… in V8AbstractEventListener() argument
58 , m_isAttribute(isAttribute) in V8AbstractEventListener()
DV8DOMWrapper.cpp458 …tener> V8DOMWrapper::getEventListener(v8::Local<v8::Value> value, bool isAttribute, ListenerLookup… in getEventListener() argument
464 return V8EventListenerList::findWrapper(value, isAttribute); in getEventListener()
467 return V8EventListenerList::findOrCreateWrapper<V8EventListener>(value, isAttribute); in getEventListener()
469 … return V8EventListenerList::findOrCreateWrapper<V8WorkerContextEventListener>(value, isAttribute); in getEventListener()
DV8AbstractEventListener.h102 V8AbstractEventListener(bool isAttribute, const WorldContextHandle& worldContext);
DV8DOMWrapper.h90 …efPtr<EventListener> getEventListener(v8::Local<v8::Value> value, bool isAttribute, ListenerLookup…
/external/webkit/Source/WebCore/bindings/js/
DJSEventListener.h33 …Listener> create(JSC::JSObject* listener, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorl… in create() argument
35 return adoptRef(new JSEventListener(listener, wrapper, isAttribute, isolatedWorld)); in create()
50 bool isAttribute() const { return m_isAttribute; } in isAttribute() function
64 …JSEventListener(JSC::JSObject* function, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorld…
DJSErrorHandler.h40 …rHandler> create(JSC::JSObject* listener, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorl… in create() argument
42 return adoptRef(new JSErrorHandler(listener, wrapper, isAttribute, isolatedWorld)); in create()
48 …JSErrorHandler(JSC::JSObject* function, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorld*…
DJSErrorHandler.cpp44 JSErrorHandler::JSErrorHandler(JSObject* function, JSObject* wrapper, bool isAttribute, DOMWrapperW… in JSErrorHandler() argument
45 : JSEventListener(function, wrapper, isAttribute, isolatedWorld) in JSErrorHandler()
DJSEventListener.cpp36 JSEventListener::JSEventListener(JSObject* function, JSObject* wrapper, bool isAttribute, DOMWrappe… in JSEventListener() argument
39 , m_isAttribute(isAttribute) in JSEventListener()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DNamespaceSupport2.java245 boolean isAttribute) in processName() argument
247 String[] name=currentContext.processName(qName, isAttribute); in processName()
572 String [] processName (String qName, boolean isAttribute) in processName() argument
578 if (isAttribute) { in processName()
604 if (isAttribute || defaultNS == null) { in processName()
/external/webkit/Source/WebCore/dom/
DEventListener.h59 bool isAttribute() const { return virtualisAttribute(); } in isAttribute() function
DEventTarget.cpp278 if (entry[i].listener->isAttribute()) in getAttributeEventListener()
/external/webkit/Source/WebCore/inspector/front-end/
DStylesSidebarPane.js256 … var inlineStyle = { selectorText: "element.style", style: styles.inlineStyle, isAttribute: true }; property
283 …nspector.UIString("Style Attribute"), style: parentStyles.inlineStyle, isAttribute: true, isInheri… property
/external/webkit/Source/WebCore/inspector/
DInspectorDOMAgent.cpp1116 value->setBoolean("isAttribute", eventListener->isAttribute()); in buildObjectForEventListener()
/external/webkit/Source/WebCore/
DChangeLog-2009-06-1617154 Rename "isInline" => "isAttribute" in v8 bindings (jsc was done in r42699).
18217 "isInline" => "isAttribute".
18228 (WebCore::JSEventListener::isAttribute):
18237 (WebCore::EventListener::isAttribute):
DChangeLog-2010-01-2953138 (WebCore::getEventListener): Added isAttribute parameter.
75083 [V8] Fix the problem that isAttribute is set to false for onerror and