HomeSort by relevance Sort by last modified time
    Searched refs:arguments (Results 226 - 250 of 697) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/test/mjsunit/
debug-references.js 47 function testRequest(dcp, arguments, success, count) {
48 // Generate request with the supplied arguments.
50 if (arguments) {
51 request = '{' + base_request + ',"arguments":' + arguments + '}';
87 '"arguments":{"expression":"Point"}}';
  /external/webkit/Source/JavaScriptCore/API/
JSObjectRef.cpp 137 JSObjectRef JSObjectMakeArray(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
146 argList.append(toJS(exec, arguments[i]));
162 JSObjectRef JSObjectMakeDate(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
169 argList.append(toJS(exec, arguments[i]));
182 JSObjectRef JSObjectMakeError(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
187 JSValue message = argumentCount ? toJS(exec, arguments[0]) : jsUndefined();
201 JSObjectRef JSObjectMakeRegExp(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
208 argList.append(toJS(exec, arguments[i]));
422 JSValueRef JSObjectCallAsFunction(JSContextRef ctx, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
435 argList.append(toJS(exec, arguments[i]))
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
15.3.1.1-2.js 28 When the Function function is called with some arguments p1, p2, . . . , pn,
29 body (where n might be 0, that is, there are no "p" arguments, and where body
33 had been called with the same arguments (15.3.2.1).
70 array[item++] = new TestCase( SECTION, "myfunc1.arguments", null, myfunc1.arguments );
84 array[item++] = new TestCase( SECTION, "myfunc2.arguments", null, myfunc2.arguments );
98 array[item++] = new TestCase( SECTION, "myfunc3.arguments", null, myfunc3.arguments );
15.3.2.1-2.js 63 array[item++] = new TestCase( SECTION, "myfunc1.arguments", null, myfunc1.arguments );
77 array[item++] = new TestCase( SECTION, "myfunc2.arguments", null, myfunc2.arguments );
91 array[item++] = new TestCase( SECTION, "myfunc3.arguments", null, myfunc3.arguments );
  /external/webkit/Tools/DumpRenderTree/
AccessibilityController.cpp 87 static JSValueRef getElementAtPointCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
92 x = JSValueToNumber(context, arguments[0], exception);
93 y = JSValueToNumber(context, arguments[1], exception);
  /external/webkit/Tools/WebKitLauncher/
main.m 86 static void addStartPageToArgumentsIfNeeded(NSMutableArray *arguments)
95 [arguments addObject:startPagePath];
231 NSMutableArray *arguments = [NSMutableArray arrayWithObject:executablePath];
235 addStartPageToArgumentsIfNeeded(arguments);
238 [arguments addObject:[NSString stringWithUTF8String:*argv]];
240 myExecve(executablePath, arguments, environment);
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountCheckSettingsFragment.java 798 Bundle arguments = new Bundle(); local
809 final Bundle arguments = getArguments(); local
878 Bundle arguments = new Bundle(); local
888 final Bundle arguments = getArguments(); local
    [all...]
  /development/scripts/
stack 361 options, arguments = getopt.getopt(sys.argv[1:], "",
382 if len(arguments) > 1:
388 if not arguments or arguments[0] == "-":
392 print "Searching for native crashes in %s" % arguments[0]
393 f = open(arguments[0], "r")
  /external/v8/test/mjsunit/regress/
regress-1079.js 30 // Getting the arguments property of an optimized function should not crash,
34 return unoptimized.apply(null, arguments);
40 return optimized.arguments;
regress-124.js 50 // Receiver should be the arguments object here.
51 assertEquals("[object Arguments]", eval("arguments[0]()"));
52 with (arguments) {
53 assertEquals("[object Arguments]", toString());
  /build/core/combo/
javac.mk 8 # COMMON_JAVAC -- Java compiler command with common arguments
  /dalvik/dx/etc/
dx.bat 55 REM Capture all arguments that are not -J options.
56 REM Note that when reading the input arguments with %1, the cmd.exe
57 REM automagically converts --name=value arguments into 2 arguments "--name"
  /external/grub/
compile 43 arguments, and rename the output as expected.
  /external/libffi/
compile 43 arguments, and rename the output as expected.
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 20 * its name, and its argument names (thus implicitly the number of arguments the
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 20 * its name, and its argument names (thus implicitly the number of arguments the
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 20 * its name, and its argument names (thus implicitly the number of arguments the
  /external/proguard/lib/
retrace.jar 
  /external/proguard/src/proguard/obfuscate/
MappingReader.java 146 // field/method name, optional arguments, and the new field/method name.
187 String arguments = line.substring(argumentIndex1 + 1, argumentIndex2).trim();
194 arguments,
  /external/valgrind/main/
compile 43 arguments, and rename the output as expected.
  /external/webkit/Source/JavaScriptCore/API/tests/
JSNodeList.c 33 static JSValueRef JSNodeList_item(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
40 Node* node = NodeList_item(nodeList, (unsigned)JSValueToNumber(context, arguments[0], exception));
  /external/webkit/Source/WebCore/inspector/front-end/
ExtensionPanel.js 53 WebInspector.Panel.prototype.searchCanceled.apply(this, arguments);
59 WebInspector.Panel.prototype.performSearch.apply(this, arguments);
  /external/webkit/Source/WebCore/platform/
DefaultLocalizationStrategy.cpp 52 va_list arguments; local
53 va_start(arguments, format);
55 RetainPtr<CFStringRef> result(AdoptCF, CFStringCreateWithFormatAndArguments(0, 0, formatCFString.get(), arguments));
56 va_end(arguments);
59 va_list arguments;
60 va_start(arguments, format);
62 result.vsprintf(format.latin1().data(), arguments);
63 va_end(arguments);
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebJSPDFDoc.mm 46 static JSValueRef jsPDFDocPrint(JSContextRef ctx, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
  /external/webkit/Source/WebKit2/UIProcess/
WebCookieManagerProxy.cpp 66 void WebCookieManagerProxy::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments)
68 didReceiveWebCookieManagerProxyMessage(connection, messageID, arguments);

Completed in 604 milliseconds

1 2 3 4 5 6 7 8 91011>>