Searched refs:Current (Results 151 - 175 of 442) sorted by relevance

1234567891011>>

/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-param-util.h105 // Current() on an iterator equal to BaseGenerator()->End().
107 virtual const T* Current() const = 0;
132 const T& operator*() const { return *impl_->Current(); }
133 const T* operator->() const { return impl_->Current(); }
234 virtual const T* Current() const { return &value_; } function in class:testing::internal::RangeGenerator::Iterator
326 // responsible for not calling Current() on an out-of-range iterator.
327 virtual const T* Current() const { function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
354 // value_ needs to be mutable to be accessed in Current().
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dchannel.cc177 ASSERT(worker_thread_ == rtc::Thread::Current());
182 ASSERT(worker_thread_ == rtc::Thread::Current());
284 rtc::Thread::Current()));
370 ASSERT(worker_thread_ == rtc::Thread::Current());
418 if (rtc::Thread::Current() != worker_thread_) {
657 ASSERT(worker_thread_ == rtc::Thread::Current());
667 ASSERT(worker_thread_ == rtc::Thread::Current());
677 ASSERT(worker_thread_ == rtc::Thread::Current());
689 ASSERT(worker_thread_ == rtc::Thread::Current());
694 ASSERT(worker_thread_ == rtc::Thread::Current());
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dstatscollector_unittest.cc78 : WebRtcSession(channel_manager, rtc::Thread::Current(),
79 rtc::Thread::Current(), NULL, NULL) {
440 rtc::Thread::Current())),
672 cricket::VideoChannel video_channel(rtc::Thread::Current(),
705 cricket::VideoChannel video_channel(rtc::Thread::Current(),
781 cricket::VideoChannel video_channel(rtc::Thread::Current(),
805 cricket::VideoChannel video_channel(rtc::Thread::Current(),
865 cricket::VideoChannel video_channel(rtc::Thread::Current(),
911 cricket::VideoChannel video_channel(rtc::Thread::Current(),
937 cricket::VideoChannel video_channel(rtc::Thread::Current(),
[all...]
/external/clang/include/clang/AST/
H A DDeclObjC.h505 /// Current sub-classes are ObjCInterfaceDecl, ObjCCategoryDecl,
1045 ObjCCategoryDecl *Current; member in class:clang::ObjCInterfaceDecl::filtered_category_iterator
1056 filtered_category_iterator() : Current(nullptr) { }
1057 explicit filtered_category_iterator(ObjCCategoryDecl *Current) argument
1058 : Current(Current)
1063 reference operator*() const { return Current; }
1064 pointer operator->() const { return Current; }
1076 return X.Current == Y.Current;
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dpseudotcp_unittest.cc168 rtc::Thread::Current()->PostDelayed(delay_, this, id,
180 rtc::Thread::Current()->Clear(this, message);
181 rtc::Thread::Current()->PostDelayed(interval, this, message);
477 rtc::Thread::Current()->Post(this, MSG_WRITE);
575 static_cast<int>(rtc::Thread::Current()->size());
583 rtc::Thread::Current()->PostDelayed(10, this, MSG_WRITE);
H A Drelayport_unittest.cc64 : main_(rtc::Thread::Current()),
70 socket_factory_(rtc::Thread::Current()),
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dnvprogram.c387 COPY_4V(params, ctx->Current.Attrib[index]);
431 COPY_4V(params, ctx->Current.Attrib[index]);
475 params[0] = (GLint) ctx->Current.Attrib[index][0];
476 params[1] = (GLint) ctx->Current.Attrib[index][1];
477 params[2] = (GLint) ctx->Current.Attrib[index][2];
478 params[3] = (GLint) ctx->Current.Attrib[index][3];
H A Dcontext.c451 * Initialize fields of gl_current_attrib (aka ctx->Current.*)
459 for (i = 0; i < Elements(ctx->Current.Attrib); i++) {
460 ASSIGN_4V( ctx->Current.Attrib[i], 0.0, 0.0, 0.0, 1.0 );
464 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_WEIGHT], 1.0, 0.0, 0.0, 0.0 );
465 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_NORMAL], 0.0, 0.0, 1.0, 1.0 );
466 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR0], 1.0, 1.0, 1.0, 1.0 );
467 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR1], 0.0, 0.0, 0.0, 1.0 );
468 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR_INDEX], 1.0, 0.0, 0.0, 1.0 );
469 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_EDGEFLAG], 1.0, 0.0, 0.0, 1.0 );
1115 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current, NUL
[all...]
/external/llvm/lib/CodeGen/
H A DPostRASchedulerList.cpp309 MachineBasicBlock::iterator Current = MBB->end(); local
311 for (MachineBasicBlock::iterator I = Current; I != MBB->begin(); ) {
318 Scheduler.enterRegion(MBB, I, Current, CurrentCount - Count);
323 Current = MI;
332 assert((MBB->begin() == Current || CurrentCount != 0) &&
334 Scheduler.enterRegion(MBB, MBB->begin(), Current, CurrentCount);
/external/llvm/lib/Transforms/Scalar/
H A DSeparateConstOffsetFromGEP.cpp439 Value *Current = V; local
443 if (Constant *C = dyn_cast<Constant>(Current)) {
444 // If Current is a constant, apply s/zext using ConstantExpr::getCast.
446 Current = ConstantExpr::getCast((*I)->getOpcode(), C, (*I)->getType());
449 Ext->setOperand(0, Current);
451 Current = Ext;
454 return Current;
/external/mesa3d/src/mesa/main/
H A Dnvprogram.c387 COPY_4V(params, ctx->Current.Attrib[index]);
431 COPY_4V(params, ctx->Current.Attrib[index]);
475 params[0] = (GLint) ctx->Current.Attrib[index][0];
476 params[1] = (GLint) ctx->Current.Attrib[index][1];
477 params[2] = (GLint) ctx->Current.Attrib[index][2];
478 params[3] = (GLint) ctx->Current.Attrib[index][3];
H A Dcontext.c451 * Initialize fields of gl_current_attrib (aka ctx->Current.*)
459 for (i = 0; i < Elements(ctx->Current.Attrib); i++) {
460 ASSIGN_4V( ctx->Current.Attrib[i], 0.0, 0.0, 0.0, 1.0 );
464 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_WEIGHT], 1.0, 0.0, 0.0, 0.0 );
465 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_NORMAL], 0.0, 0.0, 1.0, 1.0 );
466 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR0], 1.0, 1.0, 1.0, 1.0 );
467 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR1], 0.0, 0.0, 0.0, 1.0 );
468 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR_INDEX], 1.0, 0.0, 0.0, 1.0 );
469 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_EDGEFLAG], 1.0, 0.0, 0.0, 1.0 );
1115 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current, NUL
[all...]
/external/chromium_org/media/cast/net/rtcp/
H A Drtcp.cc276 if (measured_offset < local_clock_ahead_by_.Current()) {
285 << "filtered=" << local_clock_ahead_by_.Current().InMicroseconds()
308 local_clock_ahead_by_.Current();
/external/chromium_org/third_party/webrtc/base/
H A Dcpumonitor_unittest.cc325 LOG(LS_INFO) << "Current Cpus: " << std::setw(9) << current_cpus;
369 CpuMonitor monitor(Thread::Current());
382 Thread::Current()->ProcessMessages(20);
384 Thread::Current()->ProcessMessages(20);
H A Dcriticalsection_unittest.cc72 << "Thread=" << Thread::Current() << " value=" << values[i];
H A Dmessagequeue_unittest.cc118 UnwrapMainThreadScope() : rewrap_(Thread::Current() != NULL) {
H A Dthread.cc41 Thread* Thread::Current() { function in class:rtc::Thread
129 : thread_(Thread::Current()),
343 Thread* current = Thread::Current();
432 Thread *current_thread = Thread::Current();
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
H A Dfakemediastreamsignaling.h48 webrtc::MediaStreamSignaling(rtc::Thread::Current(), this,
/external/chromium_org/v8/src/
H A Dhydrogen-store-elimination.cc35 HInstruction* instr = it.Current();
/external/libpcap/
H A Dgrammar.c1472 # define YYLLOC_DEFAULT(Current, Rhs, N) \
1476 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
1477 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
1478 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
1479 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
1483 (Current).first_line = (Current).last_line = \
1485 (Current).first_column = (Current).last_column = \
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/program/
H A Dprogram_parse.tab.c176 #define YYLLOC_DEFAULT(Current, Rhs, N) \
179 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
180 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
181 (Current).position = YYRHSLOC(Rhs, 1).position; \
182 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
183 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \
185 (Current).first_line = YYRHSLOC(Rhs, 0).last_line; \
186 (Current).last_line = (Current).first_line; \
187 (Current)
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dvideoengine_unittest.h137 EXPECT_TRUE(engine_.Init(rtc::Thread::Current())); \
147 EXPECT_TRUE(engine_.Init(rtc::Thread::Current()));
162 EXPECT_TRUE(engine_.Init(rtc::Thread::Current()));
497 EXPECT_TRUE(engine_.Init(rtc::Thread::Current()));
602 rtc::Thread::Current()->ProcessMessages(100);
614 bool ret = rtc::Thread::Current()->ProcessMessages(wait_ms);
1339 rtc::Thread::Current()->ProcessMessages(time_between_send);
1392 rtc::Thread::Current()->ProcessMessages(300);
1497 EXPECT_TRUE(rtc::Thread::Current()->ProcessMessages(30));
1546 rtc::Thread::Current()
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Dintel_pixel_bitmap.c214 COPY_4V(tmpColor, ctx->Current.RasterColor);
217 ADD_3V(tmpColor, tmpColor, ctx->Current.RasterSecondaryColor);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dintel_pixel_bitmap.c214 COPY_4V(tmpColor, ctx->Current.RasterColor);
217 ADD_3V(tmpColor, tmpColor, ctx->Current.RasterSecondaryColor);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_pixel_bitmap.c214 COPY_4V(tmpColor, ctx->Current.RasterColor);
217 ADD_3V(tmpColor, tmpColor, ctx->Current.RasterSecondaryColor);

Completed in 4925 milliseconds

1234567891011>>