Searched refs:Update (Results 1 - 25 of 48) sorted by relevance

12

/external/zlib/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...]
H A DDotZLib.cs130 void Update(byte[] data); method in interface:DotZLib.ChecksumGenerator
141 void Update(byte[] data, int offset, int count); method in interface:DotZLib.ChecksumGenerator
148 void Update(string data); method in interface:DotZLib.ChecksumGenerator
155 void Update(string data, Encoding encoding); method in interface:DotZLib.ChecksumGenerator
H A DUnitTests.cs102 crc32.Update(data);
106 crc32.Update("penguin");
110 crc32.Update("penguin");
136 adler.Update(data);
140 adler.Update("penguin");
144 adler.Update("penguin");
/external/webkit/WebKitTools/Scripts/webkitpy/steps/
H A Dsteps_unittest.py31 from webkitpy.steps.update import Update namespace
51 self._run_step(Update, options)
H A Dupdate.py34 class Update(AbstractStep): class in inherits:AbstractStep
H A D__init__.py56 from webkitpy.steps.update import Update namespace
/external/chromium/base/crypto/
H A Dsignature_creator.h37 // Update the signature with more data.
38 bool Update(const uint8* data_part, int data_part_len);
H A Dsignature_creator_nss.cc49 bool SignatureCreator::Update(const uint8* data_part, int data_part_len) { function in class:base::SignatureCreator
H A Dsignature_creator_unittest.cc29 ASSERT_TRUE(signer->Update(reinterpret_cast<const uint8*>(data.c_str()),
H A Dsignature_creator_win.cc37 bool SignatureCreator::Update(const uint8* data_part, int data_part_len) { function in class:base::SignatureCreator
H A Dsignature_creator_mac.cc64 bool SignatureCreator::Update(const uint8* data_part, int data_part_len) { function in class:base::SignatureCreator
/external/webkit/WebKitTools/Scripts/webkitpy/commands/
H A Ddownload.py50 help_text = "Update working copy and build"
53 steps.Update,
60 help_text = "Update working copy, build, and run the tests"
63 steps.Update,
159 steps.Update,
171 steps.Update,
181 steps.Update,
210 steps.Update,
256 steps.Update,
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dqueue.h48 // void Update(StateId s);
81 void Update(StateId s) { Update_(s); } function in class:fst::QueueBase
110 void Update(StateId s) {} function in class:fst::TrivialQueue
119 virtual void Update_(StateId s) { Update(s); }
143 void Update(StateId s) {} function in class:fst::FifoQueue
151 virtual void Update_(StateId s) { Update(s); }
173 void Update(StateId s) {} function in class:fst::LifoQueue
181 virtual void Update_(StateId s) { Update(s); }
190 // it can be reordered in the queue with a call to Update().
212 void Update(StateI function in class:fst::ShortestFirstQueue
322 void Update(StateId s) {} function in class:fst::TopOrderQueue
373 void Update(StateId s) {} function in class:fst::StateOrderQueue
451 void Update(StateId s) { function in class:fst::SccQueue
603 void Update(StateId s) { queue_->Update(s); } function in class:fst::AutoQueue
[all...]
H A Dcompat.cpp128 void MD5::Update(void const *data, int size) {} // ?OP? function in class:MD5
H A Dheap.h77 void Update(int key, const T& val) { function in class:fst::Heap
H A Dsymbol-table.cpp77 check_sum_.Update(symbols_[i], strlen(symbols_[i])+1);
/external/chromium/base/
H A Dsha1.cc24 // sha.Update(moredata, size of data);
40 void Update(const void* data, size_t nbytes);
120 void SecureHashAlgorithm::Update(const void* data, size_t nbytes) { function in class:base::SecureHashAlgorithm
195 sha.Update(str.c_str(), str.length());
H A Devent_trace_controller_win.h149 static HRESULT Update(const wchar_t* session_name,
H A Devent_trace_controller_win.cc111 HRESULT EtwTraceController::Update(const wchar_t* session_name, function in class:EtwTraceController
/external/webkit/WebCore/platform/wx/
H A DWidgetWx.cpp97 widget->Update();
/external/libvpx/examples/includes/geshi/geshi/
H A Dqbasic.php31 * * Update colours, especially for the first keyword group
H A Dwinbatch.php28 * - Update the list of extender functions.
/external/chromium/net/disk_cache/
H A Dentry_impl.h94 bool Update();
/external/qemu/distrib/sdl-1.2.12/src/joystick/beos/
H A DSDL_bejoystick.cc173 stick->Update();
/external/v8/src/
H A Dscopeinfo.h178 // Update an element in the cache.
179 static void Update(Code* code,

Completed in 185 milliseconds

12