HomeSort by relevance Sort by last modified time
    Searched full:arglist (Results 1 - 25 of 811) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/Option/
CMakeLists.txt 3 ArgList.cpp
  /external/eigen/lapack/
lapack_common.h 16 #define EIGEN_LAPACK_FUNC(FUNC,ARGLIST) \
17 extern "C" { int EIGEN_BLAS_FUNC(FUNC) ARGLIST; } \
18 int EIGEN_BLAS_FUNC(FUNC) ARGLIST
  /external/clang/test/SemaObjC/
format-ostrace-warning.m 7 va_list argList;
31 void Test1(va_list argList) {
33 CStringCreateWithFormatAndArguments (alloc, 0, "%s\n", argList);
34 CStringAppendFormatAndArguments ((CFMutableStringRef)@"AAAA", 0, "Hello %s there %d\n", argList);
35 CStringCreateWithFormatAndArguments (alloc, 0, "%c\n", argList);
36 CStringAppendFormatAndArguments ((CFMutableStringRef)@"AAAA", 0, "%d\n", argList);
  /external/libdaemon/libdaemon/
dlog.c 51 void daemon_logv(int prio, const char* template, va_list arglist) {
58 vsyslog(prio | LOG_DAEMON, template, arglist);
65 vfprintf(stderr, template, arglist);
70 vfprintf(stdout, template, arglist);
79 va_list arglist; local
81 va_start(arglist, template);
82 daemon_logv(prio, template, arglist);
83 va_end(arglist);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_intern.py 21 ( not(arglist | argument<any '=' any>) obj=any
22 | obj=arglist<(not argument<any '=' any>) any ','> )
31 if obj.type == syms.arglist:
34 newarglist = pytree.Node(syms.arglist, [obj.clone()])
fix_map.py 34 trailer< '(' arglist< 'None' ',' arg=any [','] > ')' >
41 arglist<
53 'map' trailer< '(' [arglist=any] ')' >
76 if "arglist" in results:
77 args = results["arglist"]
78 if args.type == syms.arglist and \
fix_metaclass.py 6 an arglist.
168 # Node(classdef, ['class', 'name', '(', arglist, ')', ':', suite])
170 if node.children[3].type == syms.arglist:
171 arglist = node.children[3]
175 arglist = Node(syms.arglist, [parent])
176 node.set_child(3, arglist)
180 arglist = Node(syms.arglist, [])
181 node.insert_child(3, arglist)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_intern.py 21 ( not(arglist | argument<any '=' any>) obj=any
22 | obj=arglist<(not argument<any '=' any>) any ','> )
31 if obj.type == syms.arglist:
34 newarglist = pytree.Node(syms.arglist, [obj.clone()])
fix_map.py 34 trailer< '(' arglist< 'None' ',' arg=any [','] > ')' >
41 arglist<
53 'map' trailer< '(' [arglist=any] ')' >
76 if "arglist" in results:
77 args = results["arglist"]
78 if args.type == syms.arglist and \
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_intern.py 21 ( not(arglist | argument<any '=' any>) obj=any
22 | obj=arglist<(not argument<any '=' any>) any ','> )
31 if obj.type == syms.arglist:
34 newarglist = pytree.Node(syms.arglist, [obj.clone()])
fix_map.py 34 trailer< '(' arglist< 'None' ',' arg=any [','] > ')' >
41 arglist<
53 'map' trailer< '(' [arglist=any] ')' >
76 if "arglist" in results:
77 args = results["arglist"]
78 if args.type == syms.arglist and \
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_intern.py 21 ( not(arglist | argument<any '=' any>) obj=any
22 | obj=arglist<(not argument<any '=' any>) any ','> )
31 if obj.type == syms.arglist:
34 newarglist = pytree.Node(syms.arglist, [obj.clone()])
fix_map.py 34 trailer< '(' arglist< 'None' ',' arg=any [','] > ')' >
41 arglist<
53 'map' trailer< '(' [arglist=any] ')' >
76 if "arglist" in results:
77 args = results["arglist"]
78 if args.type == syms.arglist and \
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_intern.py 21 ( not(arglist | argument<any '=' any>) obj=any
22 | obj=arglist<(not argument<any '=' any>) any ','> )
31 if obj.type == syms.arglist:
34 newarglist = pytree.Node(syms.arglist, [obj.clone()])
fix_map.py 34 trailer< '(' arglist< 'None' ',' arg=any [','] > ')' >
41 arglist<
53 'map' trailer< '(' [arglist=any] ')' >
76 if "arglist" in results:
77 args = results["arglist"]
78 if args.type == syms.arglist and \
  /system/chre/util/system/
debug_dump.cc 26 va_list argList;
27 va_start(argList, formatStr);
29 formatStr, argList);
30 va_end(argList);
  /packages/inputmethods/LatinIME/native/jni/src/utils/
log_utils.cpp 48 va_list argList;
49 va_start(argList, format);
51 const int size = vsnprintf(fixedSizeCString, DEFAULT_LINE_SIZE, format, argList) + 1;
52 va_end(argList);
60 va_start(argList, format);
62 vsnprintf(variableSizeCString, size, format, argList);
63 va_end(argList);
  /external/clang/lib/Driver/
Tools.h 42 const llvm::opt::ArgList &Args,
48 static const char *getBaseInputName(const llvm::opt::ArgList &Args,
50 static const char *getBaseInputStem(const llvm::opt::ArgList &Args,
52 static const char *getDependencyFileName(const llvm::opt::ArgList &Args,
57 const Driver &D, const llvm::opt::ArgList &Args,
63 void AddAArch64TargetArgs(const llvm::opt::ArgList &Args,
66 const llvm::opt::ArgList &Args,
69 void AddARM64TargetArgs(const llvm::opt::ArgList &Args,
71 void AddMIPSTargetArgs(const llvm::opt::ArgList &Args,
73 void AddPPCTargetArgs(const llvm::opt::ArgList &Args
    [all...]
ToolChains.h 106 void init(const llvm::Triple &TargetTriple, const llvm::opt::ArgList &Args,
147 const llvm::opt::ArgList &Args,
153 const llvm::opt::ArgList &Args,
181 void init(const llvm::Triple &TargetTriple, const llvm::opt::ArgList &Args);
216 const llvm::opt::ArgList &Args);
245 const llvm::opt::ArgList &DriverArgs,
268 const llvm::opt::ArgList &Args);
276 StringRef getMachOArchName(const llvm::opt::ArgList &Args) const;
279 virtual void AddLinkARCArgs(const llvm::opt::ArgList &Args,
283 virtual void AddLinkRuntimeLibArgs(const llvm::opt::ArgList &Args
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/classes/
Range.py 8 def handleargs(arglist):
12 if len(arglist) == 1:
13 return 0, int(arglist[0]), 1
14 elif len(arglist) == 2:
15 return int(arglist[0]), int(arglist[1]), 1
16 elif len(arglist) == 3:
17 if arglist[2] == 0:
19 return tuple(int(x) for x in arglist)
21 raise TypeError("range() accepts 1-3 arguments, given", len(arglist))
    [all...]
  /external/python/cpython2/Demo/classes/
Range.py 8 def handleargs(arglist):
12 if len(arglist) == 1:
13 return 0, int(arglist[0]), 1
14 elif len(arglist) == 2:
15 return int(arglist[0]), int(arglist[1]), 1
16 elif len(arglist) == 3:
17 if arglist[2] == 0:
19 return tuple(int(x) for x in arglist)
21 raise TypeError("range() accepts 1-3 arguments, given", len(arglist))
    [all...]
  /external/python/cpython2/Mac/Modules/cg/
cgscan.py 32 def destination(self, type, name, arglist):
35 if arglist:
36 t, n, m = arglist[0]
41 if t == 'CFAllocatorRef' and m == 'InMode' and len(arglist) > 1:
42 t, n, m = arglist[1]
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_map.py 34 trailer< '(' arglist< 'None' ',' arg=any [','] > ')' >
41 arglist<
53 'map' trailer< '(' [arglist=any] ')' >
76 if "arglist" in results:
77 args = results["arglist"]
78 if args.type == syms.arglist and \
  /external/python/cpython3/Lib/lib2to3/fixes/
fix_map.py 34 trailer< '(' arglist< 'None' ',' arg=any [','] > ')' >
41 arglist<
53 'map' trailer< '(' [arglist=any] ')' >
76 if "arglist" in results:
77 args = results["arglist"]
78 if args.type == syms.arglist and \
  /system/tools/aidl/
ast_cpp.h 101 class ArgList : public AstNode {
103 ArgList() = default;
104 explicit ArgList(const std::string& single_argument);
105 explicit ArgList(const std::vector<std::string>& arg_list);
106 explicit ArgList(std::vector<std::unique_ptr<AstNode>> arg_list);
107 ArgList(ArgList&& arg_list);
108 virtual ~ArgList() = default;
115 DISALLOW_COPY_AND_ASSIGN(ArgList);
116 }; // class ArgList
    [all...]

Completed in 1847 milliseconds

1 2 3 4 5 6 7 8 91011>>