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

1234

/external/chromium_org/tools/perf/
H A Drun_multipage_benchmarks6 import imp namespace
10 run_measurement = imp.load_source(
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8FileReaderCustom.cpp43 FileReader* imp = V8FileReader::toNative(holder); local
44 if (imp->readType() == FileReaderLoader::ReadAsArrayBuffer) {
45 v8SetReturnValueFast(info, imp->arrayBufferResult(), imp);
48 v8SetReturnValueStringOrNull(info, imp->stringResult(), info.GetIsolate());
H A DV8BiquadFilterNodeCustom.cpp36 BiquadFilterNode* imp = V8BiquadFilterNode::toNative(info.Holder()); local
42 if (!imp->setType(type))
50 imp->setType(type);
H A DV8XSLTProcessorCustom.cpp55 XSLTProcessor* imp = V8XSLTProcessor::toNative(info.Holder()); local
56 imp->setParameter(namespaceURI, localName, value);
67 XSLTProcessor* imp = V8XSLTProcessor::toNative(info.Holder()); local
68 String result = imp->getParameter(namespaceURI, localName);
83 XSLTProcessor* imp = V8XSLTProcessor::toNative(info.Holder()); local
84 imp->removeParameter(namespaceURI, localName);
H A DV8HTMLFormControlsCollectionCustom.cpp60 HTMLFormControlsCollection* imp = V8HTMLFormControlsCollection::toNative(info.Holder()); local
61 v8::Handle<v8::Value> result = getNamedItems(imp, name, info);
H A DV8OscillatorNodeCustom.cpp37 OscillatorNode* imp = V8OscillatorNode::toNative(holder); local
42 if (!ok || !imp->setType(type))
50 imp->setType(type);
H A DV8PannerNodeCustom.cpp36 PannerNode* imp = V8PannerNode::toNative(info.Holder()); local
42 if (!imp->setPanningModel(model))
50 imp->setPanningModel(model);
60 PannerNode* imp = V8PannerNode::toNative(info.Holder()); local
66 if (!imp->setDistanceModel(model))
74 imp->setDistanceModel(model);
H A DV8SVGLengthCustom.cpp46 SVGLength& imp = wrapper->propertyReference(); local
49 float value = imp.value(lengthContext, exceptionState);
68 SVGLength& imp = wrapper->propertyReference(); local
71 imp.setValue(static_cast<float>(value->NumberValue()), lengthContext, exceptionState);
93 SVGLength& imp = wrapper->propertyReference(); local
96 imp.convertToSpecifiedUnits(unitType, lengthContext, exceptionState);
H A DV8DeviceOrientationEventCustom.cpp37 DeviceOrientationEvent* imp = V8DeviceOrientationEvent::toNative(info.Holder()); local
52 imp->initDeviceOrientationEvent(type, bubbles, cancelable, orientation.get());
H A DV8HTMLAllCollectionCustom.cpp80 HTMLAllCollection* imp = V8HTMLAllCollection::toNative(info.Holder()); local
81 v8SetReturnValue(info, getItem(imp, info[0], info));
88 HTMLAllCollection* imp = V8HTMLAllCollection::toNative(info.Holder()); local
89 v8::Handle<v8::Value> result = getNamedItems(imp, name, info);
104 HTMLAllCollection* imp = V8HTMLAllCollection::toNative(info.Holder());
105 Node* ownerNode = imp->ownerNode();
111 v8SetReturnValue(info, getItem(imp, info[0], info));
121 if (Node* node = imp->namedItemWithIndex(name, index->Uint32Value())) {
122 v8SetReturnValueFast(info, node, imp);
H A DV8HTMLOptionsCollectionCustom.cpp70 HTMLOptionsCollection* imp = V8HTMLOptionsCollection::toNative(info.Holder()); local
71 getNamedItems(imp, name, info);
80 HTMLOptionsCollection* imp = V8HTMLOptionsCollection::toNative(info.Holder()); local
84 imp->add(option, exceptionState);
91 imp->add(option, index, exceptionState);
100 HTMLOptionsCollection* imp = V8HTMLOptionsCollection::toNative(info.Holder()); local
116 imp->setLength(newLength, exceptionState);
H A DV8HTMLPlugInElementCustom.cpp49 HTMLPlugInElement* imp = C::toNative(info.Holder()); local
50 RefPtr<SharedPersistent<v8::Object> > wrapper = imp->pluginWrapper();
64 HTMLPlugInElement* imp = C::toNative(info.Holder()); local
65 RefPtr<SharedPersistent<v8::Object> > wrapper = imp->pluginWrapper();
108 HTMLPlugInElement* imp = V8HTMLAppletElement::toNative(info.Holder()); local
109 UseCounter::count(imp->document(), UseCounter::HTMLAppletElementLegacyCall);
115 HTMLPlugInElement* imp = V8HTMLEmbedElement::toNative(info.Holder()); local
116 UseCounter::count(imp->document(), UseCounter::HTMLEmbedElementLegacyCall);
122 HTMLPlugInElement* imp = V8HTMLObjectElement::toNative(info.Holder()); local
123 UseCounter::count(imp
130 HTMLPlugInElement* imp = C::toNative(info.Holder()); local
145 HTMLPlugInElement* imp = C::toNative(info.Holder()); local
[all...]
H A DV8NodeCustom.cpp65 Node* imp = V8Node::toNative(holder); local
72 imp->insertBefore(newChild, refChild, exceptionState);
81 Node* imp = V8Node::toNative(holder); local
88 imp->replaceChild(newChild, oldChild, exceptionState);
97 Node* imp = V8Node::toNative(holder); local
103 imp->removeChild(oldChild, exceptionState);
112 Node* imp = V8Node::toNative(holder); local
118 imp->appendChild(newChild, exceptionState);
H A DV8DeviceMotionEventCustom.cpp105 DeviceMotionEvent* imp = V8DeviceMotionEvent::toNative(info.Holder()); local
116 imp->initDeviceMotionEvent(type, bubbles, cancelable, deviceMotionData.get());
H A DV8HTMLCanvasElementCustom.cpp55 HTMLCanvasElement* imp = V8HTMLCanvasElement::toNative(holder); local
96 CanvasRenderingContext* result = imp->getContext(contextId, attributes.get());
103 if (InspectorInstrumentation::canvasAgentEnabled(&imp->document())) {
106 ScriptObject wrapped = InspectorInstrumentation::wrapCanvas2DRenderingContextForInstrumentation(&imp->document(), context);
117 if (InspectorInstrumentation::canvasAgentEnabled(&imp->document())) {
120 ScriptObject wrapped = InspectorInstrumentation::wrapWebGLRenderingContextForInstrumentation(&imp->document(), glContext);
/external/chromium_org/third_party/WebKit/Tools/
H A DPRESUBMIT.py11 import imp namespace
21 cfg_file = imp.load_source('config', os.path.basename(f.LocalPath()))
/external/chromium_org/tools/
H A DPRESUBMIT.py11 import imp namespace
21 cfg_file = imp.load_source('config', os.path.basename(f.LocalPath()))
/external/pixman/pixman/
H A Dpixman-mips.c69 _pixman_mips_get_implementations (pixman_implementation_t *imp) argument
74 imp = _pixman_implementation_create_mmx (imp);
88 imp = _pixman_implementation_create_mips_dspr2 (imp);
93 return imp;
H A Dpixman-arm.c207 _pixman_arm_get_implementations (pixman_implementation_t *imp) argument
211 imp = _pixman_implementation_create_arm_simd (imp);
216 imp = _pixman_implementation_create_mmx (imp);
221 imp = _pixman_implementation_create_arm_neon (imp);
224 return imp;
H A Dpixman-ppc.c147 _pixman_ppc_get_implementations (pixman_implementation_t *imp) argument
151 imp = _pixman_implementation_create_vmx (imp);
154 return imp;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dexecfile.py3 import imp, os, sys namespace
43 searchpath = None # "top-level search" in imp.find_module()
44 openfile, pathname, _ = imp.find_module(name, searchpath)
59 openfile, pathname, _ = imp.find_module(name, searchpath)
82 main_mod = imp.new_module('__main__')
/external/chromium_org/tools/gyp/test/small/
H A Dgyptest-small.py11 import imp namespace
44 module = imp.load_source(name, full_filename)
/external/chromium_org/tools/telemetry_tools/
H A Dtelemetry_bootstrap.py18 import imp namespace
37 davclient = imp.new_module('davclient')
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp3-0x.cpp47 auto imp = m.getImplementation<int, int, int>(); local
/external/antlr/antlr-3.4/runtime/Python/
H A Dsetup.py91 import imp namespace
110 = imp.find_module(testID, [testDir])
112 testMod = imp.load_module(
179 import imp namespace
244 = imp.find_module(testID, [testDir])
246 testMod = imp.load_module(

Completed in 456 milliseconds

1234