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

12 3 4 5

  /external/webkit/Source/WebCore/bindings/v8/custom/
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...]
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);
V8DeviceMotionEventCustom.cpp 130 DeviceMotionEvent* imp = V8DeviceMotionEvent::toNative(holder); local
131 if (!imp->deviceMotionData()->acceleration())
133 return createAccelerationObject(imp->deviceMotionData()->acceleration());
140 DeviceMotionEvent* imp = V8DeviceMotionEvent::toNative(holder); local
141 if (!imp->deviceMotionData()->accelerationIncludingGravity())
143 return createAccelerationObject(imp->deviceMotionData()->accelerationIncludingGravity());
150 DeviceMotionEvent* imp = V8DeviceMotionEvent::toNative(holder); local
151 if (!imp->deviceMotionData()->rotationRate())
153 return createRotationRateObject(imp->deviceMotionData()->rotationRate());
160 DeviceMotionEvent* imp = V8DeviceMotionEvent::toNative(holder) local
168 DeviceMotionEvent* imp = V8DeviceMotionEvent::toNative(args.Holder()); local
    [all...]
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);
V8DataViewCustom.cpp 62 DataView* imp = V8DataView::toNative(args.Holder());
65 int8_t result = imp->getInt8(byteOffset, ec);
79 DataView* imp = V8DataView::toNative(args.Holder());
82 uint8_t result = imp->getUint8(byteOffset, ec);
96 DataView* imp = V8DataView::toNative(args.Holder());
100 imp->setInt8(byteOffset, static_cast<int8_t>(value), ec);
112 DataView* imp = V8DataView::toNative(args.Holder());
116 imp->setUint8(byteOffset, static_cast<uint8_t>(value), 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());
V8HTMLFormElementCustom.cpp 58 HTMLFormElement* imp = V8HTMLFormElement::toNative(info.Holder()); local
66 imp->getNamedElements(v, elements);
74 imp->getNamedElements(v, elements);
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);
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);
  /hardware/ti/omap4xxx/security/tee_client_api/
tee_client_api_linux_driver.c 196 pSCXParam->sMemref.hBlock = pTEECParam->memref.parent->imp._hBlock;
237 nResult = ioctl((S_HANDLE)pContext->imp._hConnection, IOCTL_SCX_EXCHANGE, pCommand);
431 pContext->imp._hConnection = hDriver;
436 pContext->imp._hConnection = 0;
449 close(pContext->imp._hConnection);
450 pContext->imp._hConnection = 0;
480 context = session->imp._pContext;
485 sCommand.sCloseClientSession.hClientSession = session->imp._hClientSession;
488 session->imp._hClientSession = S_HANDLE_NULL;
489 session->imp._pContext = NULL
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
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...]
JSDataViewCustom.cpp 65 static JSValue getDataViewMember(ExecState* exec, DataView* imp, DataViewAccessType type)
84 result = jsNumber(imp->getInt8(byteOffset, ec));
87 result = jsNumber(imp->getUint8(byteOffset, ec));
91 double value = (type == AccessDataViewMemberAsFloat32) ? imp->getFloat32(byteOffset, littleEndian, ec) : imp->getFloat64(byteOffset, littleEndian, ec);
122 static JSValue setDataViewMember(ExecState* exec, DataView* imp, DataViewAccessType type)
136 imp->setInt8(byteOffset, static_cast<int8_t>(value), ec);
139 imp->setUint8(byteOffset, static_cast<uint8_t>(value), ec);
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)));
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/scripts/test/JS/
JSTestObj.cpp 285 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
286 JSValue result = jsNumber(imp->readOnlyIntAttr());
294 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
295 JSValue result = jsString(exec, imp->readOnlyStringAttr());
303 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
304 JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->readOnlyTestObjAttr()));
312 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
313 JSValue result = jsNumber(imp->shortAttr());
321 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
322 JSValue result = jsNumber(imp->unsignedShortAttr())
330 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
339 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
348 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
357 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
366 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
375 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
384 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
393 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
402 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
411 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
420 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
429 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
438 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
447 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
456 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
465 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
474 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
483 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
492 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
502 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
511 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
521 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
536 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
546 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
557 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
568 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
578 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
587 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
596 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
615 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
622 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
629 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
636 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
643 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
650 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
657 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
664 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
671 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
678 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
685 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
692 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
699 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
706 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
713 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
720 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
727 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
734 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
741 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
748 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
755 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
764 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
773 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
782 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
797 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
806 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
815 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
823 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
838 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
850 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
871 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
884 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
906 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
919 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
941 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
962 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
985 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1000 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1015 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1040 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1072 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1092 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1106 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1120 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1135 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1153 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1181 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1199 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1227 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1239 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1254 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1268 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1285 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1300 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1322 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1347 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1375 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1392 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1412 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1432 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1450 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1475 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1490 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1505 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1537 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
1549 TestObj* imp = static_cast<TestObj*>(castedThis->impl()); local
    [all...]
  /external/webkit/Source/WebCore/bridge/
NP_jsobject.h 46 JSC::JSObject* imp; member in struct:JavaScriptObject
NP_jsobject.cpp 128 objectMap().remove(obj->rootObject, obj->imp);
129 obj->rootObject->gcUnprotect(obj->imp);
144 NPObject* _NPN_CreateScriptObject(NPP npp, JSObject* imp, PassRefPtr<RootObject> rootObject)
146 if (NPObject* object = objectMap().get(rootObject.get(), imp))
154 obj->rootObject->gcProtect(imp);
155 objectMap().add(obj->rootObject, imp, reinterpret_cast<NPObject*>(obj));
158 obj->imp = imp;
184 JSValue function = obj->imp;
233 JSValue function = obj->imp->get(exec, identifierFromNPIdentifier(exec, i->string()))
    [all...]
  /hardware/ti/omap4xxx/security/tf_sdk/include/
tee_client_api.h 64 TEEC_Context_IMP imp; member in struct:TEEC_Context
69 TEEC_Session_IMP imp; member in struct:TEEC_Session
77 TEEC_SharedMemory_IMP imp; member in struct:TEEC_SharedMemory
112 TEEC_Operation_IMP imp; member in struct:TEEC_Operation
  /system/extras/fatblock/
import.c 153 struct imported imp; member in struct:item
267 import_file(fs, ch_path, &item->imp);
271 import_dir(fs, ch_path, 0, &item->imp);
317 item->imp.first_cluster, item->imp.size);
319 if (item->imp.dot_dot_dirent) {
320 fat_dirent_set_first_cluster(item->imp.dot_dot_dirent,
354 struct imported imp; local
357 ret = import_dir(fs, path, 0, &imp);
361 fs_set_rootdir_start(fs, imp.first_cluster)
    [all...]
  /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/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/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/webkit/Source/WebCore/platform/mac/
WebCoreObjCExtras.mm 56 static inline IMP method_getImplementation(Method method)
70 IMP imp = method_getImplementation(method);
71 imp(pair->second, @selector(dealloc));

Completed in 378 milliseconds

12 3 4 5