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

12 3 4 5 6 7 8 91011>>

  /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...]
ast_cpp_unittest.cpp 107 ArgList{vector<string>{"int normalarg", "float normal2"}})};
110 ArgList{ "int subarg" },
114 ArgList{ "int subarg" },
155 ArgList simple("foo");
157 ArgList compound({"foo", "bar", "baz"});
161 ArgList nested(std::move(args));
184 ConstructorImpl c("ClassName", ArgList({"a", "b", "c"}),
206 ArgList({"has", "some", "args"}));
235 ArgList{{"arg 1", "arg 2", "arg 3"}},
  /external/skia/debugger/
debuggermain.cpp 33 QStringList argList = a.arguments();
35 if (argList.count() <= 0) {
41 QStringList::const_iterator iter = argList.begin();
46 for ( ; iter != argList.end(); ++iter) {
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
mips-elf-flags.exp 39 # Assemble jr.s using each of the argument lists in ARGLIST. Return the
41 proc assemble_for_flags {arglist} {
47 foreach args $arglist {
58 # Assemble a file using each set of arguments in ARGLIST. Check that
61 proc good_combination {arglist flags} {
65 set testname "MIPS compatible objects: $arglist"
66 set objs [assemble_for_flags $arglist]
100 proc bad_combination {arglist message} {
104 set testname "MIPS incompatible objects: $arglist"
105 set objs [assemble_for_flags $arglist]
    [all...]
  /external/llvm/lib/Option/
ArgList.cpp 1 //===--- ArgList.cpp - Argument List Management ---------------------------===//
10 #include "llvm/Option/ArgList.h"
37 void ArgList::append(Arg *A) {
41 void ArgList::eraseArg(OptSpecifier Id) {
47 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id) const {
55 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id0, OptSpecifier Id1) const {
64 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id0, OptSpecifier Id1,
74 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id0, OptSpecifier Id1,
84 Arg *ArgList::getLastArg(OptSpecifier Id) const {
96 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1) const
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
ListenerTest.java 66 ArrayList<ListenerArgument> argList = new ArrayList<ListenerArgument>();
67 argList.add(arg);
68 return check(argList, msec);
75 * @param argList the expected callback argument list.
80 public synchronized boolean check(List<ListenerArgument> argList, long msec)
84 createResultString(sb, "Expected", argList);
88 mExArgList = new ArrayList<ListenerArgument>(argList);
  /external/autotest/client/cros/cellular/pseudomodem/
client.py 116 arglist = args.split(' ', 1)
117 if len(arglist) != 2:
122 arglist[0], arglist[1],
147 arglist = args.split(' ')
148 if len(arglist) < 1:
151 if arglist[0] == 'pco':
152 if len(arglist) == 1:
153 arglist.append('')
154 elif len(arglist) != 2
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPExtensionsProvider.java 131 ArrayList argList = new ArrayList( arity);
137 argList.add ( i, ((XNodeSet)argument).nodelist() );
140 argList.add ( i, passedArgument );
142 argList.add ( i, argument );
146 return ( xpathFunction.evaluate ( argList ));
182 ArrayList argList = new ArrayList( arity);
188 argList.add ( i, ((XNodeSet)argument).nodelist() );
191 argList.add ( i, passedArgument );
193 argList.add ( i, argument );
197 return ( xpathFunction.evaluate ( argList ));
    [all...]
  /external/clang/test/SemaObjC/
format-cstrings-warning.m 10 va_list argList;
15 - (instancetype)initWithFormat:(NSString *)format arguments:(va_list)argList __attribute__((format(__NSString__, 1, 0)));
17 - (instancetype)initWithFormat:(NSString *)format locale:(id)locale arguments:(va_list)argList __attribute__((format(__NSString__, 1, 0)));
20 - (void)MyRandomMethod:(NSString *)format locale:(id)locale arguments:(va_list)argList __attribute__((format(__NSString__, 1, 0))); // expected-note {{method 'MyRandomMethod:locale:arguments:' declared here}}
36 [pns MyRandomMethod : @"Hello%s %d %d" locale:0 arguments: argList]; // expected-warning {{using %s directive in NSString which is being passed as a formatting argument to the formatting method}}
61 void Test1(va_list argList) {
63 CFStringCreateWithFormatAndArguments (alloc, 0, (CFStringRef)@"%s\n", argList); // expected-warning {{using %s directive in CFString which is being passed as a formatting argument to the formatting CFfunction}}
64 CFStringAppendFormatAndArguments ((CFMutableStringRef)@"AAAA", 0, (CFStringRef)"Hello %s there %d\n", argList); // expected-warning {{using %s directive in CFString which is being passed as a formatting argument to the formatting CFfunction}}
65 CFStringCreateWithFormatAndArguments (alloc, 0, (CFStringRef)@"%c\n", argList);
66 CFStringAppendFormatAndArguments ((CFMutableStringRef)@"AAAA", 0, (CFStringRef)"%d\n", argList);
    [all...]
  /external/clang/include/clang/Driver/
ToolChain.h 27 class ArgList;
71 const llvm::opt::ArgList &Args;
99 const llvm::opt::ArgList &Args);
107 static void addSystemInclude(const llvm::opt::ArgList &DriverArgs,
110 static void addExternCSystemInclude(const llvm::opt::ArgList &DriverArgs,
114 addExternCSystemIncludeIfExists(const llvm::opt::ArgList &DriverArgs,
117 static void addSystemIncludes(const llvm::opt::ArgList &DriverArgs,
259 virtual std::string getCompilerRT(const llvm::opt::ArgList &Args,
263 const char *getCompilerRTArgString(const llvm::opt::ArgList &Args,
267 static bool needsProfileRT(const llvm::opt::ArgList &Args)
    [all...]
  /external/opencv3/modules/flann/include/opencv2/flann/
logger.h 73 int _log(int level, const char* fmt, va_list arglist)
76 int ret = vfprintf(stream, fmt, arglist);
101 va_list arglist; local
102 va_start(arglist, fmt);
103 int ret = instance()._log(level,fmt,arglist);
104 va_end(arglist);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
_G_config.h 96 # define _G_ARGS(ARGLIST) ARGLIST
98 # define _G_ARGS(ARGLIST) ()
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
_G_config.h 96 # define _G_ARGS(ARGLIST) ARGLIST
98 # define _G_ARGS(ARGLIST) ()
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_execfile.py 12 ArgList, String, syms)
19 power< 'execfile' trailer< '(' arglist< filename=any [',' globals=any [',' locals=any ] ] > ')' > >
34 open_args = ArgList([filename.clone()], rparen=execfile_paren)
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_reduce.py 23 arglist< (
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_execfile.py 12 ArgList, String, syms)
19 power< 'execfile' trailer< '(' arglist< filename=any [',' globals=any [',' locals=any ] ] > ')' > >
34 open_args = ArgList([filename.clone()], rparen=execfile_paren)
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_reduce.py 23 arglist< (
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_execfile.py 12 ArgList, String, syms)
19 power< 'execfile' trailer< '(' arglist< filename=any [',' globals=any [',' locals=any ] ] > ')' > >
34 open_args = ArgList([filename.clone()], rparen=execfile_paren)
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_reduce.py 23 arglist< (
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_execfile.py 12 ArgList, String, syms)
19 power< 'execfile' trailer< '(' arglist< filename=any [',' globals=any [',' locals=any ] ] > ')' > >
34 open_args = ArgList([filename.clone()], rparen=execfile_paren)
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_reduce.py 23 arglist< (

Completed in 1513 milliseconds

12 3 4 5 6 7 8 91011>>