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

1 2 3 4 5

  /external/webkit/Source/WebCore/bindings/js/
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...]
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());
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));
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);
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...]
JSHTMLOptionsCollectionCustom.cpp 40 HTMLOptionsCollection* imp = static_cast<HTMLOptionsCollection*>(impl()); local
41 return jsNumber(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...]
JSWebKitAnimationCustom.cpp 37 WebKitAnimation* imp = impl(); local
38 int count = imp->iterationCount();
  /external/webkit/Source/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...]
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));
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...]
V8PerformanceCustom.cpp 45 Performance* imp = V8Performance::toNative(info.Holder()); local
46 return toV8(imp->memory());
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());
V8DeviceOrientationEventCustom.cpp 44 DeviceOrientationEvent* imp = V8DeviceOrientationEvent::toNative(holder); local
45 if (!imp->orientation()->canProvideAlpha())
47 return v8::Number::New(imp->orientation()->alpha());
54 DeviceOrientationEvent* imp = V8DeviceOrientationEvent::toNative(holder); local
55 if (!imp->orientation()->canProvideBeta())
57 return v8::Number::New(imp->orientation()->beta());
64 DeviceOrientationEvent* imp = V8DeviceOrientationEvent::toNative(holder); local
65 if (!imp->orientation()->canProvideGamma())
67 return v8::Number::New(imp->orientation()->gamma());
72 DeviceOrientationEvent* imp = V8DeviceOrientationEvent::toNative(args.Holder()) local
    [all...]
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));
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]));
V8ConsoleCustom.cpp 54 Console* imp = V8Console::toNative(info.Holder()); local
55 const ProfilesArray& profiles = imp->profiles();
68 Console* imp = V8Console::toNative(args.Holder()); local
71 imp->trace(scriptArguments.release(), callStack);
78 Console* imp = V8Console::toNative(args.Holder()); local
82 imp->assertCondition(condition, scriptArguments.release(), callStack);
90 Console* imp = V8Console::toNative(args.Holder()); local
95 imp->profile(title, ScriptState::current(), callStack);
102 Console* imp = V8Console::toNative(args.Holder()); local
107 imp->profileEnd(title, ScriptState::current(), callStack)
115 Console* imp = V8Console::toNative(info.Holder()); local
    [all...]
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));
V8WebKitAnimationCustom.cpp 42 WebKitAnimation* imp = V8WebKitAnimation::toNative(holder); local
43 int count = imp->iterationCount();
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());
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));
  /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/Source/WebCore/bindings/scripts/test/V8/
