/external/webkit/Source/WebCore/ForwardingHeaders/runtime/ |
ArgList.h | 3 #include <JavaScriptCore/ArgList.h>
|
/external/bison/lib/ |
argmatch.h | 35 # define ARGMATCH_VERIFY(Arglist, Vallist) \ 36 verify (ARRAY_CARDINALITY (Arglist) == ARRAY_CARDINALITY (Vallist) + 1) 38 /* Return the index of the element of ARGLIST (NULL terminated) that 43 ptrdiff_t argmatch (char const *arg, char const *const *arglist, 46 # define ARGMATCH(Arg, Arglist, Vallist) \ 47 argmatch (Arg, Arglist, (char const *) (Vallist), sizeof *(Vallist)) 69 void argmatch_valid (char const *const *arglist, 72 # define ARGMATCH_VALID(Arglist, Vallist) \ 73 argmatch_valid (Arglist, (char const *) (Vallist), sizeof *(Vallist)) 81 char const *arg, char const *const *arglist, [all...] |
argmatch.c | 77 NULL-terminated array ARGLIST, return the index in ARGLIST 88 argmatch (const char *arg, const char *const *arglist, 91 size_t i; /* Temporary index in ARGLIST. */ 99 for (i = 0; arglist[i]; i++) 101 if (!strncmp (arglist[i], arg, arglen)) 103 if (strlen (arglist[i]) == arglen) 146 ARGLIST is the same as in argmatch. 150 argmatch_valid (const char *const *arglist, 159 for (i = 0; arglist[i]; i++ [all...] |
/external/dropbear/ |
scpmisc.h | 30 typedef struct arglist arglist; typedef in typeref:struct:arglist 31 struct arglist { struct 36 void addargs(arglist *, char *, ...); 37 void replacearg(arglist *, u_int, char *, ...); 38 void freeargs(arglist *);
|
/external/clang/lib/Driver/ |
Tools.h | 33 const ArgList &Args, 38 void AddARMTargetArgs(const ArgList &Args, ArgStringList &CmdArgs, 40 void AddMIPSTargetArgs(const ArgList &Args, ArgStringList &CmdArgs) const; 41 void AddSparcTargetArgs(const ArgList &Args, ArgStringList &CmdArgs) const; 42 void AddX86TargetArgs(const ArgList &Args, ArgStringList &CmdArgs) const; 54 const ArgList &TCArgs, 71 const ArgList &TCArgs, 85 const ArgList &TCArgs, 157 void AddDarwinArch(const ArgList &Args, ArgStringList &CmdArgs) const; 170 static const char *getBaseInputName(const ArgList &Args [all...] |
ArgList.cpp | 1 //===--- ArgList.cpp - Argument List Management ---------------------------===// 10 #include "clang/Driver/ArgList.h" 39 ArgList::ArgList() { 42 ArgList::~ArgList() { 45 void ArgList::append(Arg *A) { 49 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id) const { 57 Arg *ArgList::getLastArg(OptSpecifier Id) const { 69 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1) const [all...] |
CMakeLists.txt | 6 ArgList.cpp
|
Option.cpp | 13 #include "clang/Driver/ArgList.h" 116 Arg *OptionGroup::accept(const ArgList &Args, unsigned &Index) const { 125 Arg *InputOption::accept(const ArgList &Args, unsigned &Index) const { 134 Arg *UnknownOption::accept(const ArgList &Args, unsigned &Index) const { 144 Arg *FlagOption::accept(const ArgList &Args, unsigned &Index) const { 158 Arg *JoinedOption::accept(const ArgList &Args, unsigned &Index) const { 170 Arg *CommaJoinedOption::accept(const ArgList &Args, 205 Arg *SeparateOption::accept(const ArgList &Args, unsigned &Index) const { 225 Arg *MultiArgOption::accept(const ArgList &Args, unsigned &Index) const { 249 Arg *JoinedOrSeparateOption::accept(const ArgList &Args [all...] |
Arg.cpp | 11 #include "clang/Driver/ArgList.h" 63 std::string Arg::getAsString(const ArgList &Args) const { 79 void Arg::renderAsInput(const ArgList &Args, ArgStringList &Output) const { 89 void Arg::render(const ArgList &Args, ArgStringList &Output) const {
|
/cts/tools/host/src/com/android/cts/ |
CommandParser.java | 108 ArrayList<String> arglist = new ArrayList<String>(); local 113 arglist.add(m.group(1)); 116 if (arglist.size() == 0) { 119 cp.parse(arglist); 126 * @param arglist The argument list. 128 private void parse(ArrayList<String> arglist) 130 mArgLength = arglist.size(); 132 mAction = arglist.get(currentArgIndex).toLowerCase(); 137 while (++currentArgIndex < arglist.size()) { 138 originalOption = arglist.get(currentArgIndex).trim() [all...] |
/external/libffi/testsuite/libffi.call/ |
pyobjc-tc.c | 39 ffi_type* arglist[6]; local 74 arglist[0] = &ffi_type_sint; 75 arglist[1] = &ffi_type_pointer; 76 arglist[2] = &point_type; 77 arglist[3] = &rect_type; 78 arglist[4] = &ffi_type_sint; 79 arglist[5] = NULL; 82 5, &ffi_type_sint, arglist);
|
/external/chromium/build/ |
apply_locales.py | 20 (options, arglist) = parser.parse_args(argv) 22 if len(arglist) < 3: 26 str_template = arglist[1] 27 locales = arglist[2:]
|
/external/webkit/Source/JavaScriptCore/runtime/ |
ArgList.cpp | 22 #include "ArgList.h" 33 void ArgList::getSlice(int startIndex, ArgList& result) const 36 result = ArgList(m_args, 0); 39 result = ArgList(m_args + startIndex, m_argCount - startIndex);
|
FunctionConstructor.h | 39 JSObject* constructFunction(ExecState*, JSGlobalObject*, const ArgList&, const Identifier& functionName, const UString& sourceURL, int lineNumber); 40 JSObject* constructFunction(ExecState*, JSGlobalObject*, const ArgList&);
|
ArgList.h | 179 class ArgList { 185 ArgList() 191 ArgList(ExecState* exec) 197 ArgList(JSValue* args, unsigned argCount) 207 ArgList(Register* args, int argCount) 214 ArgList(const MarkedArgumentBuffer& args) 237 void getSlice(int startIndex, ArgList& result) const;
|
FunctionConstructor.cpp | 51 ArgList args(exec); 63 ArgList args(exec); 75 JSObject* constructFunction(ExecState* exec, JSGlobalObject* globalObject, const ArgList& args, const Identifier& functionName, const UString& sourceURL, int lineNumber) 113 JSObject* constructFunction(ExecState* exec, JSGlobalObject* globalObject, const ArgList& args)
|
CallData.h | 36 class ArgList; 60 JSValue call(ExecState*, JSValue functionObject, CallType, const CallData&, JSValue thisValue, const ArgList&);
|
/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/lib/Frontend/ |
CreateInvocationFromCommandLine.cpp | 20 #include "clang/Driver/ArgList.h" 32 clang::createInvocationFromCommandLine(llvm::ArrayRef<const char *> ArgList, 38 Diags = CompilerInstance::createDiagnostics(DiagOpts, ArgList.size(), 39 ArgList.begin()); 44 Args.insert(Args.end(), ArgList.begin(), ArgList.end());
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
_G_config.h | 96 # define _G_ARGS(ARGLIST) ARGLIST 98 # define _G_ARGS(ARGLIST) ()
|
/external/clang/include/clang/Driver/ |
ArgList.h | 1 //===--- ArgList.h - Argument List Management ----------*- C++ -*-===// 31 class ArgList; 34 /// arg_iterator - Iterates through arguments stored inside an ArgList. 40 const ArgList &Args; 62 const ArgList &_Args, OptSpecifier _Id0 = 0U, 92 /// ArgList - Ordered collection of driver arguments. 94 /// The ArgList class manages a list of Arg instances as well as 98 class ArgList { 100 ArgList(const ArgList &); // DO NOT IMPLEMEN [all...] |
Arg.h | 20 class ArgList; 28 /// ArgList to provide efficient iteration over all instances of a 43 /// ArgList. 86 const char *getValue(const ArgList &Args, unsigned N=0) const { 102 void render(const ArgList &Args, ArgStringList &Output) const; 108 void renderAsInput(const ArgList &Args, ArgStringList &Output) const; 116 std::string getAsString(const ArgList &Args) const;
|
Option.h | 20 class ArgList; 161 virtual Arg *accept(const ArgList &Args, unsigned &Index) const = 0; 174 virtual Arg *accept(const ArgList &Args, unsigned &Index) const; 189 virtual Arg *accept(const ArgList &Args, unsigned &Index) const; 202 virtual Arg *accept(const ArgList &Args, unsigned &Index) const; 217 virtual Arg *accept(const ArgList &Args, unsigned &Index) const; 230 virtual Arg *accept(const ArgList &Args, unsigned &Index) const; 243 virtual Arg *accept(const ArgList &Args, unsigned &Index) const; 256 virtual Arg *accept(const ArgList &Args, unsigned &Index) const; 277 virtual Arg *accept(const ArgList &Args, unsigned &Index) const [all...] |
/external/llvm/test/CodeGen/ARM/ |
fast-isel-crash.ll | 17 define void @wrap(i8 addrspace(1)* addrspace(1)* %arglist, i32 addrspace(1)* %gtid) nounwind ssp {
|
/dalvik/vm/native/ |
java_lang_reflect_Constructor.cpp | 38 ArrayObject* argList = (ArrayObject*) args[1]; 68 (void) dvmInvokeMethod(newObj, meth, argList, params, NULL, noAccessCheck);
|