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

1 2 3 4 5 6 7

  /external/v8/test/mjsunit/
argument-assigned.js 30 var arguments = [ 1, 2, 3 ];
39 arguments[0] = 991;
40 var arguments = [ 1, 2, 3 ]; variable
49 arguments[0] = 991;
52 var arguments = [ 1, 2, 3 ];
66 assertEquals(7, f(7, "var arguments = [ 1, 2, 3 ];"));
72 var tmp = arguments[0];
76 assertEquals(7, f(7, "var arguments = [ 1, 2, 3 ];"));
82 var tmp = arguments[0];
92 var tmp = arguments[0]
    [all...]
debug-evaluate-bool-constructor.js 45 arguments: {
  /external/v8/test/preparser/
nonstrict-arguments.js 30 var arguments = 42; variable
31 arguments = arguments++;
32 arguments += --arguments;
33 arguments -= ++arguments;
34 arguments *= arguments--;
35 function arguments(arguments) {} function
44 var arguments = 42; variable
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
checks.cc 38 va_list arguments; local
39 va_start(arguments, format);
40 vsnprintf(msg, sizeof(msg), format, arguments);
41 va_end(arguments);
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
HandleMessage.h 4 #include "Arguments.h"
8 // Dispatch functions with no reply arguments.
58 // Dispatch functions with reply arguments.
180 // Dispatch functions with delayed reply arguments.
237 // Variadic dispatch functions with non-variadic reply arguments.
262 typename T::DecodeType::ValueType arguments; local
263 if (!argumentDecoder->decode(arguments))
265 callMemberFunction(arguments, object, function);
271 typename T::DecodeType::ValueType arguments; local
272 if (!argumentDecoder->decode(arguments))
283 typename T::DecodeType::ValueType arguments; local
293 typename T::DecodeType::ValueType arguments; local
305 typename T::DecodeType::ValueType arguments; local
    [all...]
  /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 36 // Arguments provides access to runtime call parameters.
38 // It uses the fact that the instance fields of Arguments
44 // Object* Runtime_function(Arguments args) {
48 class Arguments BASE_EMBEDDED {
50 Arguments(int length, Object** arguments)
51 : length_(length), arguments_(arguments) { }
74 // Get the total number of arguments including the receiver.
77 Object** arguments() { return arguments_; } function in class:v8::internal::BASE_EMBEDDED
85 // Custom arguments replicate a small segment of stack that can b
    [all...]
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityTextTraversalTest.java 70 final Bundle arguments = new Bundle(); local
71 arguments.putInt(AccessibilityNodeInfo.ACTION_ARGUMENT_MOVEMENT_GRANULARITY_INT,
80 AccessibilityNodeInfo.ACTION_NEXT_AT_MOVEMENT_GRANULARITY, arguments);
110 AccessibilityNodeInfo.ACTION_NEXT_AT_MOVEMENT_GRANULARITY, arguments);
140 AccessibilityNodeInfo.ACTION_NEXT_AT_MOVEMENT_GRANULARITY, arguments);
166 AccessibilityNodeInfo.ACTION_NEXT_AT_MOVEMENT_GRANULARITY, arguments));
174 AccessibilityNodeInfo.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY, arguments);
204 AccessibilityNodeInfo.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY, arguments);
230 AccessibilityNodeInfo.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY, arguments));
253 final Bundle arguments = new Bundle() local
468 final Bundle arguments = new Bundle(); local
680 final Bundle arguments = new Bundle(); local
926 final Bundle arguments = new Bundle(); local
1179 final Bundle arguments = new Bundle(); local
1431 final Bundle arguments = new Bundle(); local
    [all...]
  /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/webkit/Source/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/Source/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/webkit/Source/WebCore/bindings/js/
ScriptCallStackFactory.cpp 73 // something called us, and gave us arguments.
88 Vector<ScriptValue> arguments; local
91 arguments.append(ScriptValue(exec->globalData(), exec->argument(i)));
92 return ScriptArguments::create(exec, arguments);
  /external/webkit/Source/WebCore/bindings/v8/
