Searched defs:imp (Results 1 - 25 of 67) sorted by relevance

123

/external/webkit/Source/WebCore/bindings/js/
H A DJSAudioBufferSourceNodeCustom.cpp41 AudioBufferSourceNode* imp = static_cast<AudioBufferSourceNode*>(impl()); local
42 imp->setBuffer(toAudioBuffer(value));
H A DJSConvolverNodeCustom.cpp41 ConvolverNode* imp = static_cast<ConvolverNode*>(impl()); local
42 imp->setBuffer(toAudioBuffer(value));
H A DJSFileReaderCustom.cpp47 FileReader* imp = impl(); local
48 if (imp->readType() == FileReaderLoader::ReadAsArrayBuffer)
49 return toJS(exec, globalObject(), WTF::getPtr(imp->arrayBufferResult()));
50 return jsOwnedStringOrNull(exec, imp->stringResult());
H A DJSWebKitAnimationCustom.cpp37 WebKitAnimation* imp = impl(); local
38 int count = imp->iterationCount();
H A DJSCoordinatesCustom.cpp37 Coordinates* imp = impl(); local
38 if (!imp->canProvideAltitude())
40 return jsNumber(imp->altitude());
45 Coordinates* imp = impl(); local
46 if (!imp->canProvideAltitudeAccuracy())
48 return jsNumber(imp->altitudeAccuracy());
53 Coordinates* imp = impl(); local
54 if (!imp->canProvideHeading())
56 return jsNumber(imp->heading());
61 Coordinates* imp local
[all...]
H A DJSHTMLFrameElementCustom.cpp44 static inline bool allowSettingJavascriptURL(ExecState* exec, HTMLFrameElement* imp, const String& value) argument
47 Document* contentDocument = imp->contentDocument();
56 HTMLFrameElement* imp = static_cast<HTMLFrameElement*>(impl()); local
59 if (!allowSettingJavascriptURL(exec, imp, locationValue))
62 imp->setLocation(locationValue);
H A DJSDeviceOrientationEventCustom.cpp40 DeviceOrientationEvent* imp = static_cast<DeviceOrientationEvent*>(impl()); local
41 if (!imp->orientation()->canProvideAlpha())
43 return jsNumber(imp->orientation()->alpha());
48 DeviceOrientationEvent* imp = static_cast<DeviceOrientationEvent*>(impl()); local
49 if (!imp->orientation()->canProvideBeta())
51 return jsNumber(imp->orientation()->beta());
56 DeviceOrientationEvent* imp = static_cast<DeviceOrientationEvent*>(impl()); local
57 if (!imp->orientation()->canProvideGamma())
59 return jsNumber(imp->orientation()->gamma());
76 DeviceOrientationEvent* imp local
[all...]
H A DJSDirectoryEntryCustom.cpp50 DirectoryEntry* imp = static_cast<DirectoryEntry*>(impl()); local
57 imp->getFile(path);
90 imp->getFile(path, flags, successCallback, errorCallback);
96 DirectoryEntry* imp = static_cast<DirectoryEntry*>(impl()); local
103 imp->getDirectory(path);
136 imp->getDirectory(path, flags, successCallback, errorCallback);
H A DJSDirectoryEntrySyncCustom.cpp67 DirectoryEntrySync* imp = static_cast<DirectoryEntrySync*>(impl()); local
77 JSC::JSValue result = toJS(exec, this->globalObject(), WTF::getPtr(imp->getFile(path, flags, ec)));
84 DirectoryEntrySync* imp = static_cast<DirectoryEntrySync*>(impl()); local
94 JSC::JSValue result = toJS(exec, this->globalObject(), WTF::getPtr(imp->getDirectory(path, flags, ec)));
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8PerformanceCustom.cpp45 Performance* imp = V8Performance::toNative(info.Holder()); local
46 return toV8(imp->memory());
H A DV8HTMLDataGridElementCustom.cpp47 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());
H A DV8HTMLFrameSetElementCustom.cpp51 HTMLFrameSetElement* imp = V8HTMLFrameSetElement::toNative(info.Holder()); local
52 Node* frameNode = imp->children()->namedItem(v8StringToAtomicWebCoreString(name));
H A DV8HTMLOutputElementCustom.cpp44 HTMLOutputElement* imp = V8HTMLOutputElement::toNative(info.Holder()); local
45 return toV8(imp->htmlFor());
51 HTMLOutputElement* imp = V8HTMLOutputElement::toNative(info.Holder()); local
52 imp->setFor(toWebCoreString(value));
H A DV8WebKitAnimationCustom.cpp42 WebKitAnimation* imp = V8WebKitAnimation::toNative(holder); local
43 int count = imp->iterationCount();
H A DV8CoordinatesCustom.cpp39 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 local
[all...]
H A DV8DirectoryEntryCustom.cpp52 DirectoryEntry* imp = V8DirectoryEntry::toNative(args.Holder()); local
55 imp->getDirectory(path);
88 imp->getDirectory(path, flags, successCallback, errorCallback);
95 DirectoryEntry* imp = V8DirectoryEntry::toNative(args.Holder()); local
98 imp->getFile(path);
131 imp->getFile(path, flags, successCallback, errorCallback);
H A DV8FileReaderCustom.cpp68 FileReader* imp = V8FileReader::toNative(holder); local
69 if (imp->readType() == FileReaderLoader::ReadAsArrayBuffer)
70 return toV8(imp->arrayBufferResult());
71 return v8StringOrNull(imp->stringResult());
H A DV8HTMLFormElementCustom.cpp58 HTMLFormElement* imp = V8HTMLFormElement::toNative(info.Holder()); local
66 imp->getNamedElements(v, elements);
74 imp->getNamedElements(v, elements);
H A DV8HTMLInputElementCustom.cpp45 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 local
98 HTMLInputElement* imp = V8HTMLInputElement::toNative(holder); local
[all...]
H A DV8HTMLSelectElementCustom.cpp69 HTMLSelectElement* imp = V8HTMLSelectElement::toNative(args.Holder()); local
70 return removeElement(imp, args);
73 v8::Handle<v8::Value> removeElement(HTMLSelectElement* imp, const v8::Arguments& args) argument
77 imp->remove(element->index());
81 imp->remove(toInt32(args[0]));
H A DV8NamedNodeMapCustom.cpp49 NamedNodeMap* imp = V8NamedNodeMap::toNative(info.Holder()); local
50 RefPtr<Node> result = imp->item(index);
70 NamedNodeMap* imp = V8NamedNodeMap::toNative(info.Holder());
71 RefPtr<Node> result = imp->getNamedItem(toWebCoreString(name));
H A DV8SVGLengthCustom.cpp46 SVGLength& imp = wrapper->propertyReference(); local
48 float value = imp.value(wrapper->contextElement(), ec);
70 SVGLength& imp = wrapper->propertyReference(); local
72 imp.setValue(static_cast<float>(value->NumberValue()), wrapper->contextElement(), ec);
91 SVGLength& imp = wrapper->propertyReference();
94 imp.convertToSpecifiedUnits(unitType, wrapper->contextElement(), ec);
/external/webkit/Source/WebCore/bridge/
H A DNP_jsobject.h46 JSC::JSObject* imp; member in struct:JavaScriptObject
/external/webkit/Source/WebCore/bindings/objc/
H A DWebScriptObjectPrivate.h52 - (id)_initWithJSObject:(JSC::JSObject*)imp originRootObject:(PassRefPtr<JSC::Bindings::RootObject>)originRootObject rootObject:(PassRefPtr<JSC::Bindings::RootObject>)rootObject;
53 - (void)_setImp:(JSC::JSObject*)imp originRootObject:(PassRefPtr<JSC::Bindings::RootObject>)originRootObject rootObject:(PassRefPtr<JSC::Bindings::RootObject>)rootObject;
75 JSC::JSObject *imp; variable
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp3-0x.cpp47 auto imp = m.getImplementation<int, int, int>(); local

Completed in 280 milliseconds

123