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

1 2 3

  /external/webkit/WebCore/bindings/js/
JSCoordinatesCustom.cpp 37 Coordinates* imp = impl(); local
38 if (!imp->canProvideAltitude())
40 return jsNumber(exec, imp->altitude());
45 Coordinates* imp = impl(); local
46 if (!imp->canProvideAltitudeAccuracy())
48 return jsNumber(exec, imp->altitudeAccuracy());
53 Coordinates* imp = impl(); local
54 if (!imp->canProvideHeading())
56 return jsNumber(exec, imp->heading());
61 Coordinates* imp = impl() local
    [all...]
JSHTMLFrameElementCustom.cpp 44 static inline bool allowSettingJavascriptURL(ExecState* exec, HTMLFrameElement* imp, const String& value)
47 Document* contentDocument = imp->contentDocument();
56 HTMLFrameElement* imp = static_cast<HTMLFrameElement*>(impl()); local
59 if (!allowSettingJavascriptURL(exec, imp, srcValue))
62 imp->setAttribute(srcAttr, srcValue);
67 HTMLFrameElement* imp = static_cast<HTMLFrameElement*>(impl()); local
70 if (!allowSettingJavascriptURL(exec, imp, locationValue))
73 imp->setLocation(locationValue);
JSSVGLengthCustom.cpp 31 JSSVGPODTypeWrapper<SVGLength>* imp = impl(); local
34 SVGLength podImp(*imp);
40 JSSVGPODTypeWrapper<SVGLength>* imp = impl(); local
43 SVGLength podImp(*imp);
46 imp->commitChange(podImp, this);
JSHTMLIFrameElementCustom.cpp 46 HTMLIFrameElement* imp = static_cast<HTMLIFrameElement*>(impl()); local
51 Document* contentDocument = imp->contentDocument();
56 imp->setAttribute(srcAttr, srcValue);
JSHTMLOptionsCollectionCustom.cpp 40 HTMLOptionsCollection* imp = static_cast<HTMLOptionsCollection*>(impl()); local
41 return jsNumber(exec, imp->length());
46 HTMLOptionsCollection* imp = static_cast<HTMLOptionsCollection*>(impl()); local
59 imp->setLength(newLength, ec);
65 HTMLOptionsCollection* imp = static_cast<HTMLOptionsCollection*>(impl()); local
66 HTMLSelectElement* base = static_cast<HTMLSelectElement*>(imp->base());
72 HTMLOptionsCollection* imp = static_cast<HTMLOptionsCollection*>(impl()); local
76 imp->add(option, ec);
85 imp->add(option, index, ec);
93 HTMLOptionsCollection* imp = static_cast<HTMLOptionsCollection*>(impl()) local
    [all...]
JSAttrCustom.cpp 45 Attr* imp = static_cast<Attr*>(impl()); local
48 Element* ownerElement = imp->ownerElement();
50 if (equalIgnoringCase(imp->name(), "src") && protocolIsJavaScript(deprecatedParseURL(attrValue))) {
58 imp->setValue(attrValue, ec);
JSElementCustom.cpp 82 Element* imp = impl(); local
83 if (!allowSettingSrcToJavascriptURL(exec, imp, name, value))
86 imp->setAttribute(name, value, ec);
100 Element* imp = impl(); local
101 if (!allowSettingSrcToJavascriptURL(exec, imp, newAttr->name(), newAttr->value()))
104 JSValue result = toJS(exec, globalObject(), WTF::getPtr(imp->setAttributeNode(newAttr, ec)));
116 Element* imp = impl(); local
117 if (!allowSettingSrcToJavascriptURL(exec, imp, qualifiedName, value))
120 imp->setAttributeNS(namespaceURI, qualifiedName, value, ec);
134 Element* imp = impl() local
    [all...]
JSSVGMatrixCustom.cpp 53 AffineTransform imp(*impl());
56 JSValue result = toJS(exec, globalObject(), JSSVGStaticPODTypeWrapper<AffineTransform>::create(imp.inverse()).get(), context);
58 if (!imp.isInvertible())
66 AffineTransform imp(*impl());
72 JSValue result = toJS(exec, globalObject(), JSSVGStaticPODTypeWrapper<AffineTransform>::create(imp.rotateFromVector(x, y)).get(), context);
  /external/webkit/WebCore/bindings/v8/custom/
V8CoordinatesCustom.cpp 39 Coordinates* imp = V8Coordinates::toNative(holder); local
40 if (!imp->canProvideAltitude())
42 return v8::Number::New(imp->altitude());
49 Coordinates* imp = V8Coordinates::toNative(holder); local
50 if (!imp->canProvideAltitudeAccuracy())
52 return v8::Number::New(imp->altitudeAccuracy());
59 Coordinates* imp = V8Coordinates::toNative(holder); local
60 if (!imp->canProvideHeading())
62 return v8::Number::New(imp->heading());
69 Coordinates* imp = V8Coordinates::toNative(holder) local
    [all...]
V8AttrCustom.cpp 45 Attr* imp = V8Attr::toNative(info.Holder()); local
47 Element* ownerElement = imp->ownerElement();
49 if (ownerElement && !V8BindingSecurity::allowSettingSrcToJavascriptURL(V8BindingState::Only(), ownerElement, imp->name(), attrValue))
53 imp->setValue(attrValue, ec);
V8HTMLInputElementCustom.cpp 45 HTMLInputElement* imp = V8HTMLInputElement::toNative(holder); local
47 if (!imp->canHaveSelection())
50 int v = imp->selectionStart();
58 HTMLInputElement* imp = V8HTMLInputElement::toNative(holder); local
60 if (!imp->canHaveSelection()) {
64 imp->setSelectionStart(value->Int32Value());
71 HTMLInputElement* imp = V8HTMLInputElement::toNative(holder); local
73 if (!imp->canHaveSelection())
76 int v = imp->selectionEnd();
84 HTMLInputElement* imp = V8HTMLInputElement::toNative(holder) local
98 HTMLInputElement* imp = V8HTMLInputElement::toNative(holder); local
    [all...]
V8HTMLDataGridElementCustom.cpp 47 HTMLDataGridElement* imp = V8DOMWrapper::convertDOMWrapperToNode<HTMLDataGridElement>(holder); local
48 DataGridDataSource* dataSource = imp->dataSource();
58 HTMLDataGridElement* imp = V8DOMWrapper::convertDOMWrapperToNode<HTMLDataGridElement>(holder); local
61 Frame *frame = imp->document()->frame();
64 imp->setDataSource(dataSource.get());
V8SVGLengthCustom.cpp 47 SVGLength imp = *wrapper; local
48 return v8::Number::New(imp.value(V8Proxy::svgContext(wrapper)));
55 SVGLength imp = *wrapper; local
57 imp.convertToSpecifiedUnits(toInt32(args[0]), context);
58 wrapper->commitChange(imp, context);
V8DataGridColumnListCustom.cpp 55 DataGridColumnList* imp = V8DataGridColumnList::toNative(info.Holder());
56 DataGridColumn* result = imp->itemWithName(toWebCoreString(name));