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));
V8StyleSheetListCustom.cpp 50 StyleSheetList* imp = V8StyleSheetList::toNative(info.Holder());
51 HTMLStyleElement* item = imp->getNamedItem(toWebCoreString(name));
V8XSLTProcessorCustom.cpp 62 XSLTProcessor* imp = V8XSLTProcessor::toNative(args.Holder());
65 imp->importStylesheet(node);
76 XSLTProcessor* imp = V8XSLTProcessor::toNative(args.Holder());
80 RefPtr<DocumentFragment> result = imp->transformToFragment(source, owner);
92 XSLTProcessor* imp = V8XSLTProcessor::toNative(args.Holder());
98 RefPtr<Document> result = imp->transformToDocument(source);
112 XSLTProcessor* imp = V8XSLTProcessor::toNative(args.Holder());
117 imp->setParameter(namespaceURI, localName, value);
129 XSLTProcessor* imp = V8XSLTProcessor::toNative(args.Holder());
133 String result = imp->getParameter(namespaceURI, localName)
    [all...]
V8HTMLFrameSetElementCustom.cpp 51 HTMLFrameSetElement* imp = V8HTMLFrameSetElement::toNative(info.Holder()); local
52 Node* frameNode = imp->children()->namedItem(v8StringToAtomicWebCoreString(name));
V8IndexedDatabaseRequestCustom.cpp 43 IndexedDatabaseRequest* imp = V8IndexedDatabaseRequest::toNative(args.Holder()); local
53 imp->open(name, description, modifyDatabase, ec);
V8NamedNodeMapCustom.cpp 47 NamedNodeMap* imp = V8NamedNodeMap::toNative(info.Holder()); local
48 RefPtr<Node> result = imp->item(index);
68 NamedNodeMap* imp = V8NamedNodeMap::toNative(info.Holder());
69 RefPtr<Node> result = imp->getNamedItem(toWebCoreString(name));
V8HTMLAllCollectionCustom.cpp 90 HTMLAllCollection* imp = V8HTMLAllCollection::toNative(info.Holder());
91 return getNamedItems(imp, v8StringToAtomicWebCoreString(name));
97 HTMLAllCollection* imp = V8HTMLAllCollection::toNative(args.Holder()); local
98 return getItem(imp, args[0]);
104 HTMLAllCollection* imp = V8HTMLAllCollection::toNative(args.Holder()); local
105 v8::Handle<v8::Value> result = getNamedItems(imp, toWebCoreString(args[0]));
119 HTMLAllCollection* imp = V8HTMLAllCollection::toNative(args.Holder());
122 return getItem(imp, args[0]);
131 Node* node = imp->namedItem(name);
136 node = imp->nextNamedItem(name)
    [all...]
V8HTMLCollectionCustom.cpp 90 HTMLCollection* imp = V8HTMLCollection::toNative(info.Holder());
91 return getNamedItems(imp, v8StringToAtomicWebCoreString(name));
97 HTMLCollection* imp = V8HTMLCollection::toNative(args.Holder()); local
98 return getItem(imp, args[0]);
104 HTMLCollection* imp = V8HTMLCollection::toNative(args.Holder()); local
105 v8::Handle<v8::Value> result = getNamedItems(imp, toWebCoreString(args[0]));
119 HTMLCollection* imp = V8HTMLCollection::toNative(args.Holder());
122 return getItem(imp, args[0]);
131 Node* node = imp->namedItem(name);
136 node = imp->nextNamedItem(name)
    [all...]
V8HTMLOptionsCollectionCustom.cpp 50 HTMLOptionsCollection* imp = V8HTMLOptionsCollection::toNative(args.Holder()); local
51 HTMLSelectElement* base = static_cast<HTMLSelectElement*>(imp->base());
62 HTMLOptionsCollection* imp = V8HTMLOptionsCollection::toNative(args.Holder()); local
67 imp->add(option, ec);
79 imp->add(option, index, ec);
91 HTMLOptionsCollection* imp = V8HTMLOptionsCollection::toNative(info.Holder()); local
92 int v = imp->length();
99 HTMLOptionsCollection* imp = V8HTMLOptionsCollection::toNative(info.Holder()); local
112 imp->setLength(value->Uint32Value(), ec);
V8LocationCustom.cpp 66 Location* imp = V8Location::toNative(holder); local
69 Frame* frame = imp->frame();
89 Location* imp = V8Location::toNative(holder); local
92 Frame* frame = imp->frame();
109 Location* imp = V8Location::toNative(holder); local
112 Frame* frame = imp->frame();
126 Location* imp = V8Location::toNative(holder); local
128 Frame* frame = imp->frame();
146 Location* imp = V8Location::toNative(holder); local
149 Frame* frame = imp->frame()
163 Location* imp = V8Location::toNative(holder); local
180 Location* imp = V8Location::toNative(holder); local
197 Location* imp = V8Location::toNative(holder); local
220 Location* imp = V8Location::toNative(holder); local
238 Location* imp = V8Location::toNative(holder); local
257 Location* imp = V8Location::toNative(holder); local
271 Location* imp = V8Location::toNative(holder); local
286 Location* imp = V8Location::toNative(holder); local
307 Location* imp = V8Location::toNative(holder); local
338 Location* imp = V8Location::toNative(holder); local
349 Location* imp = V8Location::toNative(host); local
357 Location* imp = V8Location::toNative(host); local
    [all...]
  /external/icu4c/test/intltest/
simplethread.cpp 166 Win32ThreadImplementation *imp = new Win32ThreadImplementation; local
167 imp->fHandle = 0;
168 fImplementation = imp;
176 Win32ThreadImplementation *imp = (Win32ThreadImplementation*)fImplementation; local
177 if (imp != 0) {
178 if (imp->fHandle != 0) {
179 CloseHandle(imp->fHandle);
180 imp->fHandle = 0;
188 Win32ThreadImplementation *imp = (Win32ThreadImplementation*)fImplementation; local
189 if(imp->fHandle != NULL)
230 Win32ThreadImplementation *imp = (Win32ThreadImplementation*)fImplementation; local
332 PosixThreadImplementation *imp = (PosixThreadImplementation*)This->fImplementation; local
341 PosixThreadImplementation *imp = new PosixThreadImplementation; local
349 PosixThreadImplementation *imp = (PosixThreadImplementation*)fImplementation; local
363 PosixThreadImplementation *imp = (PosixThreadImplementation*)fImplementation; local
410 PosixThreadImplementation *imp = (PosixThreadImplementation*)fImplementation; local
    [all...]
  /external/webkit/WebCore/bridge/
NP_jsobject.h 46 JSC::JSObject* imp; member in struct:JavaScriptObject

Completed in 254 milliseconds

1 2 3