Searched defs:Iterate (Results 1 - 25 of 26) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
H A DTestFastLexer.cs56 Iterate( text, iterations );
58 var time = Iterate( text, iterations );
65 TimeSpan Iterate( string text, int count ) method in class:Antlr3.Runtime.Test.TestFastLexer
/external/chromium_org/v8/src/
H A Dproperty.cc13 void LookupResult::Iterate(ObjectVisitor* visitor) { function in class:v8::internal::LookupResult
H A Dbootstrapper.h26 void Iterate(ObjectVisitor* v) { function in class:v8::internal::BASE_EMBEDDED
87 void Iterate(ObjectVisitor* v);
H A Dcompilation-cache.cc81 void CompilationSubCache::Iterate(ObjectVisitor* v) { function in class:v8::internal::CompilationSubCache
395 void CompilationCache::Iterate(ObjectVisitor* v) { function in class:v8::internal::CompilationCache
397 subcaches_[i]->Iterate(v);
H A Dlist-inl.h161 void List<T, P>::Iterate(void (*callback)(T* x)) { function in class:v8::internal::List
168 void List<T, P>::Iterate(Visitor* visitor) { function in class:v8::internal::List
H A Dv8threads.cc296 // in ThreadManager::Iterate(ObjectVisitor*).
329 void ThreadManager::Iterate(ObjectVisitor* v) { function in class:v8::internal::ThreadManager
335 data = HandleScopeImplementer::Iterate(v, data);
336 data = isolate_->Iterate(v, data);
337 data = Relocatable::Iterate(v, data);
H A Dframes-inl.h52 inline void StackHandler::Iterate(ObjectVisitor* v, Code* holder) const { function in class:v8::internal::StackHandler
H A Dframes.cc523 void ExitFrame::Iterate(ObjectVisitor* v) const { function in class:v8::internal::ExitFrame
688 void StubFrame::Iterate(ObjectVisitor* v) const { function in class:v8::internal::StubFrame
708 void OptimizedFrame::Iterate(ObjectVisitor* v) const { function in class:v8::internal::OptimizedFrame
1333 void EntryFrame::Iterate(ObjectVisitor* v) const { function in class:v8::internal::EntryFrame
1338 handler->Iterate(v, LookupCode());
1362 handler->Iterate(v, LookupCode());
1368 void JavaScriptFrame::Iterate(ObjectVisitor* v) const { function in class:v8::internal::JavaScriptFrame
1374 void InternalFrame::Iterate(ObjectVisitor* v) const { function in class:v8::internal::InternalFrame
1382 void StubFailureTrampolineFrame::Iterate(ObjectVisitor* v) const { function in class:v8::internal::StubFailureTrampolineFrame
1477 // Iterate throug
[all...]
H A Dserialize.cc1262 void SerializerDeserializer::Iterate(Isolate* isolate, function in class:v8::internal::SerializerDeserializer
H A Dbootstrapper.cc328 void Bootstrapper::Iterate(ObjectVisitor* v) { function in class:Bootstrapper
329 extensions_cache_.Iterate(v);
H A Ddeoptimizer.cc53 void DeoptimizerData::Iterate(ObjectVisitor* v) { function in class:v8::internal::DeoptimizerData
55 deoptimized_frame_info_->Iterate(v);
3630 void DeoptimizedFrameInfo::Iterate(ObjectVisitor* v) { function in class:v8::internal::DeoptimizedFrameInfo
H A Disolate.cc173 char* Isolate::Iterate(ObjectVisitor* v, char* thread_storage) { function in class:v8::internal::Isolate
175 Iterate(v, thread);
186 void Isolate::Iterate(ObjectVisitor* v, ThreadLocalTop* thread) { function in class:v8::internal::Isolate
202 // Iterate over pointers on native execution stack.
204 it.frame()->Iterate(v);
207 // Iterate pointers in live lookup results.
208 thread->top_lookup_result_->Iterate(v);
212 void Isolate::Iterate(ObjectVisitor* v) { function in class:v8::internal::Isolate
214 Iterate(v, current_t);
222 deferred->Iterate(visito
[all...]
H A Dapi.cc7531 // Iterate over all handles in the blocks except for the last.
7550 // Iterate over live handles in the last block (if any).
7564 void HandleScopeImplementer::Iterate(ObjectVisitor* v) { function in class:v8::internal::HandleScopeImplementer
7571 char* HandleScopeImplementer::Iterate(ObjectVisitor* v, char* storage) { function in class:v8::internal::HandleScopeImplementer
7625 void DeferredHandles::Iterate(ObjectVisitor* v) { function in class:v8::internal::DeferredHandles
/external/jsilver/src/com/google/clearsilver/jsilver/examples/basic/
H A DIterate.java28 public class Iterate { class
33 JSilver jSilver = new JSilver(new ClassResourceLoader(Iterate.class));
/external/chromium_org/tools/site_compare/utils/
H A Dbrowser_iterate.py71 def Iterate(command, iteration_func): function
111 Iterate.proc = proc
112 Iterate.wnd = wnd
113 Iterate.s = s
117 if Iterate.s:
118 Iterate.s.close()
119 Iterate.s = None
121 if Iterate.proc:
122 if not windowing.WaitForProcessExit(Iterate.proc, 0):
124 windowing.EndProcess(Iterate
[all...]
/external/lldb/source/Utility/
H A DRange.cpp77 Range::Iterate (RangeCallback callback) function in class:Range
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DEnumerableExtensions.cs136 return Iterate(source, int.MinValue, delegate(int a, int b){return Math.Max(a, b);});
139 static U Iterate<T, U>(IEnumerable<T> source, U initValue, Func<T, U, U> selector) { method in class:Antlr.Runtime.JavaExtensions.EnumerableExtensions
159 return Iterate(source, int.MaxValue, delegate(int a, int b) { return Math.Min(a, b); });
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dwrite_batch.cc42 Status WriteBatch::Iterate(Handler* handler) const { function in class:leveldb::WriteBatch
133 return b->Iterate(&inserter);
/external/chromium_org/third_party/webrtc/base/
H A Dfileutils.cc61 bool DirectoryIterator::Iterate(const Pathname &dir) { function in class:rtc::DirectoryIterator
164 if (di->Iterate(old_dir.pathname())) {
188 if (di->Iterate(folder)) {
H A Dfileutils_mock.h63 * you can call Iterate for any path: /var, /var/dir, /var/dir2
69 virtual bool Iterate(const Pathname& path) { function in class:rtc::FakeDirectoryIterator
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_array.cpp318 void* CFX_BaseSegmentedArray::Iterate(FX_BOOL (*callback)(void* param, void* pData), void* param) const function in class:CFX_BaseSegmentedArray
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Daddressmap-inl.h96 // callback function for Iterate() may mutate contained values. If the
140 // Iterate over the address map calling 'callback'
145 inline void Iterate(void (*callback)(Key, Value*, Type), Type arg) const;
406 inline void AddressMap<Value>::Iterate(void (*callback)(Key, Value*, Type), function in class:AddressMap
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Daddressmap-inl.h96 // callback function for Iterate() may mutate contained values. If the
140 // Iterate over the address map calling 'callback'
145 inline void Iterate(void (*callback)(Key, Value*, Type), Type arg) const;
406 inline void AddressMap<Value>::Iterate(void (*callback)(Key, Value*, Type), function in class:AddressMap
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtcp_utility.cc67 return Iterate();
71 RTCPUtility::RTCPParserV2::Iterate() function in class:webrtc::RTCPUtility::RTCPParserV2
249 Iterate();
259 Iterate();
269 Iterate();
279 Iterate();
289 Iterate();
299 Iterate();
309 Iterate();
319 Iterate();
1646 RTCPUtility::RTCPPacketIterator::Iterate() function in class:webrtc::RTCPUtility::RTCPPacketIterator
[all...]
/external/chromium_org/v8/src/heap/
H A Dheap-inl.h654 void ExternalStringTable::Iterate(ObjectVisitor* v) { function in class:v8::internal::ExternalStringTable

Completed in 2070 milliseconds

12