HomeSort by relevance Sort by last modified time
    Searched defs:Arguments (Results 1 - 25 of 28) sorted by null

1 2

  /external/llvm/tools/llvm-diff/
DiffLog.h 38 SmallVector<Value*, 4> Arguments;
45 Arguments.push_back(V);
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
genlingware.pl 96 Arguments:
  /external/v8/src/
arguments.h 34 // Arguments provides access to runtime call parameters.
36 // It uses the fact that the instance fields of Arguments
42 // Object* Runtime_function(Arguments args) {
46 class Arguments BASE_EMBEDDED {
48 Arguments(int length, Object** arguments)
49 : length_(length), arguments_(arguments) { }
64 // Get the total number of arguments including the receiver.
67 Object** arguments() { return arguments_; } function in class:v8::internal::BASE_EMBEDDED
74 // Custom arguments replicate a small segment of stack that can b
    [all...]
preparser.h 105 typedef int Arguments;
213 Arguments ParseArguments(bool* ok);
  /external/llvm/lib/VMCore/
PassManager.cpp 47 None, Arguments, Structure, Executions, Details
55 clEnumVal(Arguments , "print pass arguments to pass to 'opt'"),
724 if (PassDebugging < Arguments)
727 dbgs() << "Pass Arguments: ";
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
Arguments.cpp 26 #include "Arguments.h"
36 ASSERT_CLASS_FITS_IN_CELL(Arguments);
38 const ClassInfo Arguments::s_info = { "Arguments", &JSNonFinalObject::s_info, 0, 0 };
40 Arguments::~Arguments()
46 void Arguments::markChildren(MarkStack& markStack)
64 void Arguments::copyToRegisters(ExecState* exec, Register* buffer, uint32_t maxSize)
99 void Arguments::fillArgList(ExecState* exec, MarkedArgumentBuffer& args)
144 bool Arguments::getOwnPropertySlot(ExecState* exec, unsigned i, PropertySlot& slot
    [all...]
Arguments.h 60 class Arguments : public JSNonFinalObject {
68 Arguments(CallFrame*);
69 Arguments(CallFrame*, NoParametersType);
70 virtual ~Arguments();
121 Arguments* asArguments(JSValue);
123 inline Arguments* asArguments(JSValue value)
125 ASSERT(asObject(value)->inherits(&Arguments::s_info));
126 return static_cast<Arguments*>(asObject(value));
129 ALWAYS_INLINE void Arguments::getArgumentsData(CallFrame* callFrame, JSFunction*& function, ptrdiff_t& firstParameterIndex, Register*& argv, int& argc)
145 inline Arguments::Arguments(CallFrame* callFrame
    [all...]
  /dalvik/dx/src/com/android/dx/command/annotool/
Main.java 56 static class Arguments {
69 /** remaining positional arguments */
72 Arguments() {
148 final Arguments args = new Arguments();
  /external/clang/include/clang/Driver/
Job.h 58 /// The list of program arguments (not including the implicit first
60 ArgStringList Arguments;
74 const ArgStringList &getArguments() const { return Arguments; }
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-death-test.cc 507 // Utility class for accumulating command-line arguments.
508 class Arguments {
510 Arguments() {
513 ~Arguments() {
525 void AddArguments(const ::std::vector<Str>& arguments) {
526 for (typename ::std::vector<Str>::const_iterator i = arguments.begin();
527 i != arguments.end();
539 // A struct that encompasses the arguments to the child process of a
542 char* const* argv; // Command-line arguments for the child's call to exec
619 Arguments args
    [all...]
  /external/clang/include/clang/AST/
TemplateName.h 54 /// \brief The number of stored templates or template arguments,
121 const TemplateArgument *Arguments;
126 const TemplateArgument *Arguments)
128 Parameter(Parameter), Arguments(Arguments) { }
204 /// individual arguments.
TemplateBase.h 63 /// The template argument is actually a parameter pack. Arguments are stored
161 /// We assume that storage for the template arguments provided
225 /// template arguments.
338 /// \brief The number of template arguments in the given template argument
345 /// Determines whether two template arguments are superficially the
370 // but template arguments get canonicalized too quickly.
517 SmallVector<TemplateArgumentLoc, 8> Arguments;
538 unsigned size() const { return Arguments.size(); }
541 return Arguments.data();
545 return Arguments[I]
    [all...]
ExprCXX.h 44 /// any of the arguments are type-dependent. In this case, the
89 /// arguments are the arguments within the parentheses (not including
638 /// supply arguments for all of the parameters.
    [all...]
  /packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/
DictionaryMaker.java 38 static class Arguments {
86 public Arguments(String[] argsArray) {
153 final Arguments parsedArgs = new Arguments(args);
161 * @param args the parsed command line arguments.
164 private static FusionDictionary readInputFromParsedArgs(final Arguments args)
214 * This will write the passed dictionary to the file(s) passed in the command line arguments.
215 * @param args the parsed arguments.
220 private static void writeOutputToParsedArgs(final Arguments args, final FusionDictionary dict)
  /external/chromium/testing/gtest/src/
gtest-death-test.cc 844 // Utility class for accumulating command-line arguments.
845 class Arguments {
847 Arguments() {
851 ~Arguments() {
862 void AddArguments(const ::std::vector<Str>& arguments)
    [all...]
  /external/gtest/src/
gtest-death-test.cc 282 NULL); // Message arguments. Ignored in this call.
    [all...]
  /external/llvm/utils/unittest/googletest/
gtest-death-test.cc 844 // Utility class for accumulating command-line arguments.
845 class Arguments {
847 Arguments() {
851 ~Arguments() {
862 void AddArguments(const ::std::vector<Str>& arguments)
    [all...]
  /external/protobuf/gtest/src/
gtest-death-test.cc 796 // Utility class for accumulating command-line arguments.
797 class Arguments {
799 Arguments() {
803 ~Arguments() {
814 void AddArguments(const ::std::vector<Str>& arguments) {
815 for (typename ::std::vector<Str>::const_iterator i = arguments.begin();
816 i != arguments.end();
828 // A struct that encompasses the arguments to the child process of a
831 char* const* argv; // Command-line arguments for the child's call to exec
    [all...]
  /external/iproute2/doc/
ip-cref.tex 45 ip [ OPTIONS ] OBJECT [ COMMAND [ ARGUMENTS ]]
69 the protocol family is guessed from other arguments. If the rest of the command
138 \verb|ARGUMENTS| is a list of arguments to the command.
139 The arguments depend on the command and object. There are two types of arguments:
169 The arguments did not pass verification for self-consistency.
172 \verb|ip| failed to compile a kernel request from the arguments
237 \paragraph{Arguments:}
335 \paragraph{Arguments:
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
RuntimeInit.java 295 final Arguments args;
297 args = new Arguments(argv);
304 // Remaining arguments are passed to the start class's static main
384 static class Arguments {
388 /** all following arguments */
396 Arguments(String args[]) throws IllegalArgumentException {
401 * Parses the commandline arguments intended for the Runtime.
ZygoteConnection.java 62 /** max number of arguments that a connection can specify */
177 Arguments parsedArgs = null;
208 parsedArgs = new Arguments(args);
238 logAndPrintError(newStderr, "Invalid zygote arguments", ex);
316 static class Arguments {
372 Arguments(String args[]) throws IllegalArgumentException {
377 * Parses the commandline arguments intended for the Zygote spawner
450 // Duplicate --rlimit arguments are specifically allowed.
539 * a) a count of arguments (argc, in essence)
590 * @param args non-null; zygote spawner arguments
    [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp     [all...]
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 135 /** {@code non-null;} parsed command-line arguments */
136 private static Arguments args;
168 * @param argArray the command line arguments
171 Arguments arguments = new Arguments(); local
172 arguments.parse(argArray);
174 int result = run(arguments);
182 * @param arguments the data + parameters for the conversion
185 public static int run(Arguments arguments) throws IOException
960 private final String[] arguments; field in class:Main.Arguments.ArgumentsParser
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
SyntaxChecker.h 81 typedef int Arguments;
ASTBuilder.h 95 typedef ArgumentsNode* Arguments;
160 if (m_globalData->propertyNames->arguments == *ident)
229 ExpressionNode* createNewExpr(ExpressionNode* expr, ArgumentsNode* arguments, int start, int divot, int end)
231 NewExprNode* node = new (m_globalData) NewExprNode(m_globalData, expr, arguments);
301 if (*name == m_globalData->propertyNames->arguments)
495 if (m_globalData->propertyNames->arguments == *ident)
    [all...]

Completed in 2469 milliseconds

1 2