Searched refs:Current (Results 26 - 50 of 442) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/webrtc/base/
H A Dasynchttprequest.cc32 factory_(Thread::Current()->socketserver(), user_agent),
47 Thread::Current()->PostDelayed(start_delay_, this, MSG_LAUNCH_REQUEST);
57 Thread::Current()->Clear(this, MSG_TIMEOUT);
94 Thread::Current()->ProcessMessages(kForever);
112 Thread::Current()->PostDelayed(timeout_, this, MSG_TIMEOUT);
H A Dautodetectproxy.cc58 Thread::Current()->ProcessMessages(kForever);
135 Thread::Current()->Post(this, MSG_TIMEOUT);
142 Thread::Current()->Post(this, MSG_UNRESOLVABLE);
156 Thread::Current()->Clear(this, MSG_TIMEOUT);
157 Thread::Current()->Clear(this, MSG_UNRESOLVABLE);
159 Thread::Current()->Dispose(socket_);
173 Thread::Current()->Post(this, MSG_TIMEOUT);
177 Thread::Current()->PostDelayed(timeout, this, MSG_TIMEOUT);
186 Thread::Current()->socketserver()->CreateAsyncSocket(
200 Thread::Current()
[all...]
H A Dthread_unittest.cc153 Thread::Current()->ProcessMessages(50);
184 Thread* th_main = Thread::Current();
283 Thread* current_thread = Thread::Current();
308 Thread* thread_a = Thread::Current();
354 EXPECT_EQ(expected_thread_, Thread::Current());
397 SetExpectedThreadForIntCallback(Thread::Current());
416 Thread::Current()->ProcessMessages(kWaitTimeout);
428 &invoker, Thread::Current()));
433 Thread::Current()->ProcessMessages(kWaitTimeout);
445 &invoker, Thread::Current()));
[all...]
/external/chromium_org/v8/src/
H A Dlithium-inl.h40 LOperand* TempIterator::Current() { function in class:v8::internal::TempIterator
66 LOperand* InputIterator::Current() { function in class:v8::internal::InputIterator
97 LOperand* UseIterator::Current() { function in class:v8::internal::UseIterator
99 LOperand* result = input_iterator_.Done() ? env_iterator_.Current()
100 : input_iterator_.Current();
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Drastpos.c238 ctx->Current.RasterPos[0] = x;
239 ctx->Current.RasterPos[1] = y;
240 ctx->Current.RasterPos[2] = z2;
241 ctx->Current.RasterPos[3] = 1.0F;
243 ctx->Current.RasterPosValid = GL_TRUE;
246 ctx->Current.RasterDistance = ctx->Current.Attrib[VERT_ATTRIB_FOG][0];
248 ctx->Current.RasterDistance = 0.0;
251 ctx->Current.RasterColor[0]
252 = CLAMP(ctx->Current
[all...]
H A Darbprogram.c83 curProg = &ctx->VertexProgram.Current->Base;
89 curProg = &ctx->FragmentProgram.Current->Base;
140 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current,
145 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current,
150 ASSERT(ctx->VertexProgram.Current);
151 ASSERT(ctx->FragmentProgram.Current);
186 if (ctx->VertexProgram.Current &&
187 ctx->VertexProgram.Current->Base.Id == ids[i]) {
194 if (ctx->FragmentProgram.Current &&
195 ctx->FragmentProgram.Current
[all...]
/external/mesa3d/src/mesa/main/
H A Drastpos.c238 ctx->Current.RasterPos[0] = x;
239 ctx->Current.RasterPos[1] = y;
240 ctx->Current.RasterPos[2] = z2;
241 ctx->Current.RasterPos[3] = 1.0F;
243 ctx->Current.RasterPosValid = GL_TRUE;
246 ctx->Current.RasterDistance = ctx->Current.Attrib[VERT_ATTRIB_FOG][0];
248 ctx->Current.RasterDistance = 0.0;
251 ctx->Current.RasterColor[0]
252 = CLAMP(ctx->Current
[all...]
H A Darbprogram.c83 curProg = &ctx->VertexProgram.Current->Base;
89 curProg = &ctx->FragmentProgram.Current->Base;
140 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current,
145 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current,
150 ASSERT(ctx->VertexProgram.Current);
151 ASSERT(ctx->FragmentProgram.Current);
186 if (ctx->VertexProgram.Current &&
187 ctx->VertexProgram.Current->Base.Id == ids[i]) {
194 if (ctx->FragmentProgram.Current &&
195 ctx->FragmentProgram.Current
[all...]
/external/clang/include/clang/AST/
H A DRedeclarable.h175 /// Current - The current declaration.
176 decl_type *Current; member in class:clang::Redeclarable::redecl_iterator
187 redecl_iterator() : Current(nullptr) { }
189 : Current(C), Starter(C), PassedFirst(false) { }
191 reference operator*() const { return Current; }
192 pointer operator->() const { return Current; }
195 assert(Current && "Advancing while iterator has reached end");
197 if (Current->isFirstDecl()) {
200 Current = nullptr;
207 decl_type *Next = Current
[all...]
H A DDeclBase.h731 /// Current - The current declaration.
732 Decl *Current; member in class:clang::Decl::redecl_iterator
742 redecl_iterator() : Current(nullptr) { }
743 explicit redecl_iterator(Decl *C) : Current(C), Starter(C) { }
745 reference operator*() const { return Current; }
746 value_type operator->() const { return Current; }
749 assert(Current && "Advancing while iterator has reached end");
751 Decl *Next = Current->getNextRedeclarationImpl();
753 Current = (Next != Starter) ? Next : nullptr;
764 return x.Current
1274 Decl *Current; member in class:clang::DeclContext::decl_iterator
1337 DeclContext::decl_iterator Current; member in class:clang::DeclContext::specific_decl_iterator
1412 DeclContext::decl_iterator Current; member in class:clang::DeclContext::filtered_decl_iterator
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_cb_rasterpos.c124 src = ctx->Current.Attrib[defaultAttrib];
144 ctx->Current.RasterPosValid = GL_TRUE;
148 ctx->Current.RasterPos[0] = pos[0];
150 ctx->Current.RasterPos[1] = height - pos[1]; /* invert Y */
152 ctx->Current.RasterPos[1] = pos[1];
153 ctx->Current.RasterPos[2] = pos[2];
154 ctx->Current.RasterPos[3] = pos[3];
158 ctx->Current.RasterColor,
162 ctx->Current.RasterSecondaryColor,
167 ctx->Current
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_rasterpos.c124 src = ctx->Current.Attrib[defaultAttrib];
144 ctx->Current.RasterPosValid = GL_TRUE;
148 ctx->Current.RasterPos[0] = pos[0];
150 ctx->Current.RasterPos[1] = height - pos[1]; /* invert Y */
152 ctx->Current.RasterPos[1] = pos[1];
153 ctx->Current.RasterPos[2] = pos[2];
154 ctx->Current.RasterPos[3] = pos[3];
158 ctx->Current.RasterColor,
162 ctx->Current.RasterSecondaryColor,
167 ctx->Current
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_rasterpos.c363 * of ctx->Current.Raster* fields) could get lifted up into the
379 GLfloat *objnorm = ctx->Current.Attrib[VERT_ATTRIB_NORMAL];
389 ctx->Current.RasterPosValid = GL_FALSE;
395 ctx->Current.RasterPosValid = GL_FALSE;
402 ctx->Current.RasterPosValid = GL_FALSE;
412 ctx->Current.RasterPos[0] = (ndc[0] * ctx->Viewport._WindowMap.m[MAT_SX]
414 ctx->Current.RasterPos[1] = (ndc[1] * ctx->Viewport._WindowMap.m[MAT_SY]
416 ctx->Current.RasterPos[2] = (ndc[2] * ctx->Viewport._WindowMap.m[MAT_SZ]
419 ctx->Current.RasterPos[3] = clip[3];
422 ctx->Current
[all...]
/external/mesa3d/src/mesa/tnl/
H A Dt_rasterpos.c363 * of ctx->Current.Raster* fields) could get lifted up into the
379 GLfloat *objnorm = ctx->Current.Attrib[VERT_ATTRIB_NORMAL];
389 ctx->Current.RasterPosValid = GL_FALSE;
395 ctx->Current.RasterPosValid = GL_FALSE;
402 ctx->Current.RasterPosValid = GL_FALSE;
412 ctx->Current.RasterPos[0] = (ndc[0] * ctx->Viewport._WindowMap.m[MAT_SX]
414 ctx->Current.RasterPos[1] = (ndc[1] * ctx->Viewport._WindowMap.m[MAT_SY]
416 ctx->Current.RasterPos[2] = (ndc[2] * ctx->Viewport._WindowMap.m[MAT_SZ]
419 ctx->Current.RasterPos[3] = clip[3];
422 ctx->Current
[all...]
/external/llvm/lib/CodeGen/
H A DInterferenceCache.h173 BlockInterference *Current; member in class:llvm::InterferenceCache::Cursor
177 Current = nullptr;
189 Cursor() : CacheEntry(nullptr), Current(nullptr) {}
192 Cursor(const Cursor &O) : CacheEntry(nullptr), Current(nullptr) {
212 Current = CacheEntry ? CacheEntry->get(MBBNum) : &NoInterference;
217 return Current->First.isValid();
223 return Current->First;
229 return Current->Last;
/external/chromium_org/base/process/
H A Dprocess.h24 static Process Current();
H A Dprocess_posix.cc17 Process Process::Current() { function in class:base::Process
/external/llvm/lib/Support/
H A DYAMLParser.cpp277 if (Current >= End)
278 Current = End - 1;
283 printError(SMLoc::getFromPointer(Current), SourceMgr::DK_Error, Message);
288 setError(Message, Current);
298 return StringRef(Current, End - Current);
475 StringRef::iterator Current; member in class:llvm::yaml::Scanner
480 /// @brief Current YAML indentation level in spaces.
483 /// @brief Current column number in Unicode code points.
486 /// @brief Current lin
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
H A Dfakeperiodicvideocapturer.h59 rtc::Thread::Current()->Post(this, MSG_CREATEFRAME);
64 rtc::Thread::Current()->Clear(this);
71 rtc::Thread::Current()->PostDelayed(static_cast<int>(
/external/llvm/include/llvm/Object/
H A DSymbolicFile.h49 content_type Current; member in class:llvm::object::content_iterator
52 content_iterator(content_type symb) : Current(symb) {}
54 const content_type *operator->() const { return &Current; }
56 const content_type &operator*() const { return Current; }
59 return Current == other.Current;
67 Current.moveNext();
H A DELF.h69 ELFEntityIterator() : EntitySize(0), Current(nullptr) {}
71 : EntitySize(EntSize), Current(Start) {}
74 assert(Current && "Attempted to dereference an invalid iterator!");
75 return *reinterpret_cast<pointer>(Current);
79 assert(Current && "Attempted to dereference an invalid iterator!");
80 return reinterpret_cast<pointer>(Current);
84 return Current == Other.Current;
92 assert(Current && "Attempted to increment an invalid iterator!");
93 Current
121 const char *Current; member in class:llvm::object::ELFFile::ELFEntityIterator
227 ArchivePointerTypeTraits<const char> > Current; member in class:llvm::object::ELFFile::Elf_Sym_Iter
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonTreeNodeStream.cs135 object t = _it.Current;
141 return _it.Current; // don't give last UP; get EOF
151 t = _it.Current; // t is now DOWN, so get first real node next
154 t = _it.Current;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonTreeNodeStream.cs154 object t = _it.Current;
162 return _it.Current; // don't give last UP; get EOF
175 t = _it.Current; // t is now DOWN, so get first real node next
178 t = _it.Current;
/external/chromium_org/media/cast/common/
H A Dclock_drift_smoother.h26 base::TimeDelta Current() const;
/external/chromium_org/third_party/libjingle/source/talk/examples/stunserver/
H A Dstunserver_main.cc51 rtc::Thread *pthMain = rtc::Thread::Current();

Completed in 1475 milliseconds

1234567891011>>