Searched refs:Current (Results 1 - 25 of 248) sorted by relevance

12345678910

/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
H A Dmain.cpp42 egl::Current *current = (egl::Current*)LocalAlloc(LPTR, sizeof(egl::Current));
89 Current *current = (Current*)TlsGetValue(currentTLS);
96 Current *current = (Current*)TlsGetValue(currentTLS);
103 Current *current = (Current*)TlsGetValue(currentTLS);
110 Current *curren
[all...]
/external/llvm/include/llvm/ADT/
H A Dedit_distance.h66 unsigned *Current = Previous + (n + 1); local
72 Current[0] = y;
73 unsigned BestThisRow = Current[0];
77 Current[x] = std::min(
79 std::min(Current[x-1], Previous[x])+1);
82 if (FromArray[y-1] == ToArray[x-1]) Current[x] = Previous[x-1];
83 else Current[x] = std::min(Current[x-1], Previous[x]) + 1;
85 BestThisRow = std::min(BestThisRow, Current[x]);
91 unsigned *tmp = Current;
[all...]
/external/v8/src/
H A Dallocation-inl.h38 return Isolate::Current()->PreallocatedStorageNew(size);
43 return Isolate::Current()->PreallocatedStorageDelete(p);
H A Dcounters.cc44 return Isolate::Current()->stats_table()->FindLocation(name_);
82 Isolate::Current()->stats_table()->
89 return Isolate::Current()->stats_table()->
H A Dheap-profiler.cc55 Isolate* isolate = Isolate::Current();
63 Isolate* isolate = Isolate::Current();
72 ASSERT(Isolate::Current()->heap_profiler() != NULL);
73 return Isolate::Current()->heap_profiler()->TakeSnapshotImpl(name,
82 ASSERT(Isolate::Current()->heap_profiler() != NULL);
83 return Isolate::Current()->heap_profiler()->TakeSnapshotImpl(name,
141 HeapProfiler* profiler = Isolate::Current()->heap_profiler();
148 HeapProfiler* profiler = Isolate::Current()->heap_profiler();
155 HeapProfiler* profiler = Isolate::Current()->heap_profiler();
162 HeapProfiler* profiler = Isolate::Current()
[all...]
H A Dlithium-allocator-inl.h72 LOperand* TempIterator::Current() { function in class:v8::internal::TempIterator
100 LOperand* InputIterator::Current() { function in class:v8::internal::InputIterator
128 LOperand* UseIterator::Current() { function in class:v8::internal::UseIterator
131 ? env_iterator_.Current()
132 : input_iterator_.Current();
H A Dcpu-profiler.cc175 Isolate* isolate = Isolate::Current();
263 ASSERT(Isolate::Current()->cpu_profiler() != NULL);
264 Isolate::Current()->cpu_profiler()->StartCollectingProfile(title);
269 ASSERT(Isolate::Current()->cpu_profiler() != NULL);
270 Isolate::Current()->cpu_profiler()->StartCollectingProfile(title);
275 Isolate* isolate = Isolate::Current();
282 Isolate* isolate = Isolate::Current();
290 ASSERT(Isolate::Current()->cpu_profiler() != NULL);
292 return Isolate::Current()->cpu_profiler()->profiles_->Profiles(
298 ASSERT(Isolate::Current()
[all...]
/external/clang/include/clang/AST/
H A DRedeclarable.h116 /// Current - The current declaration.
117 decl_type *Current; member in class:clang::Redeclarable::redecl_iterator
128 redecl_iterator() : Current(0) { }
130 : Current(C), Starter(C), PassedFirst(false) { }
132 reference operator*() const { return Current; }
133 pointer operator->() const { return Current; }
136 assert(Current && "Advancing while iterator has reached end");
138 if (Current->isFirstDeclaration()) {
141 Current = 0;
148 decl_type *Next = Current
[all...]
H A DAttr.h158 /// Current - The current, underlying iterator.
165 mutable AttrVec::const_iterator Current; member in class:clang::specific_attr_iterator
168 while (!isa<SpecificAttr>(*Current))
169 ++Current;
173 while (Current != I && !isa<SpecificAttr>(*Current))
174 ++Current;
184 specific_attr_iterator() : Current() { }
185 explicit specific_attr_iterator(AttrVec::const_iterator i) : Current(i) { }
189 return cast<SpecificAttr>(*Current);
[all...]
H A DDeclBase.h690 /// Current - The current declaration.
691 Decl *Current; member in class:clang::Decl::redecl_iterator
701 redecl_iterator() : Current(0) { }
702 explicit redecl_iterator(Decl *C) : Current(C), Starter(C) { }
704 reference operator*() const { return Current; }
705 pointer operator->() const { return Current; }
708 assert(Current && "Advancing while iterator has reached end");
710 Decl *Next = Current->getNextRedeclaration();
712 Current = (Next != Starter ? Next : 0);
723 return x.Current
1173 Decl *Current; member in class:clang::DeclContext::decl_iterator
1229 DeclContext::decl_iterator Current; member in class:clang::DeclContext::specific_decl_iterator
1301 DeclContext::decl_iterator Current; member in class:clang::DeclContext::filtered_decl_iterator
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeIterator.cs78 public object Current property in class:Antlr.Runtime.Tree.TreeIterator
107 Current = tree;
114 Current = nodes.Dequeue();
121 Current = eof;
130 Current = down;
150 Current = nodes.Dequeue();
159 Current = nodes.Dequeue();
166 bool result = Current != eof || !reachedEof;
167 reachedEof = Current == eof;
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A Dmain.cpp34 gl::Current *current = (gl::Current*)LocalAlloc(LPTR, sizeof(gl::Current));
78 Current *current = (Current*)TlsGetValue(currentTLS);
91 Current *current = (Current*)TlsGetValue(currentTLS);
98 Current *current = (Current*)TlsGetValue(currentTLS);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeIterator.cs73 public object Current { property in class:Antlr.Runtime.Tree.TreeIterator
97 Current = tree;
101 Current = nodes.Dequeue();
105 Current = eof;
111 Current = down;
127 Current = nodes.Dequeue();
134 Current = nodes.Dequeue();
141 return Current != eof;
/external/mesa3d/src/glsl/
H A Dglsl_parser_extras.h157 # define YYLLOC_DEFAULT(Current, Rhs, N) \
161 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
162 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
163 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
164 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \
168 (Current).first_line = (Current).last_line = \
170 (Current).first_column = (Current).last_column = \
173 (Current)
[all...]
/external/llvm/lib/VMCore/
H A DUse.cpp53 const Use *Current = this; local
56 unsigned Tag = (Current++)->Prev.getInt();
63 ++Current;
66 unsigned Tag = Current->Prev.getInt();
70 ++Current;
74 return Current + Offset;
80 return Current;
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dmediamonitor.cc71 ASSERT(talk_base::Thread::Current() == worker_thread_);
79 ASSERT(talk_base::Thread::Current() == worker_thread_);
87 ASSERT(talk_base::Thread::Current() == worker_thread_);
92 ASSERT(talk_base::Thread::Current() == monitor_thread_);
100 ASSERT(talk_base::Thread::Current() == worker_thread_);
H A Daudiomonitor.cc67 assert(talk_base::Thread::Current() == voice_channel_->worker_thread());
75 assert(talk_base::Thread::Current() == voice_channel_->worker_thread());
83 assert(talk_base::Thread::Current() == voice_channel_->worker_thread());
89 assert(talk_base::Thread::Current() == monitoring_thread_);
101 assert(talk_base::Thread::Current() == voice_channel_->worker_thread());
/external/llvm/lib/CodeGen/
H A DInterferenceCache.h145 BlockInterference *Current; member in class:llvm::InterferenceCache::Cursor
149 Current = 0;
161 Cursor() : CacheEntry(0), Current(0) {}
164 Cursor(const Cursor &O) : CacheEntry(0), Current(0) {
184 Current = CacheEntry ? CacheEntry->get(MBBNum) : &NoInterference;
189 return Current->First.isValid();
195 return Current->First;
201 return Current->Last;
/external/llvm/lib/Support/
H A DYAMLParser.cpp268 if (Current >= End)
269 Current = End - 1;
274 printError(SMLoc::getFromPointer(Current), SourceMgr::DK_Error, Message);
279 setError(Message, Current);
289 return StringRef(Current, End - Current);
469 StringRef::iterator Current; member in class:llvm::yaml::Scanner
474 /// @brief Current YAML indentation level in spaces.
477 /// @brief Current column number in Unicode code points.
480 /// @brief Current lin
[all...]
/external/mesa3d/src/glsl/glcpp/
H A Dglcpp.h72 # define YYLLOC_DEFAULT(Current, Rhs, N) \
76 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
77 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
78 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
79 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \
83 (Current).first_line = (Current).last_line = \
85 (Current).first_column = (Current).last_column = \
88 (Current)
[all...]
/external/v8/test/cctest/
H A Dtest-ast.cc42 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT);
43 AstNodeFactory<AstNullVisitor> factory(Isolate::Current());
H A Dtest-dataflow.cc39 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT);
63 CHECK_EQ(27, iter.Current());
65 CHECK_EQ(30, iter.Current());
67 CHECK_EQ(31, iter.Current());
69 CHECK_EQ(33, iter.Current());
/external/chromium/third_party/libjingle/source/talk/base/
H A Dasynchttprequest.cc42 factory_(Thread::Current()->socketserver(), user_agent),
66 Thread::Current()->PostDelayed(timeout_, this, MSG_TIMEOUT);
76 Thread::Current()->Clear(this, MSG_TIMEOUT);
108 Thread::Current()->ProcessMessages(kForever);
H A Dautodetectproxy.cc65 Thread::Current()->ProcessMessages(kForever);
92 Thread::Current()->Clear(this, MSG_TIMEOUT);
94 Thread::Current()->Dispose(socket_);
98 socket_ = Thread::Current()->socketserver()->CreateAsyncSocket(SOCK_STREAM);
105 Thread::Current()->PostDelayed(2000, this, MSG_TIMEOUT);
109 Thread::Current()->Clear(this, MSG_TIMEOUT);
117 Thread::Current()->Quit();
/external/clang/lib/Basic/
H A DModule.cpp73 for (const Module *Current = this; Current; Current = Current->Parent) {
74 for (unsigned I = 0, N = Current->Requires.size(); I != N; ++I) {
75 if (!hasFeature(Current->Requires[I], LangOpts, Target)) {
76 Feature = Current->Requires[I];
146 Module *Current = Stack.back(); local
149 if (!Current->IsAvailable)
152 Current
[all...]

Completed in 263 milliseconds

12345678910