ScriptCallStackFactory.cpp 104 PassRefPtr<ScriptArguments> createScriptArguments(const v8::Arguments& v8arguments, unsigned skipArgumentCount)
110 Vector<ScriptValue> arguments; local
112 arguments.append(ScriptValue(v8arguments[i]));
114 return ScriptArguments::create(state, arguments);
  /external/webkit/Source/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...]
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPObjectMessageReceiver.cpp 81 Vector<NPVariant> arguments; local
83 arguments.append(m_npRemoteObjectMap->npVariantDataToNPVariant(argumentsData[i], m_plugin));
88 returnValue = m_npObject->_class->invoke(m_npObject, methodNameData.createNPIdentifier(), arguments.data(), arguments.size(), &result);
94 // Release all arguments.
96 releaseNPVariantValue(&arguments[i]);
109 Vector<NPVariant> arguments; local
111 arguments.append(m_npRemoteObjectMap->npVariantDataToNPVariant(argumentsData[i], m_plugin));
116 returnValue = m_npObject->_class->invokeDefault(m_npObject, arguments.data(), arguments.size(), &result)
212 Vector<NPVariant> arguments; local
    [all...]
  /cts/tools/vm-tests-tf/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/mtpd/
mtpd.h 52 /* The number of arguments. */
53 int arguments; member in struct:protocol
54 /* The usage of the arguments. */
57 int (*connect)(char **arguments);
  /external/webkit/Source/WebCore/dom/
ViewportArguments.cpp 314 ViewportArguments* arguments = static_cast<ViewportArguments*>(data); local
317 arguments->width = findSizeValue(keyString, valueString, document);
319 arguments->height = findSizeValue(keyString, valueString, document);
321 arguments->initialScale = findScaleValue(keyString, valueString, document);
323 arguments->minimumScale = findScaleValue(keyString, valueString, document);
325 arguments->maximumScale = findScaleValue(keyString, valueString, document);
327 arguments->userScalable = findUserScalableValue(keyString, valueString, document);
329 arguments->targetDensityDpi = findTargetDensityDPIValue(keyString, valueString, document);
  /external/webkit/Source/WebKit/gtk/webkit/
webkitviewportattributes.cpp 535 ViewportArguments arguments = webView->priv->corePage->mainFrame()->document()->viewportArguments(); local
537 ViewportAttributes attributes = computeViewportAttributes(arguments, priv->desktopWidth, priv->deviceWidth, priv->deviceHeight, priv->deviceDPI, IntSize(priv->availableWidth, priv->availableHeight));
545 priv->userScalable = static_cast<bool>(arguments.userScalable);
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRunnerOptions.java 35 private final Collection<String> arguments; field in class:MonkeyRunnerOptions
39 Level logLevel, Collection<File> plugins, Collection<String> arguments) {
46 this.arguments = arguments;
70 return arguments;
159 // Once we have the scriptfile, the rest of the arguments go to jython.
  /external/chromium/base/
string_util.h 53 va_list arguments)
61 const wchar_t* format, va_list arguments)
71 va_list arguments; local
72 va_start(arguments, format);
73 int result = vsnprintf(buffer, size, format, arguments);
74 va_end(arguments);
83 va_list arguments; local
84 va_start(arguments, format);
85 int result = vswprintf(buffer, size, format, arguments);
86 va_end(arguments);
    [all...]
  /external/chromium/chrome/browser/
jumplist_win.h 27 // * arguments (std::wstring)
28 // The arguments for the application.
46 const std::wstring& arguments() const { return arguments_; } function in class:ShellLinkItem
52 void SetArguments(const std::wstring& arguments) {
53 arguments_ = arguments;
  /external/icu4c/test/intltest/
dadrcoll.cpp 170 const UChar *arguments = NULL; local
223 testSetting = settings->getString("Arguments", intStatus);
225 logln("Arguments: "+testSetting);
227 arguments = testSetting.getBuffer();
228 processArguments(col, arguments, argLen);
230 processArguments(clone, arguments, argLen);
233 errln("Couldn't process arguments");

Completed in 2058 milliseconds

1 2 3 4 5 6 7