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

1 2 3 4

  /external/webkit/Source/WebCore/bindings/js/
JSAudioBufferSourceNodeCustom.cpp 41 AudioBufferSourceNode* imp = static_cast<AudioBufferSourceNode*>(impl()); local
42 imp->setBuffer(toAudioBuffer(value));
JSConvolverNodeCustom.cpp 41 ConvolverNode* imp = static_cast<ConvolverNode*>(impl()); local
42 imp->setBuffer(toAudioBuffer(value));
JSFileReaderCustom.cpp 47 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());
JSWebKitAnimationCustom.cpp 37 WebKitAnimation* imp = impl(); local
38 int count = imp->iterationCount();
JSCoordinatesCustom.cpp 37 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 = 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, locationValue))
62 imp->setLocation(locationValue);
JSDirectoryEntrySyncCustom.cpp 67 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)));
JSDeviceOrientationEventCustom.cpp 40 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 = static_cast<DeviceOrientationEvent*>(impl()) local
    [all...]
JSDirectoryEntryCustom.cpp 50 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);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLOutputElementCustom.cpp 44 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));
V8PerformanceCustom.cpp 45 Performance* imp = V8Performance::toNative(info.Holder()); local
46 return toV8(imp->memory());
V8FileReaderCustom.cpp 68 FileReader* imp = V8FileReader::toNative(holder); local
69 if (imp->readType() == FileReaderLoader::ReadAsArrayBuffer)
70 return toV8(imp->arrayBufferResult());
71 return v8StringOrNull(imp->stringResult());
V8HTMLFrameSetElementCustom.cpp 51 HTMLFrameSetElement* imp = V8HTMLFrameSetElement::toNative(info.Holder()); local
52 Node* frameNode = imp->children()->namedItem(v8StringToAtomicWebCoreString(name));
V8WebKitAnimationCustom.cpp 42 WebKitAnimation* imp = V8WebKitAnimation::toNative(holder); local
43 int count = imp->iterationCount();
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...]
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());
V8DirectoryEntryCustom.cpp 52 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);
V8HTMLFormElementCustom.cpp 58 HTMLFormElement* imp = V8HTMLFormElement::toNative(info.Holder()); local
66 imp->getNamedElements(v, elements);
74 imp->getNamedElements(v, elements);
V8HTMLSelectElementCustom.cpp 69 HTMLSelectElement* imp = V8HTMLSelectElement::toNative(args.Holder()); local
70 return removeElement(imp, args);
73 v8::Handle<v8::Value> removeElement(HTMLSelectElement* imp, const v8::Arguments& args)
77 imp->remove(element->index());
81 imp->remove(toInt32(args[0]));
V8NamedNodeMapCustom.cpp 49 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));
V8SVGLengthCustom.cpp 46 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);
V8ScriptProfileNodeCustom.cpp 45 ScriptProfileNode* imp = V8ScriptProfileNode::toNative(info.Holder()); local
46 const ProfileNodesList& children = imp->children();
58 ScriptProfileNode* imp = V8ScriptProfileNode::toNative(info.Holder()); local
59 return v8::Number::New(imp->callUID());
  /external/webkit/Source/WebCore/bridge/
NP_jsobject.h 46 JSC::JSObject* imp; member in struct:JavaScriptObject
  /external/webkit/Source/WebCore/bindings/objc/
WebScriptObjectPrivate.h 52 - (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/
p3-0x.cpp 47 auto imp = m.getImplementation<int, int, int>(); local

Completed in 235 milliseconds

1 2 3 4