HomeSort by relevance Sort by last modified time
    Searched refs:_types (Results 1 - 25 of 69) sorted by null

1 2 3

  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
_timespec.h 37 #include <sys/_types.h>
_types.h 33 #include <machine/_types.h>
stdarg.h 35 #include <sys/_types.h>
stdint.h 33 #include <sys/_types.h>
  /external/google-breakpad/src/client/mac/handler/
ucontext_compat.h 39 #include <sys/_types/_ucontext64.h>
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/
stddef.h 39 #include <sys/_types.h>
stdio.h 47 #include <sys/_types.h>
string.h 43 #include <sys/_types.h>
strings.h 33 #include <sys/_types.h>
  /packages/services/Car/tools/emulator/
vhal_emulator.py 229 if valType in self._types.TYPE_STRING:
231 elif valType in self._types.TYPE_BYTES:
233 elif valType in self._types.TYPE_INT32:
235 elif valType in self._types.TYPE_INT64:
237 elif valType in self._types.TYPE_FLOAT:
239 elif valType in self._types.TYPE_INT32S:
241 elif valType in self._types.TYPE_FLOATS:
243 elif valType in self._types.TYPE_MIXED:
261 self._types = types
vhal_emulator_test.py 68 if valType in self._types.TYPE_STRING:
70 elif valType in self._types.TYPE_BYTES:
75 elif valType in self._types.TYPE_INT32:
82 elif valType in self._types.TYPE_INT64:
89 elif valType in self._types.TYPE_FLOAT:
113 if valType in self._types.TYPE_STRING:
115 elif valType in self._types.TYPE_BYTES:
119 elif valType in self._types.TYPE_INT32:
121 elif valType in self._types.TYPE_INT64:
123 elif valType in self._types.TYPE_FLOAT
    [all...]
  /external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
_typecheck.py 49 arguments must be stored as a tuple on the `_types` attribute.
53 self._types = types
56 args_repr = ", ".join(repr(t) for t in self._types)
68 tpe, = self._types # pylint: disable=unbalanced-tuple-unpacking
86 return isinstance(instance, self._types)
149 and len(instance) == len(self._types)
150 and all(isinstance(x, t) for x, t in zip(instance, self._types)))
160 key_type, value_type = self._types # pylint: disable=unbalanced-tuple-unpacking
182 return type(t)(*[_replace_forward_references(t, context) for t in t._types]) # pylint: disable=protected-access
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_memoryview.py 23 def _types(self): member in class:AbstractMemoryTests
49 for tp in self._types:
53 for tp in self._types:
59 for tp in self._types:
122 for tp in self._types:
131 for tp in self._types:
141 for tp in self._types:
149 for tp in self._types:
151 for tp_comp in self._types:
200 #for tp in self._types:
    [all...]
  /external/python/cpython2/Lib/test/
test_memoryview.py 25 def _types(self): member in class:AbstractMemoryTests
51 for tp in self._types:
55 for tp in self._types:
61 for tp in self._types:
124 for tp in self._types:
133 for tp in self._types:
143 for tp in self._types:
151 for tp in self._types:
153 for tp_comp in self._types:
202 #for tp in self._types
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_memoryview.py 23 def _types(self): member in class:AbstractMemoryTests
49 for tp in self._types:
53 for tp in self._types:
59 for tp in self._types:
122 for tp in self._types:
131 for tp in self._types:
141 for tp in self._types:
149 for tp in self._types:
151 for tp_comp in self._types:
200 #for tp in self._types
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_memoryview.py 23 def _types(self): member in class:AbstractMemoryTests
49 for tp in self._types:
53 for tp in self._types:
59 for tp in self._types:
122 for tp in self._types:
131 for tp in self._types:
141 for tp in self._types:
149 for tp in self._types:
151 for tp_comp in self._types:
200 #for tp in self._types
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_memoryview.py 23 def _types(self): member in class:AbstractMemoryTests
49 for tp in self._types:
53 for tp in self._types:
59 for tp in self._types:
122 for tp in self._types:
131 for tp in self._types:
141 for tp in self._types:
149 for tp in self._types:
151 for tp_comp in self._types:
200 #for tp in self._types
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_memoryview.py 23 def _types(self): member in class:AbstractMemoryTests
49 for tp in self._types:
53 for tp in self._types:
59 for tp in self._types:
122 for tp in self._types:
131 for tp in self._types:
141 for tp in self._types:
149 for tp in self._types:
151 for tp_comp in self._types:
200 #for tp in self._types
    [all...]
  /external/mesa3d/src/intel/isl/
