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

  /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 {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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*> ')' >
  /external/python/cpython2/Lib/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*> ')' >
  /external/python/cpython3/Lib/lib2to3/
fixer_util.py 52 def ArgList(args, lparen=LParen(), rparen=RParen()):
56 node.insert_child(1, Node(syms.arglist, args))
61 node = Node(syms.power, [func_name, ArgList(args)])
137 if obj.type == syms.arglist:
140 newarglist = Node(syms.arglist, [obj.clone()])
224 trailer< '(' arglist<node=any any*> ')' >
  /external/vixl/tools/
test.py 87 def ArgList(self, to_test):
452 opt.ArgList(args.__dict__[opt.name])
462 for o in opt.ArgList(args.__dict__[opt.name]):
  /external/llvm/include/llvm/Option/
ArgList.h 1 //===--- ArgList.h - Argument List Management -------------------*- C++ -*-===//
27 class ArgList;
30 /// arg_iterator - Iterates through arguments stored inside an ArgList.
36 const ArgList &Args;
57 arg_iterator(SmallVectorImpl<Arg *>::const_iterator it, const ArgList &Args,
88 /// ArgList - Ordered collection of driver arguments.
90 /// The ArgList class manages a list of Arg instances as well as
94 class ArgList {
110 ArgList() = default;
116 ArgList(ArgList &&RHS) : Args(std::move(RHS.Args)) { RHS.Args.clear();
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Option/
ArgList.h 1 //===- ArgList.h - Argument List Management ---------------------*- C++ -*-===//
39 /// arg_iterator - Iterates through arguments stored inside an ArgList.
111 /// ArgList - Ordered collection of driver arguments.
113 /// The ArgList class manages a list of Arg instances as well as
117 class ArgList {
149 ArgList() = default;
156 ArgList(ArgList &&RHS)
162 ArgList &operator=(ArgList &&RHS)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/CodeView/
TypeIndexDiscoveryTest.cpp 198 ArgListRecord Record{TypeRecordKind::ArgList, Ids};
199 } ArgList;
350 TEST_F(TypeIndexIteratorTest, ArgList) {
352 writeTypeRecords(ArgList.Record);
353 checkTypeReferences(0, ArgList.Ids[0], ArgList.Ids[1], ArgList.Ids[2]);
431 Procedure, MemberFunction, ArgList.Record, Array, Class,
447 checkTypeReferences(10, ArgList.Ids[0], ArgList.Ids[1], ArgList.Ids[2])
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Application/IfConfig6/
IfConfig6.c 129 ARG_LIST *ArgList;
148 ArgList = ArgNode;
169 return ArgList;
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellNetwork1CommandsLib/
Ifconfig.c 169 ARG_LIST *ArgList;
192 ArgList = ArgNode;
207 FreePool (ArgList->Arg);
208 FreeArgList (ArgList);
220 return ArgList;
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellNetwork2CommandsLib/
Ifconfig6.c 194 ARG_LIST *ArgList;
217 ArgList = ArgNode;
232 FreePool (ArgList->Arg);
233 IfConfig6FreeArgList (ArgList);
245 return ArgList;
    [all...]
  /external/clang/lib/Sema/
SemaTemplate.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp     [all...]
  /external/clang/lib/CodeGen/
CGOpenMPRuntime.cpp     [all...]

Completed in 584 milliseconds