Home
last modified time | relevance | path

Searched refs:_context (Results 1 – 25 of 67) sorted by relevance

123

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/
DPropertyValueBuffer.java31 protected final DeserializationContext _context; field in PropertyValueBuffer
90 _context = ctxt; in PropertyValueBuffer()
134 … if (value == null && _context.isEnabled(DeserializationFeature.FAIL_ON_NULL_CREATOR_PROPERTIES)) { in getParameter()
135 return _context.reportInputMismatch(prop, in getParameter()
171 if (_context.isEnabled(DeserializationFeature.FAIL_ON_NULL_CREATOR_PROPERTIES)) { in getParameters()
175 _context.reportInputMismatch(prop, in getParameters()
189 return _context.findInjectableValue(prop.getInjectableValueId(), in _findMissing()
194 _context.reportInputMismatch(prop, "Missing required creator property '%s' (index %d)", in _findMissing()
197 if (_context.isEnabled(DeserializationFeature.FAIL_ON_MISSING_CREATOR_PROPERTIES)) { in _findMissing()
198 _context.reportInputMismatch(prop, in _findMissing()
[all …]
/external/python/pyopenssl/src/OpenSSL/
DSSL.py647 self._context = context
692 self._context, cafile, capath
731 self._context, self._passphrase_callback
755 set_result = _lib.SSL_CTX_set_default_verify_paths(self._context)
826 self._context, certfile
848 self._context, certfile, filetype
863 use_result = _lib.SSL_CTX_use_certificate(self._context, cert._x509)
878 add_result = _lib.SSL_CTX_add_extra_chain_cert(self._context, copy)
909 self._context, keyfile, filetype
924 use_result = _lib.SSL_CTX_use_PrivateKey(self._context, pkey._pkey)
[all …]
/external/OpenCL-CTS/test_conformance/gles/
Dsetup_egl.cpp34 EGLContext _context; member in EGLGLEnvironment
41 ,_context(NULL) in EGLGLEnvironment()
91 _context = eglCreateContext(_display, config, NULL, ContextAttribs); in Init()
97 eglMakeCurrent(_display, _surface, _surface, _context); in Init()
107 CL_GL_CONTEXT_KHR, (cl_context_properties) _context, in CreateCLContext()
193 eglDestroyContext(_display, _context); in terminate_egl_display()
195 _context = EGL_NO_CONTEXT; in terminate_egl_display()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/
DByteSourceJsonBootstrapper.java31 private final IOContext _context; field in ByteSourceJsonBootstrapper
88 _context = ctxt; in ByteSourceJsonBootstrapper()
97 _context = ctxt; in ByteSourceJsonBootstrapper()
174 _context.setEncoding(enc); in detectEncoding()
215 JsonEncoding enc = _context.getEncoding(); in constructReader()
230 in = new MergedStream(_context, in, _inputBuffer, _inputPtr, _inputEnd); in constructReader()
236 return new UTF32Reader(_context, _in, _inputBuffer, _inputPtr, _inputEnd, in constructReader()
237 _context.getEncoding().isBigEndian()); in constructReader()
256 return new UTF8StreamJsonParser(_context, parserFeatures, _in, codec, can, in constructParser()
260 return new ReaderBasedJsonParser(_context, parserFeatures, constructReader(), codec, in constructParser()
/external/libiio/src/bindings/python/
Diio.py719 def __init__(self, _context=None): argument
731 self._context = None
733 if(_context is None):
734 self._context = _new_default()
735 elif type(_context) is str or type(_context) is unicode:
736 self._context = _new_uri(_context.encode('ascii'))
738 self._context = _context
741 for x in range(0, _get_attrs_count(self._context)):
744 _get_attr(self._context, x, _byref(str1), _byref(str2))
749 [ _get_device(self._context, x) for x in range(0, _devices_count(self._context)) ]]
[all …]
/external/python/cpython2/Lib/
Dssl.py369 _context=self)
542 _context=None): argument
545 if _context:
546 self._context = _context
555 self._context = SSLContext(ssl_version)
556 self._context.verify_mode = cert_reqs
558 self._context.load_verify_locations(ca_certs)
560 self._context.load_cert_chain(certfile, keyfile)
562 self._context.set_npn_protocols(npn_protocols)
564 self._context.set_ciphers(ciphers)
[all …]
/external/skia/modules/canvaskit/htmlcanvas/
Dhtmlcanvas.js11 this._context = new CanvasRenderingContext2D(skSurface.getCanvas());
44 return this._context;
75 this._context._dispose();
/external/skqp/experimental/canvaskit/htmlcanvas/
Dhtmlcanvas.js11 this._context = new CanvasRenderingContext2D(skSurface.getCanvas());
44 return this._context;
75 this._context._dispose();
/external/mesa3d/src/gallium/auxiliary/driver_trace/
Dtr_context.c1419 trace_context_transfer_map(struct pipe_context *_context, in trace_context_transfer_map() argument
1426 struct trace_context *tr_context = trace_context(_context); in trace_context_transfer_map()
1452 trace_context_transfer_flush_region( struct pipe_context *_context, in trace_context_transfer_flush_region() argument
1456 struct trace_context *tr_context = trace_context(_context); in trace_context_transfer_flush_region()
1465 trace_context_transfer_unmap(struct pipe_context *_context, in trace_context_transfer_unmap() argument
1468 struct trace_context *tr_ctx = trace_context(_context); in trace_context_transfer_unmap()
1542 trace_context_buffer_subdata(struct pipe_context *_context, in trace_context_buffer_subdata() argument
1547 struct trace_context *tr_context = trace_context(_context); in trace_context_buffer_subdata()
1571 trace_context_texture_subdata(struct pipe_context *_context, in trace_context_texture_subdata() argument
1580 struct trace_context *tr_context = trace_context(_context); in trace_context_texture_subdata()
[all …]
/external/rust/crates/criterion/src/
Dreport.rs265 fn test_start(&self, _id: &BenchmarkId, _context: &ReportContext) {} in test_start()
266 fn test_pass(&self, _id: &BenchmarkId, _context: &ReportContext) {} in test_pass()
268 fn benchmark_start(&self, _id: &BenchmarkId, _context: &ReportContext) {} in benchmark_start()
269 fn profile(&self, _id: &BenchmarkId, _context: &ReportContext, _profile_ns: f64) {} in profile()
270 fn warmup(&self, _id: &BenchmarkId, _context: &ReportContext, _warmup_ns: f64) {} in warmup()
271 fn terminated(&self, _id: &BenchmarkId, _context: &ReportContext) {} in terminated()
272 fn analysis(&self, _id: &BenchmarkId, _context: &ReportContext) {} in analysis()
276 _context: &ReportContext, in measurement_start()
285 _context: &ReportContext, in measurement_complete()
292 _context: &ReportContext, in summarize()
[all …]
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DMappingIterator.java61 protected final DeserializationContext _context; field in MappingIterator
124 _context = ctxt; in MappingIterator()
280 value = _deserializer.deserialize(_parser, _context); in nextValue()
282 _deserializer.deserialize(_parser, _context, _updatedValue); in nextValue()
DObjectReader.java64 protected final DefaultDeserializationContext _context; field in ObjectReader
182 _context = mapper._deserializationContext; in ObjectReader()
205 _context = base._context; in ObjectReader()
226 _context = base._context; in ObjectReader()
246 _context = base._context; in ObjectReader()
263 _context = base._context; in ObjectReader()
2250 return _context.createInstance(_config, p, _injectableValues); in createDeserializationContext()
2255 return _context.createDummyInstance(_config); in createDummyDeserializationContext()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/
DBeanDeserializerBuilder.java35 final protected DeserializationContext _context; field in BeanDeserializerBuilder
127 _context = ctxt; in BeanDeserializerBuilder()
138 _context = src._context; in BeanDeserializerBuilder()
429 _context.reportBadDefinition(_beanDesc.getType(), in buildBuilderBased()
441 _context.reportBadDefinition(_beanDesc.getType(), in buildBuilderBased()
/external/OpenCL-CTS/test_conformance/non_uniform_work_group/
DTestNonUniformWorkGroup.h97 const cl_context _context; variable
128 : _device (device), _context (context), _queue (queue), _failCounter (0), _overallCounter (0) {} in SubTestExecutor()
144 const cl_context _context; variable
DTestNonUniformWorkGroup.cpp251 : _device(device), _context(context), _queue(queue), _dims(dims) in TestNonUniformWorkGroup()
560 err = create_single_kernel_helper_with_build_options (_context, &_program, &_testKernel, 1, in prepareDevice()
722 …clMemWrapper resultsRegionArray = clCreateBuffer(_context, CL_MEM_READ_WRITE | CL_MEM_USE_HOST_PTR… in runKernel()
737 …clMemWrapper testGlobalArray = clCreateBuffer(_context, CL_MEM_READ_WRITE, globalBufferSize, NULL,… in runKernel()
744 …clMemWrapper globalAtomicTestVariable = clCreateBuffer(_context, (CL_MEM_READ_WRITE | CL_MEM_COPY_… in runKernel()
750 …clMemWrapper errorArray = clCreateBuffer(_context, CL_MEM_READ_WRITE | CL_MEM_USE_HOST_PTR, _err.e… in runKernel()
799 TestNonUniformWorkGroup test(_device, _context, _queue, dims, globalSize, in runTestNonUniformWorkGroup()
843 err = create_single_kernel_helper_with_build_options (_context, &program, &testKernel, 1, in calculateWorkGroupSize()
/external/python/cpython3/Lib/asyncio/
Dtasks.py134 self._context = contextvars.copy_context()
136 self._loop.call_soon(self.__step, context=self._context)
284 self.__step, new_exc, context=self._context)
290 self.__step, new_exc, context=self._context)
294 self.__wakeup, context=self._context)
305 self.__step, new_exc, context=self._context)
309 self._loop.call_soon(self.__step, context=self._context)
316 self.__step, new_exc, context=self._context)
321 self.__step, new_exc, context=self._context)
/external/parameter-framework/upstream/tools/xmlGenerator/
DEddParser.py78 self._context = {
86 self._context = propagationContext
90 contextCopy = self._context.copy()
92 for key in iter(self._context):
98 return self._context["DomainOptions"]
101 return self._context["Configurations"]
104 return self._context["ConfigurationOptions"]
107 return self._context["Rules"]
110 return self._context["PathOptions"]
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/io/
DUTF32Reader.java21 final protected IOContext _context; field in UTF32Reader
58 _context = ctxt; in UTF32Reader()
263 _context.releaseReadIOBuffer(buf); in freeBuffers()
DUTF8Writer.java12 final private IOContext _context; field in UTF8Writer
31 _context = ctxt; in UTF8Writer()
66 _context.releaseWriteEncodingBuffer(buf); in close()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/debug/internal/
DDebugCoroutineInfoImpl.kt32 private val _context = WeakReference(context) constant
34 get() = _context.get()
/external/skia/experimental/skottiekit/
Dinterface.js22 if (this._context !== undefined) {
23 SkottieKit.setCurrentContext(this._context);
/external/tensorflow/tensorflow/python/summary/
Dsummary.py39 from tensorflow.python.eager import context as _context unknown
363 if _context.executing_eagerly():
398 if _context.executing_eagerly():
/external/compiler-rt/lib/asan/scripts/
Dasan_device_setup381 local _context=$4
383 echo "Installing $_to/$_basename $_mode $_context"
389 if [[ -n "$_context" ]]; then
390 adb_shell chcon "$_context" "$_to/$_basename"
/external/libchrome/third_party/jinja2/
Dasyncsupport.py85 rv = await concat_async(self._stack[self._depth](self._context))
86 if self._context.eval_ctx.autoescape:
92 if not self._context.environment.is_async:
/external/python/jinja/src/jinja2/
Dasyncsupport.py78 rv = await concat_async(self._stack[self._depth](self._context))
79 if self._context.eval_ctx.autoescape:
85 if not self._context.environment.is_async:

123