Home
last modified time | relevance | path

Searched refs:context_ (Results 1 – 25 of 151) sorted by relevance

1234567

/external/libmojo/mojo/gpu/
Dmojo_gles2_impl_autogen.cc20 MojoGLES2MakeCurrent(context_); in ActiveTexture()
24 MojoGLES2MakeCurrent(context_); in AttachShader()
30 MojoGLES2MakeCurrent(context_); in BindAttribLocation()
34 MojoGLES2MakeCurrent(context_); in BindBuffer()
48 MojoGLES2MakeCurrent(context_); in BindFramebuffer()
52 MojoGLES2MakeCurrent(context_); in BindRenderbuffer()
59 MojoGLES2MakeCurrent(context_); in BindTexture()
70 MojoGLES2MakeCurrent(context_); in BlendColor()
74 MojoGLES2MakeCurrent(context_); in BlendEquation()
78 MojoGLES2MakeCurrent(context_); in BlendEquationSeparate()
[all …]
/external/ImageMagick/Magick++/lib/
DDrawable.cpp69 void Magick::DrawableBase::operator()(MagickCore::DrawingWand * context_) const in operator ()()
71 (void) context_; in operator ()()
118 void Magick::Drawable::operator()(MagickCore::DrawingWand * context_) const in operator ()()
121 dp->operator()(context_); in operator ()()
167 void Magick::VPath::operator()( MagickCore::DrawingWand * context_ ) const in operator ()()
170 dp->operator()( context_ ); in operator ()()
227 void Magick::DrawableAffine::operator()( MagickCore::DrawingWand * context_ ) const in operator ()()
229 DrawAffine( context_, &_affine ); in operator ()()
240 void Magick::DrawableAlpha::operator()(MagickCore::DrawingWand * context_) const in operator ()()
242 DrawAlpha(context_,_x,_y,_paintMethod); in operator ()()
[all …]
/external/webrtc/webrtc/libjingle/xmllite/
Dxmlparser.cc64 context_.Reset(); in Reset()
79 if (context_.RaisedError() != XML_ERROR_NONE) in ExpatStartElement()
82 context_.StartElement(); in ExpatStartElement()
86 context_.StartNamespace("", *(att + 1)); in ExpatStartElement()
91 context_.RaiseError(XML_ERROR_SYNTAX); in ExpatStartElement()
94 context_.StartNamespace((*att) + 6, *(att + 1)); in ExpatStartElement()
98 context_.SetPosition(XML_GetCurrentLineNumber(expat_), in ExpatStartElement()
101 pxph_->StartElement(&context_, name, atts); in ExpatStartElement()
106 if (context_.RaisedError() != XML_ERROR_NONE) in ExpatEndElement()
108 context_.EndElement(); in ExpatEndElement()
[all …]
/external/v8/src/debug/
Ddebug-scopes.cc33 context_ = Handle<Context>::cast(frame_inspector->GetContext()); in ScopeIterator()
43 while (context_->closure() == *function) { in ScopeIterator()
44 context_ = Handle<Context>(context_->previous(), isolate_); in ScopeIterator()
74 context_ = Handle<Context>(context_->declaration_context(), isolate_); in ScopeIterator()
76 while (context_->closure() == *function) { in ScopeIterator()
77 context_ = Handle<Context>(context_->previous(), isolate_); in ScopeIterator()
131 context_ = Handle<Context>(); in ScopeIterator()
139 context_(function->context()), in ScopeIterator()
141 if (!function->shared()->IsSubjectToDebugging()) context_ = Handle<Context>(); in ScopeIterator()
149 context_(generator->context()), in ScopeIterator()
[all …]
/external/protobuf/src/google/protobuf/compiler/java/
Djava_generator_factory.cc56 Context* context) : context_(context) { in ImmutableGeneratorFactory()
62 if (HasDescriptorMethods(descriptor, context_->EnforceLite())) { in NewMessageGenerator()
63 return new ImmutableMessageGenerator(descriptor, context_); in NewMessageGenerator()
65 return new ImmutableMessageLiteGenerator(descriptor, context_); in NewMessageGenerator()
71 if (HasDescriptorMethods(descriptor->file(), context_->EnforceLite())) { in NewExtensionGenerator()
72 return new ImmutableExtensionGenerator(descriptor, context_); in NewExtensionGenerator()
74 return new ImmutableExtensionLiteGenerator(descriptor, context_); in NewExtensionGenerator()
80 return new ImmutableServiceGenerator(descriptor, context_); in NewServiceGenerator()
Djava_message_lite.cc87 : MessageGenerator(descriptor), context_(context), in ImmutableMessageLiteGenerator()
89 field_generators_(descriptor, context_) { in ImmutableMessageLiteGenerator()
102 ImmutableMessageLiteGenerator(descriptor_->nested_type(i), context_) in GenerateStaticVariables()
114 ImmutableMessageLiteGenerator(descriptor_->nested_type(i), context_) in GenerateStaticVariableInitializers()
153 context_->GetOneofGeneratorInfo( in GenerateInterface()
156 context_->GetNameResolver()->GetImmutableClassName(descriptor_)); in GenerateInterface()
206 EnumLiteGenerator(descriptor_->enum_type(i), true, context_) in Generate()
214 descriptor_->nested_type(i), context_); in Generate()
236 vars["oneof_name"] = context_->GetOneofGeneratorInfo( in Generate()
238 vars["oneof_capitalized_name"] = context_->GetOneofGeneratorInfo( in Generate()
[all …]
Djava_message.cc94 : MessageGenerator(descriptor), context_(context), in ImmutableMessageGenerator()
96 field_generators_(descriptor, context_) { in ImmutableMessageGenerator()
149 ImmutableMessageGenerator(descriptor_->nested_type(i), context_) in GenerateStaticVariables()
186 ImmutableMessageGenerator(descriptor_->nested_type(i), context_) in GenerateStaticVariableInitializers()
230 const FieldGeneratorInfo* info = context_->GetFieldGeneratorInfo(field); in GenerateFieldAccessorTableInitializer()
238 const OneofGeneratorInfo* info = context_->GetOneofGeneratorInfo(oneof); in GenerateFieldAccessorTableInitializer()
280 context_->GetOneofGeneratorInfo( in GenerateInterface()
283 context_->GetNameResolver()->GetImmutableClassName( in GenerateInterface()
361 if (context_->HasGeneratedMethods(descriptor_)) { in Generate()
369 EnumGenerator(descriptor_->enum_type(i), true, context_) in Generate()
[all …]
Djava_message_builder.cc81 : descriptor_(descriptor), context_(context), in MessageBuilderGenerator()
83 field_generators_(descriptor, context_) { in MessageBuilderGenerator()
117 if (context_->HasGeneratedMethods(descriptor_)) { in Generate()
125 vars["oneof_name"] = context_->GetOneofGeneratorInfo( in Generate()
127 vars["oneof_capitalized_name"] = context_->GetOneofGeneratorInfo( in Generate()
227 const FieldGeneratorInfo* info = context_->GetFieldGeneratorInfo(field); in GenerateDescriptorMethods()
253 context_->GetFieldGeneratorInfo(field); in GenerateDescriptorMethods()
339 "oneof_name", context_->GetOneofGeneratorInfo( in GenerateCommonBuilderMethods()
426 "oneof_name", context_->GetOneofGeneratorInfo( in GenerateCommonBuilderMethods()
443 if (context_->HasGeneratedMethods(descriptor_)) { in GenerateCommonBuilderMethods()
[all …]
Djava_file.cc204 context_(new Context(file)), in FileGenerator()
205 name_resolver_(context_->GetNameResolver()), in FileGenerator()
208 context_->SetEnforceLite(enforce_lite); in FileGenerator()
210 new ImmutableGeneratorFactory(context_.get())); in FileGenerator()
268 HasDescriptorMethods(file_, context_->EnforceLite()) ? "" : "Lite"); in Generate()
288 if (HasDescriptorMethods(file_, context_->EnforceLite())) { in Generate()
289 EnumGenerator(file_->enum_type(i), immutable_api_, context_.get()) in Generate()
292 EnumLiteGenerator(file_->enum_type(i), immutable_api_, context_.get()) in Generate()
300 if (HasGenericServices(file_, context_->EnforceLite())) { in Generate()
326 if (HasDescriptorMethods(file_, context_->EnforceLite())) { in Generate()
[all …]
Djava_message_builder_lite.cc81 : descriptor_(descriptor), context_(context), in MessageBuilderLiteGenerator()
83 field_generators_(descriptor, context_) { in MessageBuilderLiteGenerator()
111 vars["oneof_name"] = context_->GetOneofGeneratorInfo( in Generate()
113 vars["oneof_capitalized_name"] = context_->GetOneofGeneratorInfo( in Generate()
/external/ImageMagick/Magick++/lib/Magick++/
DDrawable.h172 virtual void operator()( MagickCore::DrawingWand *context_ ) const = 0;
202 void operator()( MagickCore::DrawingWand *context_ ) const;
251 /*virtual*/ void operator()( MagickCore::DrawingWand *context_ ) const;
330 void operator()(MagickCore::DrawingWand *context_) const;
390 /*virtual*/ void operator()( MagickCore::DrawingWand *context_ ) const;
472 /*virtual*/ void operator()( MagickCore::DrawingWand *context_ ) const;
493 void operator()(MagickCore::DrawingWand *context_) const;
515 void operator()(MagickCore::DrawingWand *context_) const;
537 void operator()(MagickCore::DrawingWand *context_) const;
561 /*virtual*/ void operator()( MagickCore::DrawingWand *context_ ) const;
[all …]
/external/google-breakpad/src/processor/
Ddump_context.cc52 DumpContext::DumpContext() : context_(), in DumpContext()
79 return context_.x86; in GetContextX86()
88 return context_.ppc; in GetContextPPC()
97 return context_.ppc64; in GetContextPPC64()
106 return context_.amd64; in GetContextAMD64()
115 return context_.ctx_sparc; in GetContextSPARC()
124 return context_.arm; in GetContextARM()
133 return context_.arm64; in GetContextARM64()
142 return context_.ctx_mips; in GetContextMIPS()
193 context_.x86 = x86; in SetContextX86()
[all …]
/external/webrtc/webrtc/test/linux/
Dglx_renderer.cc27 context_(NULL) { in GlxRenderer()
52 context_ = glXCreateContext(display_, vi, 0, true); in Init()
53 if (context_ == NULL) { in Init()
79 if (!glXMakeCurrent(display_, window_, context_)) { in Init()
94 if (context_ != NULL) { in Destroy()
95 glXMakeCurrent(display_, window_, context_); in Destroy()
98 glXDestroyContext(display_, context_); in Destroy()
99 context_ = NULL; in Destroy()
122 if (!glXMakeCurrent(display_, window_, context_)) { in Resize()
155 if (!glXMakeCurrent(display_, window_, context_)) { in RenderFrame()
/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dwrapped_handler.hpp158 : context_(context), in rewrapped_handler()
164 : context_(context), in rewrapped_handler()
170 : context_(other.context_), in rewrapped_handler()
176 : context_(ASIO_MOVE_CAST(Context)(other.context_)), in rewrapped_handler()
192 Context context_; member in asio::detail::rewrapped_handler
244 size, this_handler->context_); in asio_handler_allocate()
252 pointer, size, this_handler->context_); in asio_handler_deallocate()
260 this_handler->context_); in asio_handler_is_continuation()
268 function, this_handler->context_); in asio_handler_invoke()
276 function, this_handler->context_); in asio_handler_invoke()
/external/libmojo/mojo/edk/system/
Dwaiter_test_utils.cc12 : base::SimpleThread("waiter_thread"), result_(result), context_(context) { in SimpleWaiterThread()
15 *context_ = 23489023; // "Random". in SimpleWaiterThread()
23 *result_ = waiter_.Wait(MOJO_DEADLINE_INDEFINITE, context_); in Run()
38 context_(context), in WaiterThread()
58 *result_out_ = dispatcher_->AddAwakable(&waiter_, handle_signals_, context_, in Run()
/external/regex-re2/re2/testing/
Dbacktrack.cc65 StringPiece context_; // greater context of text being searched member in re2::Backtracker
98 context_ = context; in Search()
99 if (context_.begin() == NULL) in Search()
100 context_ = text; in Search()
101 if (prog_->anchor_start() && text.begin() > context_.begin()) in Search()
103 if (prog_->anchor_end() && text.end() < context_.end()) in Search()
199 if (ip->empty() & ~Prog::EmptyFlags(context_, p)) in Visit()
209 if (endmatch_ && p != context_.end()) in Visit()
/external/v8/src/
Dcontext-measure.cc15 : context_(context), in ContextMeasure()
20 DCHECK(context_->IsNativeContext()); in ContextMeasure()
21 Object* next_link = context_->next_context_link(); in ContextMeasure()
22 MeasureObject(context_); in ContextMeasure()
24 context_->set(Context::NEXT_CONTEXT_LINK, next_link); in ContextMeasure()
/external/autotest/client/deps/glbench/src/
Dglx_stuff.cc38 context_ = CreateContext(); in Init()
39 if (!context_) in Init()
42 if (!glXMakeCurrent(g_xlib_display, g_xlib_window, context_)) { in Init()
43 glXDestroyContext(g_xlib_display, context_); in Init()
65 DeleteContext(context_); in Cleanup()
Dglx_stuff.h14 GLXInterface() : context_(NULL), in GLXInterface()
31 return context_; in GetMainContext()
39 GLXContext context_;
Degl_stuff.h18 context_(NULL) { } in EGLInterface()
34 return context_; in GetMainContext()
51 EGLContext context_; variable
Dwaffle_stuff.h18 context_(NULL) { } in WaffleInterface()
33 return context_; in GetMainContext()
51 struct waffle_context *context_; variable
/external/libchrome/base/trace_event/
Dheap_profiler.h43 : context_(task_context) { in HeapProfilerScopedTaskExecutionTracker()
48 ->PushCurrentTaskContext(context_); in HeapProfilerScopedTaskExecutionTracker()
57 ->PopCurrentTaskContext(context_); in ~HeapProfilerScopedTaskExecutionTracker()
62 const char* context_;
/external/v4l2_codec2/vda/
Dvp9_parser.cc223 context_.Reset(); in Reset()
252 Vp9UncompressedHeaderParser uncompressed_parser(&context_); in ParseNextFrame()
285 context_.frame_context_managers_[frame_context_idx]; in ParseNextFrame()
312 context_.UpdateFrameContext(frame_context_idx, in ParseNextFrame()
315 context_.MarkFrameContextForUpdate(frame_context_idx); in ParseNextFrame()
331 DCHECK_LT(frame_context_idx, arraysize(context_.frame_context_managers_)); in GetContextRefreshCb()
333 context_.frame_context_managers_[frame_context_idx]; in GetContextRefreshCb()
484 const Vp9SegmentationParams& segmentation = context_.segmentation(); in GetQIndex()
502 Vp9SegmentationParams& segmentation = context_.segmentation_; in SetupSegmentationDequant()
538 Vp9LoopFilterParams& loop_filter = context_.loop_filter_; in SetupLoopFilter()
[all …]
Dvp9_uncompressed_header_parser.cc621 : context_(context) {} in Vp9UncompressedHeaderParser()
714 const Vp9Parser::ReferenceSlot& ref = context_->GetRefSlot(idx); in ReadFrameSizeFromRefs()
732 const Vp9Parser::ReferenceSlot& ref = context_->GetRefSlot(idx); in ReadFrameSizeFromRefs()
765 memset(&context_->segmentation_, 0, sizeof(context_->segmentation_)); in SetupPastIndependence()
773 Vp9LoopFilterParams& loop_filter = context_->loop_filter_; in ReadLoopFilterParams()
817 Vp9SegmentationParams& segmentation = context_->segmentation_; in ReadSegmentationParams()
899 Vp9LoopFilterParams& loop_filter = context_->loop_filter_; in ResetLoopfilter()
1004 context_->GetRefSlot(fhdr->ref_frame_idx[i]); in Parse()
1067 context_->UpdateFrameContext(i, fhdr->frame_context); in Parse()
1069 context_->UpdateFrameContext(fhdr->frame_context_idx, in Parse()
/external/webrtc/webrtc/base/
Ddbus.cc133 context_(context), in DBusMonitoringThread()
139 ASSERT(context_); in DBusMonitoringThread()
176 g_source_attach(idle_source_, context_); in Stop()
233 g_main_context_push_thread_default(context_); in Setup()
238 context_, NULL); in Setup()
279 g_main_context_unref(context_); in CleanUp()
280 context_ = NULL; in CleanUp()
296 GMainContext *context_; member in rtc::DBusMonitor::DBusMonitoringThread

1234567