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

1 2 3 4 5 6 7 8 91011>>

  /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/Tools/DumpRenderTree/chromium/
LayoutTestController.cpp 273 void LayoutTestController::dumpAsText(const CppArgumentList& arguments, CppVariant* result)
279 if (arguments.size() > 0 && arguments[0].isBool())
280 m_generatePixelResults = arguments[0].value.boolValue;
351 void LayoutTestController::setAcceptsEditing(const CppArgumentList& arguments, CppVariant* result)
353 if (arguments.size() > 0 && arguments[0].isBool())
354 m_acceptsEditing = arguments[0].value.boolValue;
398 void LayoutTestController::queueBackNavigation(const CppArgumentList& arguments, CppVariant* result)
400 if (arguments.size() > 0 && arguments[0].isNumber()
    [all...]
PlainTextController.cpp 54 void PlainTextController::plainText(const CppArgumentList& arguments, CppVariant* result)
58 if (arguments.size() < 1 || !arguments[0].isObject())
62 NPObject* npobject = NPVARIANT_TO_OBJECT(arguments[0]);
TextInputController.cpp 78 void TextInputController::insertText(const CppArgumentList& arguments, CppVariant* result)
82 if (arguments.size() < 1 || !arguments[0].isString())
85 testShell->webView()->confirmComposition(WebString::fromUTF8(arguments[0].toString()));
88 void TextInputController::doCommand(const CppArgumentList& arguments, CppVariant* result)
96 if (arguments.size() >= 1 && arguments[0].isString())
97 mainFrame->executeCommand(WebString::fromUTF8(arguments[0].toString()));
100 void TextInputController::setMarkedText(const CppArgumentList& arguments, CppVariant* result)
104 if (arguments.size() >= 3 && arguments[0].isString(
    [all...]
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/scriptsupport/
ScriptTestRunner.java 23 * Extends InstrumentationTestRunner to allow the script to pass arguments to the application
29 public void onCreate(Bundle arguments) {
30 mTestsRelativePath = arguments.getString("path");
31 super.onCreate(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/test/mjsunit/
arguments-read-and-assignment.js 27 // Testing basic functionality of the arguments object.
29 // The arguments object itself.
30 assertEquals(42, function(){ return arguments;}(42)[0],
31 "return arguments value");
32 assertEquals(42, function(){ return arguments;}(42)[0],
33 "arguments in plain value context");
34 assertEquals(42, function(){ arguments;return 42}(37),
35 "arguments in effect context");
36 assertEquals(42, function(){ if(arguments)return 42;}(),
37 "arguments in a boolean context")
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/Functions/
function-001.js 28 * Earlier versions of JavaScript supported access to the arguments property
29 * of the function object. This property held the arguments to the function.
31 * return f.arguments[0]; // deprecated
36 * should simply use just "arguments":
39 * return arguments[0]; // okay
45 * arguments property is not threadsafe, which is of particular concern in
47 * functions because it can tell when the arguments are being accessed only by
48 * name and avoid setting up the arguments object.
55 var TITLE = "Accessing the arguments property of a function object";
64 "return function.arguments",
    [all...]
  /external/easymock/src/org/easymock/
ArgumentsMatcher.java 19 * A comparison function that is used to match arguments.
35 * Matches two arrays of arguments.
38 * the expected arguments.
40 * the actual arguments.
41 * @return true if the arguments match, false otherwise.
46 * Returns a string representation of the arguments.
48 * @param arguments
49 * the arguments to be used in the string representation.
50 * @return a string representation of the arguments.
52 String toString(Object[] arguments);
    [all...]
  /external/emma/core/java12/com/vladium/emma/
EMMAException.java 43 * @param arguments message format parameters [can be null or empty]
47 public EMMAException (final String message, final Object [] arguments)
49 super (message, arguments);
77 * @param arguments message format parameters [can be null or empty]
82 public EMMAException (final String message, final Object [] arguments, final Throwable cause)
84 super (message, arguments, cause);
EMMARuntimeException.java 43 * @param arguments message format parameters [can be null or empty]
47 public EMMARuntimeException (final String message, final Object [] arguments)
49 super (message, arguments);
77 * @param arguments message format parameters [can be null or empty]
82 public EMMARuntimeException (final String message, final Object [] arguments, final Throwable cause)
84 super (message, arguments, cause);
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
NPRuntimeRemoveProperty.cpp 46 bool invoke(NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result)
53 if (!NPVARIANT_IS_OBJECT(arguments[0]))
56 if (!NPVARIANT_IS_STRING(arguments[1]) && !NPVARIANT_IS_DOUBLE(arguments[1]))
60 if (NPVARIANT_IS_STRING(arguments[1])) {
61 string propertyNameString(arguments[1].value.stringValue.UTF8Characters,
62 arguments[1].value.stringValue.UTF8Length);
66 int32_t number = arguments[1].value.doubleValue;
70 pluginTest()->NPN_RemoveProperty(NPVARIANT_TO_OBJECT(arguments[0]), propertyName);
  /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/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-131510-001.js 38 * SUMMARY: Shouldn't crash if define |var arguments| inside a function
44 var summary = "Shouldn't crash if define |var arguments| inside a function";
49 function f() {var arguments;}
56 function g() { function f() {var arguments;}; f();};
63 var s = 'function f() {var arguments;}; f();';
66 s = 'function g() { function f() {var arguments;}; f();}; g();';
  /external/webkit/Source/WebCore/storage/
SQLTransactionSync.idl 38 [Custom] SQLResultSet executeSql(in DOMString sqlStatement, in ObjectArray arguments);
  /packages/apps/Browser/tests/src/com/android/browser/
BrowserLaunchPerformance.java 10 public void onCreate(Bundle arguments) {
11 super.onCreate(arguments);
  /packages/apps/DeskClock/tests/src/com/android/deskclock/
DeskClockLaunchPerformance.java 29 public void onCreate(Bundle arguments) {
30 super.onCreate(arguments);
  /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/WebCore/page/
Console.cpp 164 RefPtr<ScriptArguments> arguments = prpArguments; local
173 if (!acceptNoArguments && !arguments->argumentCount())
180 for (unsigned i = 0; i < arguments->argumentCount(); ++i) {
182 if (arguments->argumentAt(i).getString(arguments->globalState(), argAsString))
189 if (arguments->getFirstArgumentAsString(message))
192 InspectorInstrumentation::addMessageToConsole(page, JSMessageSource, type, level, message, arguments, callStack);
195 void Console::debug(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
198 log(arguments, callStack);
201 void Console::error(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack
252 InspectorInstrumentation::consoleCount(page(), arguments, callStack); local
257 InspectorInstrumentation::consoleMarkTimeline(page(), arguments); local
313 InspectorInstrumentation::addMessageToConsole(page(), JSMessageSource, StartGroupMessageType, LogMessageLevel, String(), arguments, callStack); local
318 InspectorInstrumentation::addMessageToConsole(page(), JSMessageSource, StartGroupCollapsedMessageType, LogMessageLevel, String(), arguments, callStack); local
    [all...]
  /external/chromium/base/
string_util_posix.h 33 const char* format, va_list arguments) {
34 return ::vsnprintf(buffer, size, format, arguments);
46 const wchar_t* format, va_list arguments) {
54 return ::vswprintf(buffer, size, format, arguments);
  /development/apps/launchperf/src/com/android/launchperf/
ComplexActivityLaunchPerformance.java 38 public void onCreate(Bundle arguments) {
39 super.onCreate(arguments);
EmptyActivityLaunchPerformance.java 37 public void onCreate(Bundle arguments) {
38 super.onCreate(arguments);
HelloWorldLaunchPerformance.java 37 public void onCreate(Bundle arguments) {
38 super.onCreate(arguments);
NotePadLaunchPerformance.java 37 public void onCreate(Bundle arguments) {
38 super.onCreate(arguments);
PhoneLaunchPerformance.java 37 public void onCreate(Bundle arguments) {
38 super.onCreate(arguments);

Completed in 535 milliseconds

1 2 3 4 5 6 7 8 91011>>