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

12 3 4

  /external/webkit/Source/WebCore/bindings/js/
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...]
JSDeviceMotionEventCustom.cpp 134 DeviceMotionEvent* imp = static_cast<DeviceMotionEvent*>(impl()); local
135 if (!imp->deviceMotionData()->acceleration())
137 return createAccelerationObject(imp->deviceMotionData()->acceleration(), exec);
142 DeviceMotionEvent* imp = static_cast<DeviceMotionEvent*>(impl()); local
143 if (!imp->deviceMotionData()->accelerationIncludingGravity())
145 return createAccelerationObject(imp->deviceMotionData()->accelerationIncludingGravity(), exec);
150 DeviceMotionEvent* imp = static_cast<DeviceMotionEvent*>(impl()); local
151 if (!imp->deviceMotionData()->rotationRate())
153 return createRotationRateObject(imp->deviceMotionData()->rotationRate(), exec);
158 DeviceMotionEvent* imp = static_cast<DeviceMotionEvent*>(impl()) local
187 DeviceMotionEvent* imp = static_cast<DeviceMotionEvent*>(impl()); local
    [all...]
JSNodeCustom.cpp 191 Node* imp = static_cast<Node*>(impl()); local
193 bool ok = imp->insertBefore(toNode(exec->argument(0)), toNode(exec->argument(1)), ec, true);
202 Node* imp = static_cast<Node*>(impl()); local
204 bool ok = imp->replaceChild(toNode(exec->argument(0)), toNode(exec->argument(1)), ec, true);
213 Node* imp = static_cast<Node*>(impl()); local
215 bool ok = imp->removeChild(toNode(exec->argument(0)), ec);
224 Node* imp = static_cast<Node*>(impl()); local
226 bool ok = imp->appendChild(toNode(exec->argument(0)), ec, true);
  /external/webkit/Source/WebCore/bindings/v8/custom/
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...]
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...]
V8DirectoryEntrySyncCustom.cpp 100 DirectoryEntrySync* imp = V8DirectoryEntrySync::toNative(args.Holder()); local
108 RefPtr<DirectoryEntrySync> result = imp->getDirectory(path, flags, ec);
119 DirectoryEntrySync* imp = V8DirectoryEntrySync::toNative(args.Holder()); local
127 RefPtr<FileEntrySync> result = imp->getFile(path, flags, ec);
V8HTMLAllCollectionCustom.cpp 89 HTMLAllCollection* imp = V8HTMLAllCollection::toNative(info.Holder());
90 return getNamedItems(imp, v8StringToAtomicWebCoreString(name));
96 HTMLAllCollection* imp = V8HTMLAllCollection::toNative(args.Holder()); local
97 return getItem(imp, args[0]);
103 HTMLAllCollection* imp = V8HTMLAllCollection::toNative(args.Holder()); local
104 v8::Handle<v8::Value> result = getNamedItems(imp, toWebCoreString(args[0]));
118 HTMLAllCollection* imp = V8HTMLAllCollection::toNative(args.Holder());
121 return getItem(imp, args[0]);
130 Node* node = imp->namedItem(name);
135 node = imp->nextNamedItem(name)
    [all...]
