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

/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/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/v8/src/
H A Dproperty.cc34 void LookupResult::Iterate(ObjectVisitor* visitor) { function in class:v8::internal::LookupResult
H A Dbootstrapper.h51 void Iterate(ObjectVisitor* v) { function in class:v8::internal::BASE_EMBEDDED
110 void Iterate(ObjectVisitor* v);
H A Dcompilation-cache.cc110 void CompilationSubCache::Iterate(ObjectVisitor* v) { function in class:v8::internal::CompilationSubCache
476 void CompilationCache::Iterate(ObjectVisitor* v) { function in class:v8::internal::CompilationCache
478 subcaches_[i]->Iterate(v);
H A Dframes-inl.h69 inline void StackHandler::Iterate(ObjectVisitor* v, Code* holder) const { function in class:v8::internal::StackHandler
H A Dlist-inl.h153 void List<T, P>::Iterate(void (*callback)(T* x)) { function in class:v8::internal::List
160 void List<T, P>::Iterate(Visitor* visitor) { function in class:v8::internal::List
H A Dv8threads.cc337 // in ThreadManager::Iterate(ObjectVisitor*).
370 void ThreadManager::Iterate(ObjectVisitor* v) { function in class:v8::internal::ThreadManager
376 data = HandleScopeImplementer::Iterate(v, data);
377 data = isolate_->Iterate(v, data);
378 data = Relocatable::Iterate(v, data);
H A Dheap-inl.h580 void ExternalStringTable::Iterate(ObjectVisitor* v) { function in class:v8::internal::ExternalStringTable
H A Ddeoptimizer.cc68 void DeoptimizerData::Iterate(ObjectVisitor* v) { function in class:v8::internal::DeoptimizerData
70 deoptimized_frame_info_->Iterate(v);
1045 // Iterate over the stack check table and patch every stack check
1067 // Iterate over the stack check table and revert the patched
1660 void DeoptimizedFrameInfo::Iterate(ObjectVisitor* v) { function in class:v8::internal::DeoptimizedFrameInfo
H A Dframes.cc525 void ExitFrame::Iterate(ObjectVisitor* v) const { function in class:v8::internal::ExitFrame
606 void OptimizedFrame::Iterate(ObjectVisitor* v) const { function in class:v8::internal::OptimizedFrame
1203 void EntryFrame::Iterate(ObjectVisitor* v) const { function in class:v8::internal::EntryFrame
1208 handler->Iterate(v, LookupCode());
1232 handler->Iterate(v, LookupCode());
1238 void JavaScriptFrame::Iterate(ObjectVisitor* v) const { function in class:v8::internal::JavaScriptFrame
1244 void InternalFrame::Iterate(ObjectVisitor* v) const { function in class:v8::internal::InternalFrame
1310 // Iterate through the page until we reach the end or find an object starting
H A Disolate.cc422 char* Isolate::Iterate(ObjectVisitor* v, char* thread_storage) { function in class:v8::internal::Isolate
424 Iterate(v, thread);
440 void Isolate::Iterate(ObjectVisitor* v, ThreadLocalTop* thread) { function in class:v8::internal::Isolate
465 // Iterate over pointers on native execution stack.
467 it.frame()->Iterate(v);
470 // Iterate pointers in live lookup results.
471 thread->top_lookup_result_->Iterate(v);
475 void Isolate::Iterate(ObjectVisitor* v) { function in class:v8::internal::Isolate
477 Iterate(v, current_t);
H A Dserialize.cc1203 void SerializerDeserializer::Iterate(ObjectVisitor* visitor) { function in class:v8::internal::SerializerDeserializer
H A Dbootstrapper.cc292 void Bootstrapper::Iterate(ObjectVisitor* v) { function in class:Bootstrapper
293 extensions_cache_.Iterate(v);
H A Ddebug.cc127 // Iterate through reloc info for code and original code stopping at each
649 // Iterate the script cache to get rid of all the weak handles.
889 void Debug::Iterate(ObjectVisitor* v) { function in class:v8::internal::Debug
1249 // Iterate through the JavaScript stack looking for handlers.
H A Dapi.cc6338 // Iterate over all handles in the blocks except for the last.
6344 // Iterate over live handles in the last block (if any).
6356 void HandleScopeImplementer::Iterate(ObjectVisitor* v) { function in class:v8::internal::HandleScopeImplementer
6364 char* HandleScopeImplementer::Iterate(ObjectVisitor* v, char* storage) { function in class:v8::internal::HandleScopeImplementer
H A Dobjects.cc652 // Iterate up the prototype chain until an element is found or the null
1297 void HeapObject::Iterate(ObjectVisitor* v) { function in class:v8::internal::HeapObject
6426 char* Relocatable::Iterate(ObjectVisitor* v, char* thread_storage) { function in class:v8::internal::Relocatable
6428 Iterate(v, top);
6433 void Relocatable::Iterate(ObjectVisitor* v) { function in class:v8::internal::Relocatable
6435 Iterate(v, isolate->relocatable_top());
6439 void Relocatable::Iterate(ObjectVisitor* v, Relocatable* top) { function in class:v8::internal::Relocatable
7372 // Iterate over all fields in the body but take care in dealing with
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
H A D15.4.4.4-1.js258 function Iterate( array ) { function
H A D15.4.4.4-2.js149 function Iterate( array ) { function
/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/third_party/libjingle/source/talk/base/
H A Dfileutils.cc79 bool DirectoryIterator::Iterate(const Pathname &dir) { function in class:talk_base::DirectoryIterator
178 di.Iterate(old_dir.pathname());
198 di->Iterate(folder);

Completed in 596 milliseconds