Searched refs:update (Results 1 - 25 of 204) sorted by relevance

123456789

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_md5.py49 m1.update(aas)
50 m1.update(bees)
51 m1.update(cees)
54 m2.update(aas + bees + cees)
H A Dtest_pep247.py31 obj3.update('string')
39 obj3.update('string')
50 obj1.update('string')
H A Dtestcodec.py37 decoding_map.update({
H A Dmapping_tests.py105 #update
106 p.update(self.reference)
110 p.update(items)
178 d.update(self.other)
183 d.update()
188 d.update(self.other.items())
193 d.update(self.other.iteritems())
197 # self.assertRaises((TypeError, AttributeError), d.update, None)
198 self.assertRaises((TypeError, AttributeError), d.update, 42)
209 d.update(SimpleUserDic
[all...]
H A Dtest_dict.py133 d.update({1:100})
134 d.update({2:20})
135 d.update({1:1, 2:2, 3:3})
138 d.update()
141 self.assertRaises((TypeError, AttributeError), d.update, None)
151 d.update(SimpleUserDict())
160 self.assertRaises(Exc, d.update, FailingUserDict())
177 self.assertRaises(Exc, d.update, FailingUserDict())
195 self.assertRaises(Exc, d.update, FailingUserDict())
203 self.assertRaises(Exc, {}.update, badse
[all...]
H A Dtest_hmac.py209 def update(self, v): member in class:TestVectorsTestCase.test_legacy_block_size_warnings.MockCrazyHash
210 self._x.update(v)
264 h.update("compute the hash of this text!")
298 h1.update("some random text")
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dhmac.py72 self.outer.update(key.translate(trans_5C))
73 self.inner.update(key.translate(trans_36))
75 self.update(msg)
80 def update(self, msg): member in class:HMAC
83 self.inner.update(msg)
88 An update to this copy won't affect the original object.
103 h.update(self.inner.digest())
129 You can now feed arbitrary strings into the object using its update()
H A DUserDict.py7 self.update(dict)
9 self.update(kwargs)
37 c.update(self)
46 def update(self, dict=None, **kwargs): member in class:UserDict
50 self.data.update(dict.data)
52 self.data.update(dict)
57 self.data.update(kwargs)
151 def update(self, other=None, **kwargs): member in class:DictMixin
165 self.update(kwargs)
H A D_weakrefset.py50 self.update(data)
116 def update(self, other): member in class:WeakSet
120 self.data.update(other.data)
126 self.update(other)
/device/generic/goldfish/camera/
H A DEmulatedFakeCamera3.cpp322 // Always update usage and max buffers
403 settings.update(ANDROID_REQUEST_METADATA_MODE, &metadataMode, 1);
406 settings.update(ANDROID_REQUEST_ID, &id, 1);
409 settings.update(ANDROID_REQUEST_FRAME_COUNT, &frameCount, 1);
414 settings.update(ANDROID_LENS_FOCAL_LENGTH, &focalLength, 1);
418 settings.update(ANDROID_LENS_FOCUS_DISTANCE, &focusDistance, 1);
421 settings.update(ANDROID_LENS_APERTURE, &aperture, 1);
424 settings.update(ANDROID_LENS_FILTER_DENSITY, &filterDensity, 1);
428 settings.update(ANDROID_LENS_OPTICAL_STABILIZATION_MODE,
438 settings.update(ANDROID_SENSOR_EXPOSURE_TIM
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/md5test/
H A Dmd5driver.py48 mdContext.update(data)
72 mdContext.update(data)
87 mdContext.update(data)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A DUserDict.py7 self.update(dict)
9 self.update(kwargs)
37 c.update(self)
46 def update(self, dict=None, **kwargs): member in class:UserDict
50 self.data.update(dict.data)
52 self.data.update(dict)
57 self.data.update(kwargs)
151 def update(self, other=None, **kwargs): member in class:DictMixin
165 self.update(kwargs)
H A Dhashlib.py29 - update(arg): Update the hash object with the string arg. Repeated calls
32 - digest(): Return the digest of the strings passed to the update() method
46 >>> m.update("Nobody inspects")
47 >>> m.update(" the spammish repetition")
185 inner.update(password.translate(_trans_36))
186 outer.update(password.translate(_trans_5C))
190 # digest objects and just update copies to skip initialization.
193 icpy.update(msg)
194 ocpy.update(icpy.digest())
H A Dcollections.py75 link_prev[1] = link_next # update link_prev[NEXT]
76 link_next[0] = link_prev # update link_next[PREV]
131 update = MutableMapping.update variable in class:OrderedDict
133 __update = update # let subclasses override update without breaking __init__
413 >>> for elem in 'shazam': # update counts from an iterable
422 >>> c.update(d) # add in the second counter
465 self.update(*args, **kwds)
516 def update(*arg member in class:Counter
[all...]
/device/sample/apps/LeanbackWidget/src/com/google/android/leanbacklauncher/partnerwidget/
H A DClockWidgetProvider.java35 update(context);
44 update(context);
48 update(context);
52 private void update(Context context) { method in class:ClockWidgetProvider
/device/google/marlin/camera/QCamera2/HAL3/
H A DQCamera3HWI.cpp1214 LOGE("Failed to update table for CAM_INTF_PARM_MAX_DIMENSION");
1336 * DESCRIPTION: update FPS information in preview buffer.
1375 * DESCRIPTION: update timestamp in display metadata for all pending buffers
3188 dummyMetadata.update(ANDROID_REQUEST_ID, &(i->request_id), 1);
3486 // directly send the buffer to the frameworks, and update pending buffers map
3846 mCropRegionMapper.update(gCamCapability[mCameraId]->active_array_size.width,
3934 //update settings from app here
4370 LOGE("Did not find matching stream to update index");
4401 LOGE("Did not find matching stream to update index");
4428 LOGE("Did not find matching stream to update inde
[all...]
H A DQCamera3CropRegionMapper.h45 void update(uint32_t active_array_w, uint32_t active_array_h,
/device/huawei/angler/camera/QCamera2/HAL3/
H A DQCamera3HWI.cpp1044 ALOGE("%s:Failed to update table for CAM_INTF_PARM_MAX_DIMENSION", __func__);
2648 dummyMetadata.update(ANDROID_REQUEST_ID, &(i->request_id), 1);
3027 camMetadata.update(ANDROID_SYNC_FRAME_NUMBER, &fwk_frame_number, 1);
3029 // update dynamic black level here
3030 camMetadata.update(ANDROID_SENSOR_DYNAMIC_BLACK_LEVEL, blacklevel, 4);
3060 camMetadata.update(ANDROID_SYNC_FRAME_NUMBER, &fwk_frame_number, 1);
3102 // directly send the buffer to the frameworks, and update pending buffers map
3428 mCropRegionMapper.update(gCamCapability[mCameraId]->active_array_size.width,
4035 /* use dumpsys media.camera as trigger to send update debug level event */
4340 camMetadata.update(ANDROID_SENSOR_TIMESTAM
[all...]
H A DQCamera3CropRegionMapper.h46 void update(uint32_t active_array_w, uint32_t active_array_h,
/device/lge/bullhead/camera/QCamera2/HAL3/
H A DQCamera3HWI.cpp1044 ALOGE("%s:Failed to update table for CAM_INTF_PARM_MAX_DIMENSION", __func__);
2648 dummyMetadata.update(ANDROID_REQUEST_ID, &(i->request_id), 1);
3027 camMetadata.update(ANDROID_SYNC_FRAME_NUMBER, &fwk_frame_number, 1);
3029 // update dynamic black level here
3030 camMetadata.update(ANDROID_SENSOR_DYNAMIC_BLACK_LEVEL, blacklevel, 4);
3060 camMetadata.update(ANDROID_SYNC_FRAME_NUMBER, &fwk_frame_number, 1);
3102 // directly send the buffer to the frameworks, and update pending buffers map
3428 mCropRegionMapper.update(gCamCapability[mCameraId]->active_array_size.width,
4032 /* use dumpsys media.camera as trigger to send update debug level event */
4337 camMetadata.update(ANDROID_SENSOR_TIMESTAM
[all...]
H A DQCamera3CropRegionMapper.h46 void update(uint32_t active_array_w, uint32_t active_array_h,
/device/google/contexthub/firmware/
H A Dtoolchain-setup.sh8 wget https://launchpad.net/gcc-arm-embedded/5.0/5-2016-q1-update/+download/gcc-arm-none-eabi-5_3-2016q1-20160330-linux.tar.bz2 &&
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
H A D__init__.py83 self.__dict__.update(mod.__dict__)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
H A Dgrammar.py98 self.__dict__.update(d)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/i18n/
H A Dmakelocalealias.py68 data.update(parse(LOCALE_ALIAS))

Completed in 525 milliseconds

123456789