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

  /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
75 // Cursom arguments replicate a small segment of stack that can b
    [all...]
api.h 137 v8::Arguments::Arguments(v8::Local<v8::Value> data,
  /external/webkit/JavaScriptCore/runtime/
Arguments.cpp 26 #include "Arguments.h"
36 ASSERT_CLASS_FITS_IN_CELL(Arguments);
38 const ClassInfo Arguments::info = { "Arguments", 0, 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 56 class Arguments : public JSObject {
60 Arguments(CallFrame*);
61 Arguments(CallFrame*, NoParametersType);
62 virtual ~Arguments();
112 Arguments* asArguments(JSValue);
114 inline Arguments* asArguments(JSValue value)
116 ASSERT(asObject(value)->inherits(&Arguments::info));
117 return static_cast<Arguments*>(asObject(value));
120 ALWAYS_INLINE void Arguments::getArgumentsData(CallFrame* callFrame, JSFunction*& function, ptrdiff_t& firstParameterIndex, Register*& argv, int& argc)
136 inline Arguments::Arguments(CallFrame* callFrame
239 ALWAYS_INLINE Arguments* Register::arguments() const function in class:JSC::Register
    [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/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/gtest/src/
gtest-death-test.cc 282 NULL); // Message arguments. Ignored in this call.
    [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/
ZygoteConnection.java 55 /** max number of arguments that a connection can specify */
170 Arguments parsedArgs = null;
199 parsedArgs = new Arguments(args);
215 logAndPrintError (newStderr, "Invalid zygote arguments", ex);
283 static class Arguments {
329 Arguments(String args[]) throws IllegalArgumentException {
334 * Parses the commandline arguments intended for the Zygote spawner
397 // Duplicate --rlimit arguments are specifically allowed.
469 * a) a count of arguments (argc, in essence)
520 * @param args non-null; zygote spawner arguments
    [all...]
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 130 /** {@code non-null;} parsed command-line arguments */
131 private static Arguments args;
151 * @param argArray the command line arguments
154 Arguments arguments = new Arguments(); local
155 arguments.parse(argArray);
157 int result = run(arguments);
165 * @param arguments the data + parameters for the conversion
168 public static int run(Arguments arguments)
    [all...]
  /external/webkit/JavaScriptCore/parser/
Grammar.y 274 %type <argumentsNode> Arguments
361 | IDENT { $$ = createNodeInfo<ExpressionNode*>(new (GLOBAL_DATA) ResolveNode(GLOBAL_DATA, *$1, @1.first_column), (*$1 == GLOBAL_DATA->propertyNames->arguments) ? ArgumentsFeature : 0, 0); }
404 | NEW MemberExpr Arguments { NewExprNode* node = new (GLOBAL_DATA) NewExprNode(GLOBAL_DATA, $2.m_node, $3.m_node);
420 | NEW MemberExpr Arguments { NewExprNode* node = new (GLOBAL_DATA) NewExprNode(GLOBAL_DATA, $2.m_node, $3.m_node);
443 MemberExpr Arguments { $$ = makeFunctionCallNode(GLOBAL_DATA, $1, $2, @1.first_column, @1.last_column, @2.last_column); }
444 | CallExpr Arguments { $$ = makeFunctionCallNode(GLOBAL_DATA, $1, $2, @1.first_column, @1.last_column, @2.last_column); }
455 MemberExprNoBF Arguments { $$ = makeFunctionCallNode(GLOBAL_DATA, $1, $2, @1.first_column, @1.last_column, @2.last_column); }
456 | CallExprNoBF Arguments { $$ = makeFunctionCallNode(GLOBAL_DATA, $1, $2, @1.first_column, @1.last_column, @2.last_column); }
467 Arguments:
    [all...]
  /external/v8/include/
v8.h 132 class Arguments;
199 * constructor allows you to pass handles as arguments by value and
335 * handles as arguments by value and to assign between persistent
829 * If no arguments are given, expects the buffer to be large
    [all...]
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 691 milliseconds