V8HTMLCollectionCustom.cpp 92 HTMLCollection* imp = V8HTMLCollection::toNative(info.Holder());
93 return getNamedItems(imp, v8StringToAtomicWebCoreString(name));
99 HTMLCollection* imp = V8HTMLCollection::toNative(args.Holder()); local
100 return getItem(imp, args[0]);
106 HTMLCollection* imp = V8HTMLCollection::toNative(args.Holder()); local
107 v8::Handle<v8::Value> result = getNamedItems(imp, toWebCoreString(args[0]));
121 HTMLCollection* imp = V8HTMLCollection::toNative(args.Holder());
124 return getItem(imp, args[0]);
133 Node* node = imp->namedItem(name);
138 node = imp->nextNamedItem(name)
    [all...]
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...]
V8HTMLPlugInElementCustom.cpp 50 HTMLPlugInElement* imp = C::toNative(info.Holder()); local
51 ScriptInstance scriptInstance = imp->getInstance();
65 HTMLPlugInElement* imp = C::toNative(info.Holder()); local
66 ScriptInstance scriptInstance = imp->getInstance();
135 HTMLPlugInElement* imp = C::toNative(info.Holder()); local
136 ScriptInstance scriptInstance = imp->getInstance();
151 HTMLPlugInElement* imp = C::toNative(info.Holder()); local
152 ScriptInstance scriptInstance = imp->getInstance();
V8NodeCustom.cpp 65 Node* imp = V8Node::toNative(holder); local
69 bool success = imp->insertBefore(newChild, refChild, ec, true);
84 Node* imp = V8Node::toNative(holder); local
88 bool success = imp->replaceChild(newChild, oldChild, ec, true);
102 Node* imp = V8Node::toNative(holder); local
105 bool success = imp->removeChild(oldChild, ec);
120 Node* imp = V8Node::toNative(holder); local
123 bool success = imp->appendChild(newChild, ec, true );
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);
V8CSSStyleDeclarationCustom.cpp 163 CSSStyleDeclaration* imp = V8CSSStyleDeclaration::toNative(info.Holder());
171 RefPtr<CSSValue> cssValue = imp->getPropertyCSSValue(propInfo->propID);
181 String result = imp->getPropertyValue(propInfo->propID);
196 CSSStyleDeclaration* imp = V8CSSStyleDeclaration::toNative(info.Holder()); local
212 imp->setProperty(propInfo->propID, propertyValue, important, ec);
V8DocumentCustom.cpp 104 Document* imp = V8Document::toNative(holder); local
109 CanvasRenderingContext* result = imp->getCSSCanvasContext(contextId, name, width, height);
V8HTMLCanvasElementCustom.cpp 55 HTMLCanvasElement* imp = V8HTMLCanvasElement::toNative(holder); local
85 CanvasRenderingContext* result = imp->getContext(contextId, attrs.get());
  /external/antlr/antlr-3.4/runtime/Python/
setup.py 91 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(
  /external/iproute2/lib/
ll_map.c 45 struct idxmap *im, **imp; local
62 for (imp=&idxmap[h]; (im=*imp)!=NULL; imp = &im->next)
70 im->next = *imp;
72 *imp = im;
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestPhysicsReadWrite.java 127 BinaryImporter imp=BinaryImporter.getInstance(); local
128 imp.setAssetManager(assetManager);
129 Node newPhysicsRootNode=(Node)imp.load(bin);
  /external/jmonkeyengine/engine/src/test/jme3test/effect/
TestParticleExportingCloning.java 76 BinaryImporter imp = new BinaryImporter(); local
77 imp.setAssetManager(assetManager);
78 ParticleEmitter emit3 = (ParticleEmitter) imp.load(out.toByteArray());
  /external/jmonkeyengine/engine/src/test/jme3test/export/
TestOgreConvert.java 71 BinaryImporter imp = new BinaryImporter(); local
72 imp.setAssetManager(assetManager);
73 Node ogreModelReloaded = (Node) imp.load(bais, null, null);
  /external/jmonkeyengine/engine/src/tools/jme3tools/savegame/
SaveGame.java 98 BinaryImporter imp = BinaryImporter.getInstance(); local
100 imp.setAssetManager(manager);
102 sav = imp.load(is);
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestMediaQueryListListener.cpp 173 TestMediaQueryListListener* imp = static_cast<TestMediaQueryListListener*>(castedThis->impl()); local
178 imp->method(listener);
JSTestSerializedScriptValueInterface.cpp 150 TestSerializedScriptValueInterface* imp = static_cast<TestSerializedScriptValueInterface*>(castedThis->impl()); local
151 JSValue result = imp->value() ? imp->value()->deserialize(exec, castedThis->globalObject()) : jsNull();
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestMediaQueryListListener.cpp 45 TestMediaQueryListListener* imp = V8TestMediaQueryListListener::toNative(args.Holder()); local
47 imp->method(listener);
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JNIUtilityPrivate.cpp 199 RuntimeArray* imp = static_cast<RuntimeArray*>(object); local
200 JavaArray* array = static_cast<JavaArray*>(imp->getConcreteArray());

Completed in 1625 milliseconds

12 3 4