gen_format_layout.py 105 _types = { variable in class:Channel
129 self.type = self._types[grouped.group('type')].upper()
  /external/python/cpython3/Lib/test/
test_memoryview.py 26 def _types(self): member in class:AbstractMemoryTests
51 for tp in self._types:
55 for tp in self._types:
127 for tp in self._types:
136 for tp in self._types:
146 for tp in self._types:
154 for tp in self._types:
156 for tp_comp in self._types:
206 for tp in self._types:
218 for tp in self._types
    [all...]
  /external/python/cpython2/Lib/idlelib/
MultiCall.py 71 self.sequence = '<'+_types[type][0]+'>'
182 self.typename = _types[type][0]
234 _types = ( variable
244 _binder_classes = (_ComplexBinder,) * 4 + (_SimpleBinder,) * (len(_types)-4)
248 for number in range(len(_types))
249 for name in _types[number]])
256 the event type (as an index of _types), and the detail - None if none, or a
297 return '<'+_state_names[triplet[0]]+_types[triplet[1]][0]+'-'+ \
300 return '<'+_state_names[triplet[0]]+_types[triplet[1]][0]+'>'
321 for i in range(len(_types))]
    [all...]
  /external/python/cpython3/Lib/idlelib/
multicall.py 76 self.sequence = '<'+_types[type][0]+'>'
192 self.typename = _types[type][0]
248 _types = ( variable
258 _binder_classes = (_ComplexBinder,) * 4 + (_SimpleBinder,) * (len(_types)-4)
262 for number in range(len(_types))
263 for name in _types[number]])
270 the event type (as an index of _types), and the detail - None if none, or a
308 return '<'+_state_names[triplet[0]]+_types[triplet[1]][0]+'-'+ \
311 return '<'+_state_names[triplet[0]]+_types[triplet[1]][0]+'>'
332 for i in range(len(_types))]
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
MultiCall.py 72 self.sequence = '<'+_types[type][0]+'>'
183 self.typename = _types[type][0]
235 _types = ( variable
245 _binder_classes = (_ComplexBinder,) * 4 + (_SimpleBinder,) * (len(_types)-4)
249 for number in range(len(_types))
250 for name in _types[number]])
257 the event type (as an index of _types), and the detail - None if none, or a
298 return '<'+_state_names[triplet[0]]+_types[triplet[1]][0]+'-'+ \
301 return '<'+_state_names[triplet[0]]+_types[triplet[1]][0]+'>'
322 for i in range(len(_types))]
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
MultiCall.py 72 self.sequence = '<'+_types[type][0]+'>'
183 self.typename = _types[type][0]
235 _types = ( variable
245 _binder_classes = (_ComplexBinder,) * 4 + (_SimpleBinder,) * (len(_types)-4)
249 for number in range(len(_types))
250 for name in _types[number]])
257 the event type (as an index of _types), and the detail - None if none, or a
298 return '<'+_state_names[triplet[0]]+_types[triplet[1]][0]+'-'+ \
301 return '<'+_state_names[triplet[0]]+_types[triplet[1]][0]+'>'
322 for i in range(len(_types))]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
MultiCall.py 72 self.sequence = '<'+_types[type][0]+'>'
183 self.typename = _types[type][0]
235 _types = ( variable
245 _binder_classes = (_ComplexBinder,) * 4 + (_SimpleBinder,) * (len(_types)-4)
249 for number in range(len(_types))
250 for name in _types[number]])
257 the event type (as an index of _types), and the detail - None if none, or a
298 return '<'+_state_names[triplet[0]]+_types[triplet[1]][0]+'-'+ \
301 return '<'+_state_names[triplet[0]]+_types[triplet[1]][0]+'>'
322 for i in range(len(_types))]
    [all...]

Completed in 5484 milliseconds

1 2 3