V8TestObj.cpp 58 TestObj* imp = V8TestObj::toNative(info.Holder()); local
59 return v8::Integer::New(imp->readOnlyIntAttr());
65 TestObj* imp = V8TestObj::toNative(info.Holder()); local
66 return v8String(imp->readOnlyStringAttr());
72 TestObj* imp = V8TestObj::toNative(info.Holder()); local
73 RefPtr<TestObj> result = imp->readOnlyTestObjAttr();
86 TestObj* imp = V8TestObj::toNative(info.Holder()); local
87 return v8::Integer::New(imp->shortAttr());
93 TestObj* imp = V8TestObj::toNative(info.Holder()); local
95 imp->setShortAttr(v)
102 TestObj* imp = V8TestObj::toNative(info.Holder()); local
109 TestObj* imp = V8TestObj::toNative(info.Holder()); local
118 TestObj* imp = V8TestObj::toNative(info.Holder()); local
125 TestObj* imp = V8TestObj::toNative(info.Holder()); local
134 TestObj* imp = V8TestObj::toNative(info.Holder()); local
141 TestObj* imp = V8TestObj::toNative(info.Holder()); local
150 TestObj* imp = V8TestObj::toNative(info.Holder()); local
157 TestObj* imp = V8TestObj::toNative(info.Holder()); local
166 TestObj* imp = V8TestObj::toNative(info.Holder()); local
173 TestObj* imp = V8TestObj::toNative(info.Holder()); local
182 TestObj* imp = V8TestObj::toNative(info.Holder()); local
189 TestObj* imp = V8TestObj::toNative(info.Holder()); local
198 TestObj* imp = V8TestObj::toNative(info.Holder()); local
205 TestObj* imp = V8TestObj::toNative(info.Holder()); local
214 TestObj* imp = V8TestObj::toNative(info.Holder()); local
221 TestObj* imp = V8TestObj::toNative(info.Holder()); local
230 TestObj* imp = V8TestObj::toNative(info.Holder()); local
237 TestObj* imp = V8TestObj::toNative(info.Holder()); local
246 TestObj* imp = V8TestObj::toNative(info.Holder()); local
253 TestObj* imp = V8TestObj::toNative(info.Holder()); local
262 TestObj* imp = V8TestObj::toNative(info.Holder()); local
269 TestObj* imp = V8TestObj::toNative(info.Holder()); local
278 TestObj* imp = V8TestObj::toNative(info.Holder()); local
285 TestObj* imp = V8TestObj::toNative(info.Holder()); local
294 TestObj* imp = V8TestObj::toNative(info.Holder()); local
301 TestObj* imp = V8TestObj::toNative(info.Holder()); local
310 TestObj* imp = V8TestObj::toNative(info.Holder()); local
317 TestObj* imp = V8TestObj::toNative(info.Holder()); local
326 TestObj* imp = V8TestObj::toNative(info.Holder()); local
333 TestObj* imp = V8TestObj::toNative(info.Holder()); local
342 TestObj* imp = V8TestObj::toNative(info.Holder()); local
349 TestObj* imp = V8TestObj::toNative(info.Holder()); local
358 TestObj* imp = V8TestObj::toNative(info.Holder()); local
365 TestObj* imp = V8TestObj::toNative(info.Holder()); local
374 TestObj* imp = V8TestObj::toNative(info.Holder()); local
381 TestObj* imp = V8TestObj::toNative(info.Holder()); local
390 TestObj* imp = V8TestObj::toNative(info.Holder()); local
397 TestObj* imp = V8TestObj::toNative(info.Holder()); local
406 TestObj* imp = V8TestObj::toNative(info.Holder()); local
419 TestObj* imp = V8TestObj::toNative(info.Holder()); local
431 TestObj* imp = V8TestObj::toNative(info.Holder()); local
438 TestObj* imp = V8TestObj::toNative(info.Holder()); local
450 TestObj* imp = V8TestObj::toNative(info.Holder()); local
463 TestObj* imp = V8TestObj::toNative(info.Holder()); local
475 TestObj* imp = V8TestObj::toNative(info.Holder()); local
482 TestObj* imp = V8TestObj::toNative(info.Holder()); local
494 TestObj* imp = V8TestObj::toNative(info.Holder()); local
503 TestObj* imp = V8TestObj::toNative(info.Holder()); local
514 TestObj* imp = V8TestObj::toNative(info.Holder()); local
527 TestObj* imp = V8TestObj::toNative(info.Holder()); local
538 TestObj* imp = V8TestObj::toNative(info.Holder()); local
551 TestObj* imp = V8TestObj::toNative(info.Holder()); local
562 TestObj* imp = V8TestObj::toNative(info.Holder()); local
573 TestObj* imp = V8TestObj::toNative(info.Holder()); local
580 TestObj* imp = V8TestObj::toNative(info.Holder()); local
589 TestObj* imp = V8TestObj::toNative(info.Holder()); local
596 TestObj* imp = V8TestObj::toNative(info.Holder()); local
605 TestObj* imp = V8TestObj::toNative(info.Holder()); local
612 TestObj* imp = V8TestObj::toNative(info.Holder()); local
619 TestObj* imp = V8TestObj::toNative(info.Holder()); local
628 TestObj* imp = V8TestObj::toNative(info.Holder()); local
635 TestObj* imp = V8TestObj::toNative(args.Holder()); local
643 TestObj* imp = V8TestObj::toNative(args.Holder()); local
654 TestObj* imp = V8TestObj::toNative(args.Holder()); local
661 TestObj* imp = V8TestObj::toNative(args.Holder()); local
671 TestObj* imp = V8TestObj::toNative(args.Holder()); local
678 TestObj* imp = V8TestObj::toNative(args.Holder()); local
719 TestObj* imp = V8TestObj::toNative(args.Holder()); local
731 TestObj* imp = V8TestObj::toNative(args.Holder()); local
750 TestObj* imp = V8TestObj::toNative(args.Holder()); local
764 TestObj* imp = V8TestObj::toNative(args.Holder()); local
780 TestObj* imp = V8TestObj::toNative(args.Holder()); local
824 TestObj* imp = V8TestObj::toNative(args.Holder()); local
835 TestObj* imp = V8TestObj::toNative(args.Holder()); local
847 TestObj* imp = V8TestObj::toNative(args.Holder()); local
867 TestObj* imp = V8TestObj::toNative(args.Holder()); local
879 TestObj* imp = V8TestObj::toNative(args.Holder()); local
899 TestObj* imp = V8TestObj::toNative(args.Holder()); local
910 TestObj* imp = V8TestObj::toNative(args.Holder()); local
921 TestObj* imp = V8TestObj::toNative(args.Holder()); local
940 TestObj* imp = V8TestObj::toNative(args.Holder()); local
959 TestObj* imp = V8TestObj::toNative(args.Holder()); local
970 TestObj* imp = V8TestObj::toNative(args.Holder()); local
983 TestObj* imp = V8TestObj::toNative(args.Holder()); local
997 TestObj* imp = V8TestObj::toNative(args.Holder()); local
1012 TestObj* imp = V8TestObj::toNative(args.Holder()); local
1023 TestObj* imp = V8TestObj::toNative(args.Holder()); local
1035 TestObj* imp = V8TestObj::toNative(args.Holder()); local
1049 TestObj* imp = V8TestObj::toNative(args.Holder()); local
1059 TestObj* imp = V8TestObj::toNative(args.Holder()); local
1073 TestObj* imp = V8TestObj::toNative(args.Holder()); local
1082 TestObj* imp = V8TestObj::toNative(args.Holder()); local
1091 TestObj* imp = V8TestObj::toNative(args.Holder()); local
1136 TestObj* imp = V8TestObj::toNative(args.Holder()); local
1145 TestObj* imp = V8TestObj::toNative(args.Holder()); local
    [all...]

Completed in 291 milliseconds

1 2 3 4 5