Searched defs:Update (Results 26 - 50 of 231) sorted by relevance

12345678910

/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Drtcp.cc33 void Rtcp::Update(const RTPHeader& rtp_header, uint32_t receive_timestamp) { function in class:webrtc::Rtcp
34 // Update number of received packets, and largest packet number received.
H A Ddelay_peak_detector.cc61 bool DelayPeakDetector::Update(int inter_arrival_time, int target_level) { function in class:webrtc::DelayPeakDetector
/external/lzma/CS/7zip/Common/
H A DCRC.cs34 public void Update(byte[] data, uint offset, uint size) method in class:SevenZip.CRC
46 crc.Update(data, offset, size);
/external/lzma/Java/SevenZip/
H A DCRC.java30 public void Update(byte[] data, int offset, int size) method in class:CRC
36 public void Update(byte[] data) method in class:CRC
/external/ceres-solver/internal/ceres/
H A Dlow_rank_inverse_hessian.cc88 bool LowRankInverseHessian::Update(const Vector& delta_x, function in class:ceres::internal::LowRankInverseHessian
93 VLOG(2) << "Skipping L-BFGS Update, delta_x_dot_delta_gradient too "
H A Dpreconditioner.h109 // Update the numerical value of the preconditioner for the linear
120 virtual bool Update(const LinearOperator& A, const double* D) = 0;
124 // num_rows respectively. Update() must be called before
144 virtual bool Update(const LinearOperator& A, const double* D) { function in class:ceres::internal::TypedPreconditioner
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_extensions.py38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
H A Dtest_memorizingfile.py39 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
H A Dtest_util.py40 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
H A Dtest_mock.py40 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
/external/chromium_org/ash/system/chromeos/session/
H A Dlogout_confirmation_dialog.cc60 void LogoutConfirmationDialog::Update(base::TimeTicks logout_time) { function in class:ash::LogoutConfirmationDialog
/external/chromium_org/build/
H A Dvs_toolchain.py34 Update()
140 def Update(): function
182 'update': Update,
/external/chromium_org/cc/layers/
H A Ddelegated_renderer_layer.cc85 bool DelegatedRendererLayer::Update(ResourceUpdateQueue* queue, function in class:cc::DelegatedRendererLayer
87 bool updated = Layer::Update(queue, occlusion);
H A Dio_surface_layer.cc44 bool IOSurfaceLayer::Update(ResourceUpdateQueue* queue, function in class:cc::IOSurfaceLayer
46 bool updated = Layer::Update(queue, occlusion);
/external/chromium_org/chrome/browser/notifications/
H A Dnotification_ui_manager_android.cc26 bool NotificationUIManagerAndroid::Update(const Notification& notification, function in class:NotificationUIManagerAndroid
/external/chromium_org/chrome/browser/sync_file_system/
H A Dfile_change.cc47 void FileChangeList::Update(const FileChange& new_change) { function in class:sync_file_system::FileChangeList
/external/chromium_org/chrome/browser/ui/views/location_bar/
H A Dzoom_view.cc21 Update(NULL);
27 void ZoomView::Update(ZoomController* zoom_controller) { function in class:ZoomView
/external/chromium_org/crypto/
H A Dsignature_creator_nss.cc94 bool SignatureCreator::Update(const uint8* data_part, int data_part_len) { function in class:crypto::SignatureCreator
/external/chromium_org/third_party/webrtc/base/
H A Dopenssldigest.cc40 void OpenSSLDigest::Update(const void* buf, size_t len) { function in class:rtc::OpenSSLDigest
53 EVP_DigestInit_ex(&ctx_, md_, NULL); // prepare for future Update()s
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/
H A Drate_statistics.cc38 void RateStatistics::Update(uint32_t count, int64_t now_ms) { function in class:webrtc::RateStatistics
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Drtt_filter.cc61 VCMRttFilter::Update(uint32_t rttMs) function in class:webrtc::VCMRttFilter
122 // Update the buffer used for the short time
156 // Update the buffer used for the short time
/external/chromium_org/ui/views/controls/scrollbar/
H A Dscroll_bar.cc22 void ScrollBar::Update(int viewport_size, int content_size, int current_pos) { function in class:views::ScrollBar
/external/chromium_org/v8/tools/
H A Dtest-server.py65 def Update(): function
121 # Update this very script.
144 Update()
/external/webrtc/src/system_wrappers/source/
H A Dcpu_mac.cc88 if(Update(timeDiffMS) != 0)
100 WebRtc_Word32 CpuWrapperMac::Update(WebRtc_Word64 timeDiffMS) function in class:webrtc::CpuWrapperMac
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DChecksumImpl.cs64 /// <remarks>All the other <c>Update</c> methods are implmeneted in terms of this one.
66 public abstract void Update(byte[] data, int offset, int count); method in class:DotZLib.ChecksumGeneratorBase
72 public void Update(byte[] data) method in class:DotZLib.ChecksumGeneratorBase
74 Update(data, 0, data.Length);
82 public void Update(string data) method in class:DotZLib.ChecksumGeneratorBase
84 Update(Encoding.UTF8.GetBytes(data));
92 public void Update(string data, Encoding encoding) method in class:DotZLib.ChecksumGeneratorBase
94 Update(encoding.GetBytes(data));
133 public override void Update(byte[] data, int offset, int count) method in class:DotZLib.CRC32Checksum
184 public override void Update(byt method in class:DotZLib.AdlerChecksum
[all...]

Completed in 2537 milliseconds

12345678910