/prebuilts/go/linux-x86/src/go/internal/gccgoimporter/ |
parser.go | 504 func (p *parser) parseParamList(pkg *types.Package) (*types.Tuple, bool) { 528 func (p *parser) parseResultList(pkg *types.Package) *types.Tuple {
|
/external/llvm/lib/Bitcode/Reader/ |
BitcodeReader.cpp | [all...] |
/prebuilts/go/darwin-x86/src/cmd/vet/ |
lostcancel.go | 267 func tupleContains(tuple *types.Tuple, v *types.Var) bool { 268 for i := 0; i < tuple.Len(); i++ { 269 if tuple.At(i) == v {
|
/prebuilts/go/linux-x86/src/cmd/vet/ |
lostcancel.go | 267 func tupleContains(tuple *types.Tuple, v *types.Var) bool { 268 for i := 0; i < tuple.Len(); i++ { 269 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...] |
Python-ast.c | 785 Tuple_type = make_type("Tuple", expr_type, Tuple_fields, 2);
[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...] |
Python-ast.c | 768 Tuple_type = make_type("Tuple", expr_type, Tuple_fields, 2);
[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...] |
/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 143 if t, ok := x0.typ.(*Tuple); ok {
|
builtins.go | 638 var result *Tuple
|
/prebuilts/go/linux-x86/src/go/types/ |
call.go | 77 x.typ = sig.results.vars[0].typ // unpack tuple 143 if t, ok := x0.typ.(*Tuple); ok {
|
builtins.go | 638 var result *Tuple
|
/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...] |
/prebuilts/python/linux-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...] |
/external/libmojo/third_party/jinja2/ |
nodes.py | 71 d[attr] = tuple(storage) 185 """Find all the nodes of a given type. If the type is a tuple, 186 the check is performed for any of the tuple items. 230 tuple(self.iter_fields()) == tuple(other.iter_fields()) 277 :class:`Name` or :class:`Tuple`), `iter` the iterable. `body` is a list 466 class Tuple(Literal): 468 for subscripts. Like for :class:`Name` `ctx` specifies if the tuple 475 return tuple(x.as_const(eval_ctx) for x in self.items)
|
/external/v8/src/ast/ |
ast-types.h | 640 // Tuple types. 764 static AstType* Tuple(AstType* first, AstType* second, AstType* third, 766 AstType* tuple = AstTupleType::New(3, zone); local 767 tuple->AsTuple()->InitElement(0, first); 768 tuple->AsTuple()->InitElement(1, second); 769 tuple->AsTuple()->InitElement(2, third); 770 return tuple; [all...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/gen/ |
rulegen.go | 690 panic("Tuple expect 2 arguments")
|
/prebuilts/go/darwin-x86/src/go/internal/gcimporter/ |
bimport.go | 628 func (p *importer) paramList() (*types.Tuple, bool) {
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/gen/ |
rulegen.go | 690 panic("Tuple expect 2 arguments")
|
/prebuilts/go/linux-x86/src/go/internal/gcimporter/ |
bimport.go | 628 func (p *importer) paramList() (*types.Tuple, bool) {
|