HomeSort by relevance Sort by last modified time
    Searched refs:isAttribute (Results 1 - 21 of 21) sorted by null

  /external/webkit/WebCore/bindings/v8/custom/
V8CustomEventListener.h 47 static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext)
49 return adoptRef(new V8EventListener(listener, isAttribute, worldContext));
53 V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext);
V8CustomEventListener.cpp 38 V8EventListener::V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext)
39 : V8AbstractEventListener(isAttribute, worldContext)
  /external/webkit/WebCore/bindings/v8/
V8EventListenerList.h 46 static PassRefPtr<V8EventListener> findWrapper(v8::Local<v8::Value> value, bool isAttribute)
52 v8::Handle<v8::String> wrapperProperty = getHiddenProperty(isAttribute);
57 static PassRefPtr<V8EventListener> findOrCreateWrapper(v8::Local<v8::Value>, bool isAttribute);
59 static void clearWrapper(v8::Handle<v8::Object> listenerObject, bool isAttribute)
61 v8::Handle<v8::String> wrapperProperty = getHiddenProperty(isAttribute);
76 static inline v8::Handle<v8::String> getHiddenProperty(bool isAttribute)
78 return isAttribute ? V8HiddenPropertyName::attributeListener() : V8HiddenPropertyName::listener();
83 PassRefPtr<V8EventListener> V8EventListenerList::findOrCreateWrapper(v8::Local<v8::Value> value, bool isAttribute)
90 v8::Handle<v8::String> wrapperProperty = getHiddenProperty(isAttribute);
96 PassRefPtr<V8EventListener> wrapperPtr = WrapperType::create(object, isAttribute, WorldContextHandle(UseCurrentWorld))
    [all...]
V8DOMWrapper.cpp 469 PassRefPtr<EventListener> V8DOMWrapper::getEventListener(Node* node, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup)
471 return (lookup == ListenerFindOnly) ? V8EventListenerList::findWrapper(value, isAttribute) : V8EventListenerList::findOrCreateWrapper<V8EventListener>(value, isAttribute);
475 PassRefPtr<EventListener> V8DOMWrapper::getEventListener(SVGElementInstance* element, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup)
477 return getEventListener(element->correspondingElement(), value, isAttribute, lookup);
484 PassRefPtr<EventListener> V8DOMWrapper::getEventListener(AbstractWorker* worker, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup)
489 return workerContextProxy->findOrCreateEventListener(value, isAttribute, lookup == ListenerFindOnly);
492 return (lookup == ListenerFindOnly) ? V8EventListenerList::findWrapper(value, isAttribute) : V8EventListenerList::findOrCreateWrapper<V8EventListener>(value, isAttribute);
497 PassRefPtr<EventListener> V8DOMWrapper::getEventListener(Notification* notification, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup
    [all...]
V8DOMWrapper.h 134 static PassRefPtr<EventListener> getEventListener(Node* node, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup);
136 static PassRefPtr<EventListener> getEventListener(SVGElementInstance* element, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup);
138 static PassRefPtr<EventListener> getEventListener(AbstractWorker* worker, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup);
141 static PassRefPtr<EventListener> getEventListener(Notification* notification, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup);
144 static PassRefPtr<EventListener> getEventListener(WorkerContext* workerContext, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup);
146 static PassRefPtr<EventListener> getEventListener(XMLHttpRequestUpload* upload, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup);
149 static PassRefPtr<EventListener> getEventListener(EventSource* eventTarget, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup);
152 static PassRefPtr<EventListener> getEventListener(EventTarget* eventTarget, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup);
154 static PassRefPtr<EventListener> getEventListener(V8Proxy* proxy, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup);
V8AbstractEventListener.h 100 V8AbstractEventListener(bool isAttribute, const WorldContextHandle& worldContext);
V8AbstractEventListener.cpp 54 V8AbstractEventListener::V8AbstractEventListener(bool isAttribute, const WorldContextHandle& worldContext)
57 , m_isAttribute(isAttribute)
  /external/webkit/WebCore/bindings/js/
JSEventListener.h 33 static PassRefPtr<JSEventListener> create(JSC::JSObject* listener, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorld* isolatedWorld)
35 return adoptRef(new JSEventListener(listener, wrapper, isAttribute, isolatedWorld));
50 bool isAttribute() const { return m_isAttribute; }
67 JSEventListener(JSC::JSObject* function, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorld* isolatedWorld);
JSEventListener.cpp 34 JSEventListener::JSEventListener(JSObject* function, JSObject* wrapper, bool isAttribute, DOMWrapperWorld* isolatedWorld)
38 , m_isAttribute(isAttribute)
  /external/webkit/WebCore/dom/
EventListener.h 59 bool isAttribute() const { return virtualisAttribute(); }
EventTarget.cpp 230 if (entry[i].listener->isAttribute())
  /dalvik/libcore/xml/src/main/java/org/xml/sax/helpers/
NamespaceSupport.java 340 * @param isAttribute A flag indicating whether this is an
349 boolean isAttribute)
351 String myParts[] = currentContext.processName(qName, isAttribute);
638 * @param isAttribute true if this is an attribute name.
645 String [] processName (String qName, boolean isAttribute)
654 if (isAttribute) {
679 if (isAttribute) {
703 || (!isAttribute && "xmlns".equals (prefix))) {
ParserAdapter.java 740 * @param isAttribute true if this is an attribute name.
745 private String [] processName (String qName, boolean isAttribute,
750 isAttribute);
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
NamespaceSupport2.java 236 * @param isAttribute A flag indicating whether this is an
245 boolean isAttribute)
247 String[] name=currentContext.processName(qName, isAttribute);
565 * @param isAttribute true if this is an attribute name.
572 String [] processName (String qName, boolean isAttribute)
578 if (isAttribute) {
604 if (isAttribute || defaultNS == null) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java 137 boolean isAttribute = false;
163 isAttribute = true;
205 isAttribute, selectionLength);
    [all...]
  /external/webkit/WebCore/inspector/front-end/
StylesSidebarPane.js 160 var inlineStyle = { selectorText: WebInspector.UIString("Style Attribute"), style: node.style, isAttribute: true };
293 var isAttribute = styleRule.isAttribute;
294 delete styleRule.isAttribute;
309 else if (isAttribute && styleRule.style.length === 0)
    [all...]
  /dalvik/libcore/xml/src/test/java/tests/xml/
DomTest.java     [all...]
  /external/webkit/WebCore/inspector/
InspectorDOMAgent.cpp 540 value.set("isAttribute", eventListener->isAttribute());
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 1134 milliseconds