HomeSort by relevance Sort by last modified time
    Searched refs:Tuple (Results 226 - 250 of 317) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/googletest/googlemock/include/gmock/internal/
gmock-generated-internal-utils.h 66 // MatcherTuple<T>::type is a tuple type where each field is a Matcher
67 // for the corresponding field in tuple type T.
68 template <typename Tuple>
72 struct MatcherTuple< ::testing::tuple<> > {
73 typedef ::testing::tuple< > type;
77 struct MatcherTuple< ::testing::tuple<A1> > {
78 typedef ::testing::tuple<Matcher<A1> > type;
82 struct MatcherTuple< ::testing::tuple<A1, A2> > {
83 typedef ::testing::tuple<Matcher<A1>, Matcher<A2> > type;
87 struct MatcherTuple< ::testing::tuple<A1, A2, A3> >
    [all...]
  /external/v8/src/compiler/
types.h 462 // Tuple types.
538 static Type* Tuple(Type* first, Type* second, Type* third, Zone* zone) {
539 Type* tuple = TupleType::New(3, zone); local
540 tuple->AsTuple()->InitElement(0, first);
541 tuple->AsTuple()->InitElement(1, second);
542 tuple->AsTuple()->InitElement(2, third);
543 return tuple;
  /external/v8/testing/gmock/include/gmock/internal/
gmock-generated-internal-utils.h 66 // MatcherTuple<T>::type is a tuple type where each field is a Matcher
67 // for the corresponding field in tuple type T.
68 template <typename Tuple>
72 struct MatcherTuple< ::testing::tuple<> > {
73 typedef ::testing::tuple< > type;
77 struct MatcherTuple< ::testing::tuple<A1> > {
78 typedef ::testing::tuple<Matcher<A1> > type;
82 struct MatcherTuple< ::testing::tuple<A1, A2> > {
83 typedef ::testing::tuple<Matcher<A1>, Matcher<A2> > type;
87 struct MatcherTuple< ::testing::tuple<A1, A2, A3> >
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/api/
goapi.go 594 case *types.Tuple:
595 panic("should never see a tuple type")
659 func (w *Walker) writeParams(buf *bytes.Buffer, t *types.Tuple, variadic bool) {
  /prebuilts/go/darwin-x86/src/go/internal/gccgoimporter/
parser.go 526 func (p *parser) parseParamList(pkg *types.Package) (*types.Tuple, bool) {
550 func (p *parser) parseResultList(pkg *types.Package) *types.Tuple {
  /prebuilts/go/linux-x86/src/cmd/api/
goapi.go 594 case *types.Tuple:
595 panic("should never see a tuple type")
659 func (w *Walker) writeParams(buf *bytes.Buffer, t *types.Tuple, variadic bool) {
  /prebuilts/go/linux-x86/src/go/internal/gccgoimporter/
parser.go 526 func (p *parser) parseParamList(pkg *types.Package) (*types.Tuple, bool) {
550 func (p *parser) parseResultList(pkg *types.Package) *types.Tuple {
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
ops.py 224 new_axis: The name of the new axis, or a tuple containing the name
755 tc.Tuple(string_types, collections.Hashable))
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/
lostcancel.go 271 func tupleContains(tuple *types.Tuple, v *types.Var) bool {
272 for i := 0; i < tuple.Len(); i++ {
273 if tuple.At(i) == v {
  /prebuilts/go/linux-x86/src/cmd/vet/
lostcancel.go 271 func tupleContains(tuple *types.Tuple, v *types.Var) bool {
272 for i := 0; i < tuple.Len(); i++ {
273 if tuple.At(i) == v {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
compile.c 395 PyObject *tuple, *item = PyInt_FromLong(i); local
402 tuple = PyTuple_Pack(2, k, k->ob_type);
403 if (!tuple || PyDict_SetItem(dest, tuple, item) < 0) {
407 Py_XDECREF(tuple);
411 Py_DECREF(tuple);
953 /* all we need is to make the tuple different in either the 0.0
3785 PyObject *tuple, *k, *v; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
compile.c 375 PyObject *tuple, *item = PyInt_FromLong(i); local
381 tuple = PyTuple_Pack(2, k, k->ob_type);
382 if (!tuple || PyDict_SetItem(dest, tuple, item) < 0) {
385 Py_XDECREF(tuple);
389 Py_DECREF(tuple);
930 /* all we need is to make the tuple different in either the 0.0
3761 PyObject *tuple, *k, *v; local
    [all...]
  /external/python/cpython2/Python/
compile.c 395 PyObject *tuple, *item = PyInt_FromLong(i); local
402 tuple = _PyCode_ConstantKey(k);
403 if (!tuple || PyDict_SetItem(dest, tuple, item) < 0) {
407 Py_XDECREF(tuple);
411 Py_DECREF(tuple);
3746 PyObject *tuple, *k, *v; local
    [all...]
  /external/google-breakpad/src/testing/include/gmock/
gmock-matchers.h 610 // An internal helper class for doing compile-time loop on a tuple's
    [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp 572 std::vector<Init*> Tuple;
578 Tuple.push_back(DefInit::get(Reg));
604 // Replace the sub-register list with Tuple.
606 RV.setValue(ListInit::get(Tuple, RegisterRecTy));
612 // CostPerUse is aggregated from all Tuple members.
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
transformer.py 65 l.append(tuple(asList(item)))
73 if not isinstance(ast[1], tuple):
77 if isinstance(child, tuple):
122 if not (isinstance(tree, tuple) or isinstance(tree, list)):
578 return self.com_binary(Tuple, nodelist)
743 return Tuple((), lineno=nodelist[0][2])
876 return tuple(list)
    [all...]
  /external/python/cpython2/Lib/compiler/
transformer.py 65 l.append(tuple(asList(item)))
73 if not isinstance(ast[1], tuple):
77 if isinstance(child, tuple):
122 if not (isinstance(tree, tuple) or isinstance(tree, list)):
578 return self.com_binary(Tuple, nodelist)
743 return Tuple((), lineno=nodelist[0][2])
876 return tuple(list)
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/python/
local_computation_builder.i 28 // Literal <-> (nested tuple of) numpy ndarray
29 // std::vector<Literal> <- sequence of (nested tuple of) ndarray
47 // non-tuple Shape, an XLA primitive element type corresponding to the
48 // ndarray's dtype. Meanwhile, a non-terminal "tuple of T" translates
49 // to a tuple-shaped Literal whose tuple components are translated
57 // translates to a tuple-shaped XLA Literal, whose component subshapes
58 // are a 2x3 F32-shaped literal followed by two tuple-shaped literals.
69 // dtype('O'), numpy's object dtype, the structure represents a tuple
81 // describes a tuple shape with two subshapes: the first a 2x3 F32
    [all...]
xla_client_test.py 782 c.Tuple(
786 self.assertIsInstance(result, tuple)
794 c.Tuple(
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
transformer.py 65 l.append(tuple(asList(item)))
73 if not isinstance(ast[1], tuple):
77 if isinstance(child, tuple):
122 if not (isinstance(tree, tuple) or isinstance(tree, list)):
578 return self.com_binary(Tuple, nodelist)
743 return Tuple((), lineno=nodelist[0][2])
876 return tuple(list)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
transformer.py 65 l.append(tuple(asList(item)))
73 if not isinstance(ast[1], tuple):
77 if isinstance(child, tuple):
122 if not (isinstance(tree, tuple) or isinstance(tree, list)):
578 return self.com_binary(Tuple, nodelist)
743 return Tuple((), lineno=nodelist[0][2])
876 return tuple(list)
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
call.go 77 x.typ = sig.results.vars[0].typ // unpack tuple
185 if t, ok := x0.typ.(*Tuple); ok {
  /prebuilts/go/linux-x86/src/go/types/
call.go 77 x.typ = sig.results.vars[0].typ // unpack tuple
185 if t, ok := x0.typ.(*Tuple); ok {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
transformer.py 65 l.append(tuple(asList(item)))
73 if not isinstance(ast[1], tuple):
77 if isinstance(child, tuple):
122 if not (isinstance(tree, tuple) or isinstance(tree, list)):
578 return self.com_binary(Tuple, nodelist)
743 return Tuple((), lineno=nodelist[0][2])
876 return tuple(list)
    [all...]

Completed in 681 milliseconds

1 2 3 4 5 6 7 8 91011>>