HomeSort by relevance Sort by last modified time
    Searched defs:_type (Results 1 - 25 of 201) sorted by null

1 2 3 4 5 6 7 8 9

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/h/
SCommonAST.h 13 int _type; member in class:SORCommonAST
19 int type() { return _type; }
22 void setType(int t) { _type = t; }
  /external/jmdns/src/javax/jmdns/impl/tasks/resolver/
ServiceResolver.java 25 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/
gstxcambuffermeta.cpp 33 GType _type = gst_meta_api_type_register ("GstXCamBuffer", xcam_buf_tags); local
34 g_once_init_leave (&xcam_buf_type, _type);
  /external/libxcam/xcore/
x3a_event.h 40 , _type (type)
49 return _type;
57 X3aEvent::Type _type; member in class:XCam::X3aEvent
  /external/tensorflow/tensorflow/contrib/py2tf/pyct/
pretty_printer.py 38 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))
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue9604b.go 17 type _type struct { type
24 func (t *_type) testvalues() []*big.Int {
51 func (t *_type) trunc(x *big.Int) *big.Int {
65 var types = []_type{
66 _type{"byte", 8, false},
67 _type{"int8", 8, true},
68 _type{"uint8", 8, false},
69 _type{"rune", 32, true},
70 _type{"int16", 16, true},
71 _type{"uint16", 16, false}
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
issue9604b.go 17 type _type struct { type
24 func (t *_type) testvalues() []*big.Int {
51 func (t *_type) trunc(x *big.Int) *big.Int {
65 var types = []_type{
66 _type{"byte", 8, false},
67 _type{"int8", 8, true},
68 _type{"uint8", 8, false},
69 _type{"rune", 32, true},
70 _type{"int16", 16, true},
71 _type{"uint16", 16, false}
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pprint.py 49 _type = type variable
138 typ = _type(object)
248 typ = _type(object)
333 % (_type(object).__name__, _id(object)))
  /external/ltp/android/tools/
check_success_build.py 29 _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/
pprint.py 52 _type = type variable
141 typ = _type(object)
244 typ = _type(object)
329 % (_type(object).__name__, _id(object)))
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pprint.py 52 _type = type variable
141 typ = _type(object)
251 typ = _type(object)
336 % (_type(object).__name__, _id(object)))
  /prebuilts/gdb/linux-x86/lib/python2.7/
pprint.py 52 _type = type variable
141 typ = _type(object)
251 typ = _type(object)
336 % (_type(object).__name__, _id(object)))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pprint.py 52 _type = type variable
141 typ = _type(object)
251 typ = _type(object)
336 % (_type(object).__name__, _id(object)))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pprint.py 52 _type = type variable
141 typ = _type(object)
251 typ = _type(object)
336 % (_type(object).__name__, _id(object)))
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimToken.cs 42 private short _type; field in struct:Antlr.Runtime.SlimToken
50 _type = (short)type;
70 return _type;
74 _type = (short)value;
  /external/jmdns/src/javax/jmdns/impl/
ServiceEventImpl.java 28 private final String _type; field in class:ServiceEventImpl
52 this._type = type;
72 return _type;
DNSEntry.java 28 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/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
_typecheck.py 67 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/
linear_operator_addition.py 296 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(op1) in _EFFICIENT_ADD_TO_TENSOR
396 def _type(operator): function
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
AToken.h 178 ANTLRTokenType _type; member in class:ANTLRCommonNoRefCountToken
190 ANTLRTokenType getType() const { return _type; }
191 void setType(ANTLRTokenType t) { _type = t; }
227 setType(from._type);
242 setType(rhs._type);
251 ANTLRTokenType _type; member in class:ANTLRCommonToken
263 ANTLRTokenType getType() const { return _type; }
264 void setType(ANTLRTokenType t) { _type = t; }
300 setType(from._type);
315 setType(rhs._type);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
AToken.h 158 ANTLRTokenType _type; member in class:ANTLRCommonNoRefCountToken
170 ANTLRTokenType getType() const { return _type; }
171 void setType(ANTLRTokenType t) { _type = t; }
207 setType(from._type);
222 setType(rhs._type);
231 ANTLRTokenType _type; member in class:ANTLRCommonToken
243 ANTLRTokenType getType() const { return _type; }
244 void setType(ANTLRTokenType t) { _type = t; }
280 setType(from._type);
295 setType(rhs._type);
    [all...]
AToken_traditional.h 155 ANTLRTokenType _type; member in class:ANTLRCommonNoRefCountToken
165 ANTLRTokenType getType() { return _type; }
166 void setType(ANTLRTokenType t) { _type = t; }
184 ANTLRTokenType _type; member in class:ANTLRCommonToken
195 ANTLRTokenType getType() { return _type; }
196 void setType(ANTLRTokenType t) { _type = t; }
  /external/skia/bench/
RectBench.cpp 216 RectBench(2), fMode(mode), _type(type) {
236 if (_type == KMaskShader) {
246 switch (_type) {
274 kMaskType _type; member in class:BlitMaskBench
  /external/skqp/bench/
RectBench.cpp 216 RectBench(2), fMode(mode), _type(type) {
236 if (_type == KMaskShader) {
246 switch (_type) {
274 kMaskType _type; member in class:BlitMaskBench
  /external/libxcam/capi/
context_priv.h 77 return _type;
93 HandleType _type; member in class:ContextBase

Completed in 887 milliseconds

1 2 3 4 5 6 7 8 9