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

1 2 3

  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
type.go 84 type TupleType struct {
90 func (t *TupleType) Size() int64 { panic("not implemented") }
91 func (t *TupleType) Alignment() int64 { panic("not implemented") }
92 func (t *TupleType) IsBoolean() bool { return false }
93 func (t *TupleType) IsInteger() bool { return false }
94 func (t *TupleType) IsSigned() bool { return false }
95 func (t *TupleType) IsFloat() bool { return false }
96 func (t *TupleType) IsComplex() bool { return false }
97 func (t *TupleType) IsPtrShaped() bool { return false }
98 func (t *TupleType) IsString() bool { return false
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
type.go 84 type TupleType struct {
90 func (t *TupleType) Size() int64 { panic("not implemented") }
91 func (t *TupleType) Alignment() int64 { panic("not implemented") }
92 func (t *TupleType) IsBoolean() bool { return false }
93 func (t *TupleType) IsInteger() bool { return false }
94 func (t *TupleType) IsSigned() bool { return false }
95 func (t *TupleType) IsFloat() bool { return false }
96 func (t *TupleType) IsComplex() bool { return false }
97 func (t *TupleType) IsPtrShaped() bool { return false }
98 func (t *TupleType) IsString() bool { return false
    [all...]
  /external/toolchain-utils/cros_utils/
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...]
stats.py 524 if type(defaultreallimits) not in [ListType, TupleType] or len(
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
types.py 38 TupleType = tuple
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
types.py 38 TupleType = tuple
  /prebuilts/gdb/darwin-x86/lib/python2.7/
types.py 38 TupleType = tuple
  /prebuilts/gdb/linux-x86/lib/python2.7/
types.py 38 TupleType = tuple
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
types.py 38 TupleType = tuple
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
types.py 38 TupleType = tuple
  /external/v8/src/compiler/
types.h 445 class TupleType : public StructuralType {
455 TupleType(int length, Zone* zone) : StructuralType(kTuple, length, zone) {}
458 return AsType(new (zone->New(sizeof(TupleType))) TupleType(length, zone));
461 static TupleType* cast(Type* type) {
463 return static_cast<TupleType*>(FromType(type));
520 Type* tuple = TupleType::New(3, zone);
569 TupleType* AsTuple() { return TupleType::cast(this); }
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/
example.py 14 from types import ListType, TupleType
144 if type(pattern) is not TupleType:
  /external/selinux/gui/
html_util.py 161 elif type(body_component) in [TupleType, ListType]:
166 if type(result) in [TupleType, ListType]:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/wsgiref/
validate.py 116 from types import DictType, StringType, TupleType, ListType
322 assert_(type(environ['wsgi.version']) is TupleType,
388 assert_(type(item) is TupleType,
headers.py 8 from types import ListType, TupleType
  /prebuilts/gdb/darwin-x86/lib/python2.7/wsgiref/
validate.py 116 from types import DictType, StringType, TupleType, ListType
322 assert_(type(environ['wsgi.version']) is TupleType,
388 assert_(type(item) is TupleType,
headers.py 8 from types import ListType, TupleType
  /prebuilts/gdb/linux-x86/lib/python2.7/wsgiref/
validate.py 116 from types import DictType, StringType, TupleType, ListType
322 assert_(type(environ['wsgi.version']) is TupleType,
388 assert_(type(item) is TupleType,
headers.py 8 from types import ListType, TupleType
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
validate.py 116 from types import DictType, StringType, TupleType, ListType
322 assert_(type(environ['wsgi.version']) is TupleType,
388 assert_(type(item) is TupleType,
headers.py 8 from types import ListType, TupleType
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
validate.py 116 from types import DictType, StringType, TupleType, ListType
322 assert_(type(environ['wsgi.version']) is TupleType,
388 assert_(type(item) is TupleType,
headers.py 8 from types import ListType, TupleType
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorArgMax.h 207 typedef typename TensorIndexTupleOp<ArgType>::CoeffReturnType TupleType;
251 const TupleType v = m_impl.coeff(index);
  /external/swiftshader/third_party/LLVM/test/Scripts/
coff-dump.py 382 elif format_type is types.TupleType:
407 if type(definitions) is types.TupleType:

Completed in 393 milliseconds

1 2 3