/external/llvm/utils/ |
llvm.grm | 298 ArgList ::= ArgListH | ArgListH ^ "," "..." | "..." | _ ; 301 GlobalName ^ "(" ^ ArgList ^ ")"
|
/frameworks/compile/slang/ |
rs_cc_options.cpp | 23 #include "llvm/Option/ArgList.h" 136 for (llvm::opt::ArgList::const_iterator it = Args.begin(), ie = Args.end();
|
rs_cc_options.h | 20 #include "llvm/Option/ArgList.h"
|
/external/bison/src/ |
print-xml.c | 445 va_list arglist; local 449 va_start (arglist, fmt); 450 vfprintf (out, fmt, arglist); 451 va_end (arglist);
|
/external/clang/docs/ |
DriverInternals.rst | 136 inside an ArgList structure, which contains the original vector of 278 The ArgList class provides a number of simple helper methods to 322 a new ArgList data structure). Although this allows the clang driver to 351 This bit usually doesn't need to be set by hand, as the key ArgList
|
/external/clang/test/Analysis/ |
NoReturn.m | 40 + (void)raise:(NSString *)name format:(NSString *)format arguments:(va_list)argList;
|
/external/llvm/lib/LibDriver/ |
LibDriver.cpp | 19 #include "llvm/Option/ArgList.h"
|
/external/llvm/unittests/Option/ |
OptionParsingTest.cpp | 12 #include "llvm/Option/ArgList.h"
|
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
fpdf_render_text.cpp | 181 va_list argList; 182 va_start(argList, count); 184 int p = va_arg(argList, int); 187 va_end(argList);
|
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/ |
BindingTarget.java | 169 * ArgList expression is added as the new binding expression that depends on others.
|
/ndk/sources/host-tools/nawk-20071023/ |
main.c | 145 argv[0] = cmdname; /* put prog name at front of arglist */
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/ |
test_prototypes.py | 17 # If the arglist would be destroyed BEFORE the result has been built,
|
/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/ |
fix_idioms.py | 51 power< list='list' trailer< '(' (not arglist<any+>) any ')' > >
|
/prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/ |
test_prototypes.py | 17 # If the arglist would be destroyed BEFORE the result has been built,
|
/prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/ |
fix_idioms.py | 51 power< list='list' trailer< '(' (not arglist<any+>) any ')' > >
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_prototypes.py | 17 # If the arglist would be destroyed BEFORE the result has been built,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_idioms.py | 51 power< list='list' trailer< '(' (not arglist<any+>) any ')' > >
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_prototypes.py | 17 # If the arglist would be destroyed BEFORE the result has been built,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_idioms.py | 51 power< list='list' trailer< '(' (not arglist<any+>) any ')' > >
|
/external/libjpeg-turbo/ |
jmorecfg.h | 200 #define JMETHOD(type,methodname,arglist) type (*methodname) arglist
|
/external/llvm/lib/Option/ |
OptTable.cpp | 12 #include "llvm/Option/ArgList.h" 189 Arg *OptTable::ParseOneArg(const ArgList &Args, unsigned &Index,
|
/external/vixl/tools/ |
test.py | 85 def ArgList(self, to_test): 379 opts_list = map(lambda opt : opt.ArgList(args.__dict__[opt.name]), options)
|
/external/autotest/client/bin/ |
kernel.py | 50 arglist = [] 60 arglist.append(arg) 67 # Now, for each argument in arglist, try to add it to the kernel that was 70 for a in arglist:
|
/external/clang/lib/Driver/ |
Compilation.cpp | 17 #include "llvm/Option/ArgList.h"
|
/external/clang/lib/Lex/ |
Preprocessor.cpp | 165 for (MacroArgs *ArgList = MacroArgCache; ArgList;) 166 ArgList = ArgList->deallocate(); [all...] |