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

1234567891011

/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/lib/Target/NVPTX/
H A DManagedStringPool.h33 SmallVector<std::string *, 8>::iterator Current = Pool.begin(); local
34 while (Current != Pool.end()) {
35 delete *Current;
36 Current++;
/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.h115 /// Current - The current declaration.
116 decl_type *Current; member in class:clang::Redeclarable::redecl_iterator
127 redecl_iterator() : Current(0) { }
129 : Current(C), Starter(C), PassedFirst(false) { }
131 reference operator*() const { return Current; }
132 pointer operator->() const { return Current; }
135 assert(Current && "Advancing while iterator has reached end");
137 if (Current->isFirstDeclaration()) {
140 Current = 0;
147 decl_type *Next = Current
[all...]
H A DAttr.h157 /// Current - The current, underlying iterator.
164 mutable Iterator Current; member in class:clang::specific_attr_iterator
167 while (!isa<SpecificAttr>(*Current))
168 ++Current;
172 while (Current != I && !isa<SpecificAttr>(*Current))
173 ++Current;
183 specific_attr_iterator() : Current() { }
184 explicit specific_attr_iterator(Iterator i) : Current(i) { }
188 return cast<SpecificAttr>(*Current);
[all...]
H A DDeclBase.h691 /// Current - The current declaration.
692 Decl *Current; member in class:clang::Decl::redecl_iterator
702 redecl_iterator() : Current(0) { }
703 explicit redecl_iterator(Decl *C) : Current(C), Starter(C) { }
705 reference operator*() const { return Current; }
706 value_type operator->() const { return Current; }
709 assert(Current && "Advancing while iterator has reached end");
711 Decl *Next = Current->getNextRedeclaration();
713 Current = (Next != Starter ? Next : 0);
724 return x.Current
1177 Decl *Current; member in class:clang::DeclContext::decl_iterator
1234 DeclContext::decl_iterator Current; member in class:clang::DeclContext::specific_decl_iterator
1309 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.h163 BlockInterference *Current; member in class:llvm::InterferenceCache::Cursor
167 Current = 0;
179 Cursor() : CacheEntry(0), Current(0) {}
182 Cursor(const Cursor &O) : CacheEntry(0), Current(0) {
202 Current = CacheEntry ? CacheEntry->get(MBBNum) : &NoInterference;
207 return Current->First.isValid();
213 return Current->First;
219 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/clang/unittests/Tooling/
H A DCommentHandlerTest.cpp91 CommentList::const_iterator Current; member in class:clang::CommentVerifier
97 : Current(Comments.begin()), End(Comments.end()), PP(PP)
101 if (Current != End) {
102 EXPECT_TRUE(Current == End) << "Unexpected comment \""
103 << Current->Message << "\" at line " << Current->Line << ", column "
104 << Current->Col;
109 EXPECT_TRUE(Current != End) << "Comment " << Message << " not found";
110 if (Current == End) return;
112 const Comment &C = *Current;
[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());
/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);
/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 526 milliseconds

1234567891011