HomeSort by relevance Sort by last modified time
    Searched defs:ArgList (Results 1 - 15 of 15) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_raise.py 29 from ..fixer_util import Name, Call, Attr, ArgList, is_tuple
83 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
fix_throw.py 14 from ..fixer_util import Name, Call, ArgList, Attr, is_tuple
20 trailer< '(' args=arglist< exc=any ',' val=any [',' tb=any] > ')' >
53 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
fix_dict.py 35 from ..fixer_util import Name, Call, LParen, RParen, ArgList, Dot
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_raise.py 29 from ..fixer_util import Name, Call, Attr, ArgList, is_tuple
83 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
fix_throw.py 14 from ..fixer_util import Name, Call, ArgList, Attr, is_tuple
20 trailer< '(' args=arglist< exc=any ',' val=any [',' tb=any] > ')' >
53 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
fix_dict.py 35 from ..fixer_util import Name, Call, LParen, RParen, ArgList, Dot
  /external/llvm/lib/Option/
ArgList.cpp 1 //===--- ArgList.cpp - Argument List Management ---------------------------===//
10 #include "llvm/Option/ArgList.h"
37 ArgList::ArgList() {
40 ArgList::~ArgList() {
43 void ArgList::append(Arg *A) {
47 void ArgList::eraseArg(OptSpecifier Id) {
58 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id) const {
66 Arg *ArgList::getLastArg(OptSpecifier Id) const
    [all...]
  /external/clang/include/clang/Sema/
Template.h 44 typedef ArrayRef<TemplateArgument> ArgList;
48 SmallVector<ArgList, 4> TemplateArgumentLists;
97 addOuterTemplateArguments(ArgList(TemplateArgs->data(),
103 void addOuterTemplateArguments(ArgList Args) {
108 const ArgList &getInnermost() const {
  /external/llvm/include/llvm/Option/
ArgList.h 1 //===--- ArgList.h - Argument List Management -------------------*- C++ -*-===//
24 class ArgList;
27 /// arg_iterator - Iterates through arguments stored inside an ArgList.
33 const ArgList &Args;
55 const ArgList &_Args, OptSpecifier _Id0 = 0U,
85 /// ArgList - Ordered collection of driver arguments.
87 /// The ArgList class manages a list of Arg instances as well as
91 class ArgList {
93 ArgList(const ArgList &) LLVM_DELETED_FUNCTION
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
fixer_util.py 54 def ArgList(args, lparen=LParen(), rparen=RParen()):
58 node.insert_child(1, Node(syms.arglist, args))
63 node = Node(syms.power, [func_name, ArgList(args)])
203 trailer< '(' arglist<node=any any*> ')' >
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
fixer_util.py 54 def ArgList(args, lparen=LParen(), rparen=RParen()):
58 node.insert_child(1, Node(syms.arglist, args))
63 node = Node(syms.power, [func_name, ArgList(args)])
203 trailer< '(' arglist<node=any any*> ')' >
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 418 llvm::SmallVector<clang::Expr*, 1> ArgList;
419 ArgList.push_back(AddrRefRSVar);
424 ArgList,
816 llvm::SmallVector<clang::Expr*, 2> ArgList;
817 ArgList.push_back(new(C) clang::UnaryOperator(DstExpr,
823 ArgList.push_back(SrcExpr);
828 ArgList,
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplate.cpp     [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]

Completed in 208 milliseconds