/external/toolchain-utils/cros_utils/ |
D | pstat.py | 135 if type(source) not in [ListType, TupleType]: 138 if type(addon) not in [ListType, TupleType]: 181 if type(source) not in [ListType, TupleType]: 183 if type(addon) not in [ListType, TupleType]: 187 if type(source[0]) not in [ListType, TupleType]: 188 if type(addon[0]) not in [ListType, TupleType]: 195 if type(addon[0]) not in [ListType, TupleType]: 218 if type(cnums) in [ListType, TupleType]: # if multiple columns to get 263 if type(keepcols) not in [ListType, TupleType]: 265 if type(collapsecols) not in [ListType, TupleType]: [all …]
|
D | stats.py | 524 if type(defaultreallimits) not in [ListType, TupleType] or len( 1640 if type(listoflists[0]) not in [ListType, TupleType]: 1916 geometricmean = Dispatch((lgeometricmean, (ListType, TupleType)),) 1917 harmonicmean = Dispatch((lharmonicmean, (ListType, TupleType)),) 1918 mean = Dispatch((lmean, (ListType, TupleType)),) 1919 median = Dispatch((lmedian, (ListType, TupleType)),) 1920 medianscore = Dispatch((lmedianscore, (ListType, TupleType)),) 1921 mode = Dispatch((lmode, (ListType, TupleType)),) 1924 moment = Dispatch((lmoment, (ListType, TupleType)),) 1925 variation = Dispatch((lvariation, (ListType, TupleType)),) [all …]
|
/external/llvm/test/MC/Disassembler/X86/ |
D | avx-512.txt | 78 # TupleType = FVM 82 # TupleType = T1S, 64-bit eltsize 86 # TupleType = T1S, 32-bit eltsize 90 # TupleType = FV 94 # TupleType = FV, broadcast, 64-bit eltsize 98 # TupleType = FV, broadcast, 32-bit eltsize 102 # TupleType = T4
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/ |
D | xray-account.cpp | 260 using TupleType = std::tuple<int32_t, uint64_t, ResultRow>; in exportStats() typedef 261 std::vector<TupleType> Results; in exportStats() 286 [](const TupleType &L, const TupleType &R) { in exportStats() 296 [](const TupleType &L, const TupleType &R) { in exportStats() 308 [&](const TupleType &L, const TupleType &R) { in exportStats()
|
/external/v8/src/compiler/ |
D | types.h | 223 class TupleType; variable 407 const TupleType* AsTuple() const; 600 class TupleType : public StructuralType { 610 TupleType(int length, Zone* zone) : StructuralType(kTuple, length, zone) {} in TupleType() function 612 static TupleType* New(int length, Zone* zone) { in New() 613 return new (zone->New(sizeof(TupleType))) TupleType(length, zone); in New()
|
D | types.cc | 491 const TupleType* this_tuple = this->AsTuple(); in SimplyEquals() 492 const TupleType* that_tuple = that.AsTuple(); in SimplyEquals() 1050 TupleType* tuple = TupleType::New(3, zone); in Tuple() 1104 const TupleType* Type::AsTuple() const { in AsTuple() 1106 return static_cast<const TupleType*>(ToTypeBase()); in AsTuple()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Disassembler/X86/ |
D | avx-512.txt | 82 # TupleType = FVM 86 # TupleType = T1S, 64-bit eltsize 90 # TupleType = T1S, 32-bit eltsize 94 # TupleType = FV 98 # TupleType = FV, broadcast, 64-bit eltsize 102 # TupleType = FV, broadcast, 32-bit eltsize 106 # TupleType = T4
|
/external/python/cpython2/Lib/wsgiref/ |
D | validate.py | 116 from types import DictType, StringType, TupleType, ListType 322 assert_(type(environ['wsgi.version']) is TupleType, 388 assert_(type(item) is TupleType,
|
D | headers.py | 8 from types import ListType, TupleType
|
/external/python/cpython2/Demo/parser/ |
D | example.py | 14 from types import ListType, TupleType 144 if type(pattern) is not TupleType:
|
/external/swiftshader/third_party/LLVM/test/Scripts/ |
D | coff-dump.py | 382 elif format_type is types.TupleType: 407 if type(definitions) is types.TupleType:
|
/external/python/cpython2/Lib/ |
D | types.py | 38 TupleType = tuple variable
|
D | xmlrpclib.py | 370 if not isinstance(value, (TupleType, time.struct_time)): 722 dispatch[TupleType] = dump_array 1078 assert isinstance(params, TupleType) or isinstance(params, Fault),\ 1083 elif methodresponse and isinstance(params, TupleType): 1356 if isinstance(host, TupleType):
|
D | pickle.py | 321 if type(rv) is not TupleType: 350 if not isinstance(args, TupleType): 589 dispatch[TupleType] = save_tuple
|
D | optparse.py | 671 elif type(self.choices) not in (types.TupleType, types.ListType): 715 type(self.callback_args) is not types.TupleType):
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorArgMax.h | 207 typedef typename TensorIndexTupleOp<ArgType>::CoeffReturnType TupleType; 251 const TupleType v = m_impl.coeff(index);
|
/external/python/cpython2/Doc/c-api/ |
D | tuple.rst | 18 .. index:: single: TupleType (in module types) 21 the same object as ``tuple`` and ``types.TupleType`` in the Python layer..
|
/external/python/cpython2/Lib/idlelib/ |
D | ObjectBrowser.py | 122 TupleType: SequenceTreeItem,
|
/external/python/cpython2/Tools/webchecker/ |
D | tktools.py | 336 if t in (ListType, TupleType):
|
D | webchecker.py | 621 elif isinstance(msg, TupleType):
|
/external/python/cpython2/Doc/library/ |
D | types.rst | 98 .. data:: TupleType
|
/external/python/cpython2/Demo/tkinter/guido/ |
D | AttrDialog.py | 123 if type(cl) == TupleType:
|
/external/python/cpython2/Lib/compiler/ |
D | symbols.py | 283 if type(name) == types.TupleType:
|
/external/python/cpython2/Lib/distutils/command/ |
D | build_ext.py | 453 if sources is None or type(sources) not in (ListType, TupleType):
|
/external/python/cpython2/Lib/plat-mac/ |
D | aetypes.py | 494 elif t == TupleType:
|