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

1 2

  /external/webkit/Source/WebCore/bindings/v8/
V8EventListener.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);
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...]
V8EventListener.cpp 38 V8EventListener::V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext)
39 : V8AbstractEventListener(isAttribute, worldContext)
V8AbstractEventListener.h 102 V8AbstractEventListener(bool isAttribute, const WorldContextHandle& worldContext);
V8AbstractEventListener.cpp 55 V8AbstractEventListener::V8AbstractEventListener(bool isAttribute, const WorldContextHandle& worldContext)
58 , m_isAttribute(isAttribute)
V8DOMWrapper.cpp 458 PassRefPtr<EventListener> V8DOMWrapper::getEventListener(v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup)
464 return V8EventListenerList::findWrapper(value, isAttribute);
467 return V8EventListenerList::findOrCreateWrapper<V8EventListener>(value, isAttribute);
469 return V8EventListenerList::findOrCreateWrapper<V8WorkerContextEventListener>(value, isAttribute);
V8DOMWrapper.h 90 static PassRefPtr<EventListener> getEventListener(v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup);
  /external/webkit/Source/WebCore/bindings/js/
JSErrorHandler.h 40 static PassRefPtr<JSErrorHandler> create(JSC::JSObject* listener, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorld* isolatedWorld)
42 return adoptRef(new JSErrorHandler(listener, wrapper, isAttribute, isolatedWorld));
48 JSErrorHandler(JSC::JSObject* function, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorld* isolatedWorld);
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; }
64 JSEventListener(JSC::JSObject* function, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorld* isolatedWorld);
JSErrorHandler.cpp 44 JSErrorHandler::JSErrorHandler(JSObject* function, JSObject* wrapper, bool isAttribute, DOMWrapperWorld* isolatedWorld)
45 : JSEventListener(function, wrapper, isAttribute, isolatedWorld)
JSEventListener.cpp 36 JSEventListener::JSEventListener(JSObject* function, JSObject* wrapper, bool isAttribute, DOMWrapperWorld* isolatedWorld)
39 , m_isAttribute(isAttribute)
  /external/webkit/Source/WebCore/dom/
EventListener.h 59 bool isAttribute() const { return virtualisAttribute(); }
EventTarget.cpp 278 if (entry[i].listener->isAttribute())
  /libcore/luni/src/main/java/org/xml/sax/helpers/
NamespaceSupport.java 339 * @param isAttribute A flag indicating whether this is an
348 boolean isAttribute)
350 String myParts[] = currentContext.processName(qName, isAttribute);
635 * @param isAttribute true if this is an attribute name.
642 String [] processName (String qName, boolean isAttribute)
651 if (isAttribute) {
676 if (isAttribute) {
700 || (!isAttribute && "xmlns".equals (prefix))) {
ParserAdapter.java 735 * @param isAttribute true if this is an attribute name.
740 private String [] processName (String qName, boolean isAttribute,
745 isAttribute);
  /external/apache-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/values/
ValuesContentAssist.java 130 needTag, true /* isAttribute */, false /* isNew */,
192 boolean isAttribute = true;
196 prefix, needTag, isAttribute, isNew,
231 prefix, (char) 0 /*needTag*/, true /* isAttribute */, false /*isNew*/,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java 215 false /* isAttribute */, isNew, false /*isComplete*/,
248 wordPrefix, needTag, true /* isAttribute */, isNew, info.skipEndTag,
537 false /* isAttribute */,
595 boolean isAttribute, boolean isNew, boolean skipEndTag, int replaceLength) {
638 if (isAttribute) {
646 if (isAttribute) {
672 } else if (!isAttribute && isNew) {
696 assert isAttribute;
    [all...]
  /external/icu4c/common/
uloc_tag.c     [all...]
  /libcore/luni/src/test/java/libcore/xml/
DomTest.java     [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
StylesSidebarPane.js 256 var inlineStyle = { selectorText: "element.style", style: styles.inlineStyle, isAttribute: true };
283 var inlineStyle = { selectorText: WebInspector.UIString("Style Attribute"), style: parentStyles.inlineStyle, isAttribute: true, isInherited: true };
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorDOMAgent.cpp     [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 

Completed in 376 milliseconds

1 2