HomeSort by relevance Sort by last modified time
    Searched full:arglist (Results 151 - 175 of 349) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/gdb/darwin-x86/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/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_dict.py 35 from ..fixer_util import Name, Call, LParen, RParen, ArgList, Dot
  /prebuilts/gdb/linux-x86/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/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_dict.py 35 from ..fixer_util import Name, Call, LParen, RParen, ArgList, Dot
  /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/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
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/
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/fixes/
fix_dict.py 35 from ..fixer_util import Name, Call, LParen, RParen, ArgList, Dot
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 317 llvm::SmallVector<clang::Expr*, 1> ArgList;
318 ArgList.push_back(AddrRefRSVar);
323 ArgList,
712 llvm::SmallVector<clang::Expr*, 2> ArgList;
713 ArgList.push_back(new(C) clang::UnaryOperator(DstExpr,
719 ArgList.push_back(SrcExpr);
724 ArgList,
    [all...]
  /external/autotest/server/site_tests/autoupdate_EndToEndTest/
control 36 test_that --args="<ARGLIST>" <DUT-IPADDR> autoupdate_EndToEndTest
38 where ARGLIST is a whitespace separated list of the following key=value pairs.
  /external/llvm/lib/Option/
Option.cpp 13 #include "llvm/Option/ArgList.h"
103 Arg *Option::accept(const ArgList &Args,
  /external/clang/lib/Driver/
MSVCToolChain.cpp 21 #include "llvm/Option/ArgList.h"
48 const ArgList &Args)
512 const ArgList &DriverArgs, ArgStringList &CC1Args,
520 void MSVCToolChain::AddClangSystemIncludeArgs(const ArgList &DriverArgs,
600 void MSVCToolChain::AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
606 MSVCToolChain::ComputeEffectiveClangTriple(const ArgList &Args,
  /external/clang/test/CodeGen/
x86_64-arguments.c 424 void test51(struct test51_s *s, __builtin_va_list argList) {
425 *s = __builtin_va_arg(argList, struct test51_s);
449 void test53(__m256 *m, __builtin_va_list argList) {
450 *m = __builtin_va_arg(argList, __m256);
526 void f63(__m512 *m, __builtin_va_list argList) {
527 *m = __builtin_va_arg(argList, __m512);
  /external/clang/lib/Frontend/
CompilerInvocation.cpp 32 #include "llvm/Option/ArgList.h"
78 static unsigned getOptimizationLevel(ArgList &Args, InputKind IK,
103 static unsigned getOptimizationLevelSize(ArgList &Args) {
119 static void addDiagnosticArgs(ArgList &Args, OptSpecifier Group,
138 static bool ParseAnalyzerArgs(AnalyzerOptions &Opts, ArgList &Args,
290 static bool ParseMigratorArgs(MigratorOptions &Opts, ArgList &Args) {
296 static void ParseCommentArgs(CommentOptions &Opts, ArgList &Args) {
301 static StringRef getCodeModel(ArgList &Args, DiagnosticsEngine &Diags) {
315 GenerateOptimizationRemarkRegex(DiagnosticsEngine &Diags, ArgList &Args,
363 static bool ParseCodeGenArgs(CodeGenOptions &Opts, ArgList &Args, InputKind IK
    [all...]
  /external/bzip2/
bzip2.c     [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLR.g 91 ARGLIST;
982 ^(TEMPLATE (ID|ACTION) ^(ARGLIST ^(ARG ID ACTION) ...) )
983 where ARGLIST is always there even if no args exist.
1032 -> ^(ARGLIST["ARGLIST"] rewrite_template_arg+)
1034 -> ARGLIST["ARGLIST"]
  /toolchain/binutils/binutils-2.25/bfd/
targets.c 105 routines by hand inside the BFD implementation. The @var{arglist}
112 .#define BFD_SEND(bfd, message, arglist) \
113 . ((*((bfd)->xvec->message)) arglist)
117 .#define BFD_SEND(bfd, message, arglist) \
119 . ((*((bfd)->xvec->message)) arglist) : \
125 .#define BFD_SEND_FMT(bfd, message, arglist) \
126 . (((bfd)->xvec->message[(int) ((bfd)->format)]) arglist)
130 .#define BFD_SEND_FMT(bfd, message, arglist) \
132 . (((bfd)->xvec->message[(int) ((bfd)->format)]) arglist) : \
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
TestUtilities.java 132 List argList = new ArrayList();
133 argList.add("TestMain");
134 if (params.verbose) argList.add("-verbose");
135 String[] args = new String[argList.size()];
136 argList.toArray(args);
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/util/
TestUtilities.java 128 List argList = new ArrayList();
129 argList.add("TestMain");
130 if (params.verbose) argList.add("-verbose");
131 String[] args = new String[argList.size()];
132 argList.toArray(args);
  /external/opencv3/3rdparty/libpng/
pngconf.h 85 # define PNGARG(arglist) OF(arglist)
89 # define PNGARG(arglist) ()
91 # define PNGARG(arglist) arglist
  /hardware/bsp/intel/peripheral/libmraa/src/gpio/
gpio.c 327 PyObject* arglist; local
329 arglist = Py_BuildValue("(O)", dev->isr_args);
330 if (arglist == NULL) {
333 ret = PyEval_CallObject((PyObject*) dev->isr, arglist);
379 Py_DECREF(arglist);
  /ndk/sources/host-tools/nawk-20071023/
awkgram.y 35 int infunc = 0; /* = 1 if in arglist or body of func */
38 Node *arglist = 0; /* list of args for current function */
427 /* nothing */ { arglist = $$ = 0; }
428 | VAR { arglist = $$ = celltonode($1,CVAR); }
431 arglist = $$ = linkum($1,celltonode($3,CVAR)); }
  /ndk/tests/build/issue20862-libpng-O0/jni/
pngconf.h 85 # define PNGARG(arglist) OF(arglist)
89 # define PNGARG(arglist) ()
91 # define PNGARG(arglist) arglist
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Python.g 332 trailer: LPAREN (arglist)? RPAREN
367 arglist: argument (COMMA argument)*

Completed in 1874 milliseconds

1 2 3 4 5 67 8 91011>>