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

1 2 3 4

  /external/v8/src/
checks.cc 45 va_list arguments; local
46 va_start(arguments, format);
47 i::OS::VPrintError(format, arguments);
48 va_end(arguments);
94 va_list arguments; local
95 va_start(arguments, format);
96 i::OS::VPrintError(format, arguments);
97 va_end(arguments);
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...]
stub-cache.h 305 Object* LoadCallbackProperty(Arguments args);
306 Object* StoreCallbackProperty(Arguments args);
310 Object* LoadPropertyWithInterceptorOnly(Arguments args);
311 Object* LoadPropertyWithInterceptorForLoad(Arguments args);
312 Object* LoadPropertyWithInterceptorForCall(Arguments args);
313 Object* StoreInterceptorProperty(Arguments args);
314 Object* CallInterceptorProperty(Arguments args);
315 Object* KeyedLoadPropertyWithInterceptor(Arguments args);
577 const ParameterCount& arguments() { return arguments_; } function in class:v8::internal::CallStubCompiler
  /external/webkit/WebKit/chromium/public/
WebDevToolsMessageData.h 43 WebVector<WebString> arguments; member in struct:WebKit::WebDevToolsMessageData
  /cts/tools/signature-tools/src/signature/compare/model/subst/
ParameterizedTypeProjection.java 65 private List<ITypeReference> arguments = null; field in class:ParameterizedTypeProjection
68 if (arguments == null) {
69 arguments = ViewpointAdapter.substitutedTypeReferences(original
72 return arguments;
  /external/proguard/src/proguard/
ArgumentWordReader.java 28 * Single arguments are split into individual words if necessary.
34 private final String[] arguments; field in class:ArgumentWordReader
39 // * Creates a new ArgumentWordReader for the given arguments.
41 // public ArgumentWordReader(String[] arguments)
43 // this(arguments, null);
48 * Creates a new ArgumentWordReader for the given arguments, with the
51 public ArgumentWordReader(String[] arguments, File baseDir)
55 this.arguments = arguments;
63 return index < arguments.length
    [all...]
  /external/v8/src/arm/
frames-arm.cc 77 // The arguments are traversed as part of the expression stack of
88 int arguments; local
90 // The arguments for cooked frames are traversed as if they were
96 arguments = 0;
98 // Compute the number of arguments by getting the number of formal
102 arguments = function->shared()->formal_parameter_count() + 1;
105 return fp() + offset + (arguments * kPointerSize);
110 const int arguments = Smi::cast(GetExpression(0))->value(); local
112 return fp() + offset + (arguments + 1) * kPointerSize;
117 // Internal frames have no arguments. The stack pointer of th
    [all...]
  /external/v8/src/ia32/
frames-ia32.cc 65 // The arguments are traversed as part of the expression stack of
76 int arguments; local
78 // The arguments for cooked frames are traversed as if they were
84 arguments = 0;
86 // Compute the number of arguments by getting the number of formal
90 arguments = function->shared()->formal_parameter_count() + 1;
93 return fp() + offset + (arguments * kPointerSize);
98 const int arguments = Smi::cast(GetExpression(0))->value(); local
100 return fp() + offset + (arguments + 1) * kPointerSize;
105 // Internal frames have no arguments. The stack pointer of th
    [all...]
  /external/v8/src/x64/
frames-x64.cc 70 // The arguments are traversed as part of the expression stack of
75 // Internal frames have no arguments. The stack pointer of the
81 int arguments; local
83 // The arguments for cooked frames are traversed as if they were
89 arguments = 0;
91 // Compute the number of arguments by getting the number of formal
95 arguments = function->shared()->formal_parameter_count() + 1;
98 return fp() + offset + (arguments * kPointerSize);
103 const int arguments = Smi::cast(GetExpression(0))->value(); local
105 return fp() + offset + (arguments + 1) * kPointerSize
    [all...]
  /external/webkit/JavaScriptCore/os-win32/
WinMain.cpp 46 Vector<char*> arguments; local
50 arguments.append(convertToUtf8(buffer, length));
68 arguments.append(convertToUtf8(commandLine, commandLineLength));
75 int res = main(arguments.size(), arguments.data());
77 for (size_t i = 0; i < arguments.size(); i++)
78 delete arguments[i];
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.1.6.js 27 If the function object being invoked has an arguments property, let x be
29 property [[OldArguments]] whose initial value is x; otherwise, an arguments
31 not given an [[OldArguments]] property. Next, arguments object described
32 below (the same one stored in the arguments property of the activation
33 object) is used as the new value of the arguments property of the function
34 object. This new value is installed even if the arguments property already
37 program syntax that is now discouraged: to access the arguments object for
38 function f within the body of f by using the expression f.arguments.
39 The recommended way to access the arguments object for function f within
40 the body of f is simply to refer to the variable arguments.
55 var arguments = "FAILED!"; variable
    [all...]
  /external/v8/test/mjsunit/
debug-evaluate-bool-constructor.js 45 arguments: {
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Function/
regress-94506.js 22 * SUMMARY: When we invoke a function, the arguments object should take
23 * a back seat to any local identifier named "arguments".
30 var summary = 'Testing functions employing identifiers named "arguments"';
38 var arguments = 5555; variable
41 // use a parameter named "arguments"
42 function F1(arguments)
44 return arguments;
48 // use a local variable named "arguments"
51 var arguments = 55;
52 return arguments;
    [all...]
  /cts/tools/vm-tests/src/util/build/
JarBuildStep.java 59 String[] arguments = new String[] { local
63 boolean success = main.run(arguments);
  /external/bison/djgpp/
subpipe.c 59 static char **arguments; variable
131 arguments = xmalloc(argc * sizeof(arguments[0]));
134 arguments[argc] = xmalloc((strlen(argv[argc]) + 1) * sizeof(arguments[0][0]));
135 strcpy(arguments[argc], argv[argc]);
137 arguments[argc] = NULL;
179 program = strrchr(arguments[0], '/');
183 program = arguments[0];
220 status = spawnvp(P_WAIT, program, arguments);
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSActivation.cpp 32 #include "Arguments.h"
81 // Only return the built-in arguments object if it wasn't overridden above.
82 if (propertyName == exec->propertyNames().arguments) {
126 if (propertyName == exec->propertyNames().arguments)
148 activation->symbolTableGet(exec->propertyNames().arguments, slot);
149 return slot.getValue(exec, exec->propertyNames().arguments);
153 Arguments* arguments = callFrame->optionalCalleeArguments(); local
154 if (!arguments) {
155 arguments = new (callFrame) Arguments(callFrame)
    [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...]
  /external/chromium/base/
string_util.h 49 int vsnprintf(char* buffer, size_t size, const char* format, va_list arguments)
57 const wchar_t* format, va_list arguments) WPRINTF_FORMAT(3, 0);
66 va_list arguments; local
67 va_start(arguments, format);
68 int result = vsnprintf(buffer, size, format, arguments);
69 va_end(arguments);
78 va_list arguments; local
79 va_start(arguments, format);
80 int result = vswprintf(buffer, size, format, arguments);
81 va_end(arguments);
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
dadrcoll.cpp 170 const UChar *arguments = NULL; local
222 testSetting = settings->getString("Arguments", intStatus);
224 logln("Arguments: "+testSetting);
226 arguments = testSetting.getBuffer();
227 processArguments(col, arguments, argLen);
229 processArguments(clone, arguments, argLen);
232 errln("Couldn't process arguments");
  /external/icu4c/test/intltest/
dadrcoll.cpp 170 const UChar *arguments = NULL; local
222 testSetting = settings->getString("Arguments", intStatus);
224 logln("Arguments: "+testSetting);
226 arguments = testSetting.getBuffer();
227 processArguments(col, arguments, argLen);
229 processArguments(clone, arguments, argLen);
232 errln("Couldn't process arguments");
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssService.java 97 super.onStart(startId, arguments);
98 Bundle arguments = intent.getExtras(); local
99 if(arguments != null) {
100 if(arguments.containsKey(REQUERY_KEY)) {
103 if(arguments.containsKey(RSS_URL)) {
105 queryItem(arguments.getString(RSS_URL));
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ServiceStartArguments.java 67 Bundle arguments = (Bundle)msg.obj; local
69 String txt = arguments.getString("name");
72 + arguments.getString("name"));
  /external/bluetooth/glib/glib/gnulib/
printf-args.h 131 arguments; typedef in typeref:struct:__anon2144
134 /* Fetch the arguments, putting them into a. */
140 int printf_fetchargs (va_list args, arguments *a);
  /external/e2fsprogs/intl/
printf-args.h 126 arguments; typedef in typeref:struct:__anon3509
129 /* Fetch the arguments, putting them into a. */
135 int printf_fetchargs (va_list args, arguments *a);
  /external/easymock/src/org/easymock/internal/
Invocation.java 37 private final Object[] arguments; field in class:Invocation
45 this.arguments = expandVarArgs(method.isVarArgs(), args);
85 return arguments;
96 && this.equalArguments(other.arguments);
104 private boolean equalArguments(Object[] arguments) {
105 if (this.arguments.length != arguments.length) {
108 for (int i = 0; i < this.arguments.length; i++) {
109 Object myArgument = this.arguments[i];
110 Object otherArgument = arguments[i];
    [all...]

Completed in 824 milliseconds

1 2 3 4