Searched defs:arguments (Results 1 - 25 of 244) sorted by relevance

12345678910

/external/v8/test/mjsunit/
H A Dargument-assigned.js30 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[
[all...]
/external/v8/test/preparser/
H A Dnonstrict-arguments.js30 var arguments = 42; variable
31 arguments = arguments++;
32 arguments += --arguments;
33 arguments -= ++arguments;
34 arguments *= arguments--;
35 function arguments(argument function
44 var arguments = 42; variable
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dchecks.cc38 va_list arguments; local
39 va_start(arguments, format);
40 vsnprintf(msg, sizeof(msg), format, arguments);
41 va_end(arguments);
/external/emma/core/java12/com/vladium/emma/
H A DEMMAException.java43 * @param arguments message format parameters [can be null or empty]
47 public EMMAException (final String message, final Object [] arguments) argument
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) argument
84 super (message, arguments, cause);
H A DEMMARuntimeException.java43 * @param arguments message format parameters [can be null or empty]
47 public EMMARuntimeException (final String message, final Object [] arguments) argument
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) argument
84 super (message, arguments, cause);
/external/objenesis/tck-android/src/org/objenesis/tck/android/
H A DTckInstrumentation.java36 public void onCreate(Bundle arguments) { argument
/external/webkit/Source/WebKit2/WebProcess/qt/
H A DWebProcessQt.cpp44 void WebProcess::platformInitializeWebProcess(const WebProcessCreationParameters& parameters, CoreIPC::ArgumentDecoder* arguments) argument
/external/webkit/Tools/DumpRenderTree/chromium/
H A DPlainTextController.cpp54 void PlainTextController::plainText(const CppArgumentList& arguments, CppVariant* result) argument
58 if (arguments.size() < 1 || !arguments[0].isObject())
62 NPObject* npobject = NPVARIANT_TO_OBJECT(arguments[0]);
/external/easymock/src/org/easymock/
H A DArgumentsMatcher.java19 * 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); argument
[all...]
H A DAbstractMatcher.java40 * {@link AbstractMatcher#matches(Object[], Object[])}. The arguments
47 * @return true if the arguments match, false otherwise.
70 * <code>argumentMatches(Object, Object)</code> to check whether arguments
71 * pairs match. If all the arguments match, true is returned, otherwise
77 * the expected arguments.
79 * the actual arguments.
80 * @return true if the arguments match, false otherwise.
119 * of the arguments separated by commas.
121 * @param arguments
122 * the arguments t
125 toString(Object[] arguments) argument
[all...]
/external/mockito/src/org/mockito/internal/invocation/
H A DArgumentsProcessor.java41 public static List<Matcher> argumentsToMatchers(Object[] arguments) { argument
42 List<Matcher> matchers = new ArrayList<Matcher>(arguments.length);
43 for (Object arg : arguments) {
/external/mockito/src/org/mockito/internal/invocation/realmethod/
H A DRealMethod.java10 Object invoke(Object target, Object[] arguments) throws Throwable; argument
/external/proguard/src/proguard/
H A DArgumentWordReader.java28 * 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) argument
55 this.arguments = arguments;
63 return index < arguments
[all...]
/external/mockito/src/org/mockito/internal/matchers/
H A DCapturingMatcher.java19 private LinkedList<Object> arguments = new LinkedList<Object>(); field in class:CapturingMatcher
36 if (arguments.isEmpty()) {
40 return (T) arguments.getLast();
45 return (List) arguments;
49 this.arguments.add(argument);
H A DVarargCapturingMatcher.java18 private LinkedList<List<T>> arguments = new LinkedList<List<T>>(); field in class:VarargCapturingMatcher
29 if (arguments.isEmpty()) {
33 return arguments.getLast();
38 return arguments;
43 this.arguments.add(vararg);
/external/mockito/src/org/mockito/internal/verification/argumentmatching/
H A DArgumentMatchingTool.java18 * Suspiciously not matching arguments are those that don't match, the toString() representation is the same but types are different.
20 public Integer[] getSuspiciouslyNotMatchingArgsIndexes(List<Matcher> matchers, Object[] arguments) { argument
21 if (matchers.size() != arguments.length) {
29 && !safelyMatches(m, arguments[i])
30 && toStringEquals(m, arguments[i])
31 && !((ContainsExtraTypeInformation) m).typeMatches(arguments[i])) {
/external/webkit/Source/JavaScriptCore/os-win32/
H A DWinMain.cpp46 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/
H A D10.1.6.js27 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/
H A DScriptCallStackFactory.cpp73 // 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/inspector/
H A DScriptArguments.cpp38 PassRefPtr<ScriptArguments> ScriptArguments::create(ScriptState* scriptState, Vector<ScriptValue>& arguments) argument
40 return adoptRef(new ScriptArguments(scriptState, arguments));
43 ScriptArguments::ScriptArguments(ScriptState* scriptState, Vector<ScriptValue>& arguments) argument
46 m_arguments.swap(arguments);
/external/webkit/Source/WebCore/storage/
H A DSQLStatementSync.cpp46 SQLStatementSync::SQLStatementSync(const String& statement, const Vector<SQLValue>& arguments, int permissions) argument
48 , m_arguments(arguments)
/external/webkit/Source/WebKit2/WebProcess/KeyValueStorage/
H A DWebKeyValueStorageManager.cpp53 void WebKeyValueStorageManager::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
55 didReceiveWebKeyValueStorageManagerMessage(connection, messageID, arguments);
/external/webkit/Source/WebKit2/WebProcess/MediaCache/
H A DWebMediaCacheManager.cpp49 void WebMediaCacheManager::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
51 didReceiveWebMediaCacheManagerMessage(connection, messageID, arguments);
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
H A DNPRuntimeRemoveProperty.cpp46 bool invoke(NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result) argument
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/Tools/DumpRenderTree/gtk/
H A DPlainTextController.cpp40 static JSValueRef plainTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
43 WebKitDOMRange* kitRange = DumpRenderTreeSupportGtk::jsValueToDOMRange(context, arguments[0]);

Completed in 743 milliseconds

12345678910