Searched defs:_type (Results 1 - 25 of 55) sorted by relevance

123

/external/jmdns/src/javax/jmdns/impl/tasks/resolver/
H A DServiceResolver.java25 private final String _type; field in class:ServiceResolver
29 this._type = type;
64 newOut = this.addQuestion(newOut, DNSQuestion.newQuestion(_type, DNSRecordType.TYPE_PTR, DNSRecordClass.CLASS_IN, DNSRecordClass.NOT_UNIQUE));
65 // newOut = this.addQuestion(newOut, DNSQuestion.newQuestion(_type, DNSRecordType.TYPE_SRV, DNSRecordClass.CLASS_IN, DNSRecordClass.NOT_UNIQUE));
/external/libxcam/wrapper/gstreamer/
H A Dgstxcambuffermeta.cpp33 GType _type = gst_meta_api_type_register ("GstXCamBuffer", xcam_buf_tags); local
34 g_once_init_leave (&xcam_buf_type, _type);
/external/libxcam/xcore/
H A Dx3a_event.h40 , _type (type)
49 return _type;
57 X3aEvent::Type _type; member in class:XCam::X3aEvent
H A Dx3a_result.h39 : _type (type)
65 return _type;
86 //XCam3aResultType _type;
87 uint32_t _type; // XCam3aResultType member in class:XCam::X3aResult
/external/tensorflow/tensorflow/contrib/py2tf/pyct/
H A Dpretty_printer.py38 def _type(self, node): member in class:PrettyPrinter
65 self._type(node), cont))
67 self._print('%s%s%s' % (self._indent(), self._type(node), cont))
/external/jmdns/src/javax/jmdns/impl/
H A DServiceEventImpl.java28 private final String _type; field in class:ServiceEventImpl
52 this._type = type;
72 return _type;
H A DDNSEntry.java28 private final String _type; field in class:DNSEntry
52 _type = (application.length() > 0 ? "_" + application + "." : "") + (protocol.length() > 0 ? "_" + protocol + "." : "") + domain + ".";
53 _key = ((instance.length() > 0 ? instance + "." : "") + _type).toLowerCase();
113 return (_type != null ? _type : "");
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimToken.cs42 private short _type; field in struct:Antlr.Runtime.SlimToken
50 _type = (short)type;
70 return _type;
74 _type = (short)value;
/external/ltp/android/tools/
H A Dcheck_success_build.py29 _type: string, type of module
35 _type = None variable in class:Module
55 self._type = None
59 self._type = None
61 self._type = self._header[0]
72 if self._type is None:
75 counts[self._type] = counts.get(self._type, 0) + 1
80 }[self._type]()
/external/python/cpython2/Lib/
H A Dpprint.py52 _type = type variable
141 typ = _type(object)
244 typ = _type(object)
329 % (_type(object).__name__, _id(object)))
/external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
H A D_typecheck.py67 def _type(self): member in class:_SingleArgumentType
97 return isinstance(instance, (self._type, type(None)))
108 and all(isinstance(x, self._type) for x in instance))
119 and all(isinstance(x, self._type) for x in instance))
137 and all(isinstance(x, self._type) for x in instance))
/external/tensorflow/tensorflow/contrib/linalg/python/ops/
H A Dlinear_operator_addition.py296 types = {_type(op1), _type(op2)}
302 if _type(op1) == _SCALED_IDENTITY:
307 if _type(op2) == _SCALED_IDENTITY:
325 types = {_type(op1), _type(op2)}
341 types = {_type(op1), _type(op2)}
345 if _type(op1) in _EFFICIENT_ADD_TO_TENSOR:
366 if _type(op
396 def _type(operator): function
[all...]
/external/libxcam/capi/
H A Dcontext_priv.h77 return _type;
93 HandleType _type; member in class:ContextBase
/external/libxcam/modules/ocl/
H A Dcl_tnr_handler.h51 CLTnrType _type; member in class:XCam::CLTnrImageKernel
118 CLTnrType _type; member in class:XCam::CLTnrImageHandler
/external/skia/bench/
H A DRectBench.cpp216 RectBench(2), fMode(mode), _type(type) {
236 if (_type == KMaskShader) {
246 switch (_type) {
274 kMaskType _type; member in class:BlitMaskBench
/external/skqp/bench/
H A DRectBench.cpp216 RectBench(2), fMode(mode), _type(type) {
236 if (_type == KMaskShader) {
246 switch (_type) {
274 kMaskType _type; member in class:BlitMaskBench
/external/webrtc/webrtc/modules/video_coding/test/
H A Dvideo_source.h68 webrtc::VideoType GetType() const { return _type; }
81 webrtc::VideoType _type; member in class:VideoSource
/external/xmlrpcpp/src/
H A DXmlRpcValue.h46 XmlRpcValue() : _type(TypeInvalid) { _value.asBinary = 0; }
47 XmlRpcValue(bool value) : _type(TypeBoolean) { _value.asBool = value; }
48 XmlRpcValue(int value) : _type(TypeInt) { _value.asInt = value; }
49 XmlRpcValue(double value) : _type(TypeDouble) { _value.asDouble = value; }
51 XmlRpcValue(std::string const& value) : _type(TypeString)
54 XmlRpcValue(const char* value) : _type(TypeString)
57 XmlRpcValue(struct tm* value) : _type(TypeDateTime)
61 XmlRpcValue(void* value, int nBytes) : _type(TypeBase64)
67 XmlRpcValue(std::string const& xml, int* offset) : _type(TypeInvalid)
68 { if ( ! fromXml(xml,offset)) _type
172 Type _type; member in class:XmlRpc::XmlRpcValue
[all...]
/external/deqp/external/openglcts/modules/common/
H A DglcShaderIntegerMixTests.cpp277 glu::GLSLVersion glslVersion, const char* _type)
278 : ShaderIntegerMixCase(context, name, description, glslVersion), type(_type)
276 ShaderIntegerMixRenderCase(Context& context, const char* name, const char* description, glu::GLSLVersion glslVersion, const char* _type) argument
/external/deqp/external/vulkancts/modules/vulkan/draw/
H A DvktDrawCreateInfoUtil.hpp258 DescriptorPoolSize (vk::VkDescriptorType _type, deUint32 _descriptorCount) argument
260 type = _type;
/external/webrtc/webrtc/modules/video_coding/
H A Dmedia_opt_util.h107 enum VCMProtectionMethodEnum Type() const { return _type; }
155 enum VCMProtectionMethodEnum _type; member in class:webrtc::media_optimization::VCMProtectionMethod
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Dndis_events.c197 int _type; local
201 _type = (int) type;
202 os_memcpy(buf, &_type, sizeof(_type));
203 pos = buf + sizeof(_type);
/external/wpa_supplicant_8/src/drivers/
H A Dndis_events.c197 int _type; local
201 _type = (int) type;
202 os_memcpy(buf, &_type, sizeof(_type));
203 pos = buf + sizeof(_type);
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Dndis_events.c197 int _type; local
201 _type = (int) type;
202 os_memcpy(buf, &_type, sizeof(_type));
203 pos = buf + sizeof(_type);
/external/deqp/external/openglcts/modules/gles31/
H A Des31cExplicitUniformLocationTest.cpp599 UniformValue(const UniformType& _type, UniformValueGenerator& generator) : type(_type) argument
667 Uniform(UniformValueGenerator& generator, UniformType _type, Loc _location, argument
669 : type(_type)
673 , value(_type, generator)

Completed in 680 milliseconds

123