Searched defs:arguments (Results 26 - 50 of 244) sorted by relevance

12345678910

/external/chromium/base/
H A Dstring_util_posix.h33 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);
32 vsnprintf(char* buffer, size_t size, const char* format, va_list arguments) argument
45 vswprintf(wchar_t* buffer, size_t size, const wchar_t* format, va_list arguments) argument
H A Dstring_util_win.h37 const char* format, va_list arguments) {
38 int length = vsnprintf_s(buffer, size, size - 1, format, arguments);
40 return _vscprintf(format, arguments);
45 const wchar_t* format, va_list arguments) {
48 int length = _vsnwprintf_s(buffer, size, size - 1, format, arguments);
50 return _vscwprintf(format, arguments);
36 vsnprintf(char* buffer, size_t size, const char* format, va_list arguments) argument
44 vswprintf(wchar_t* buffer, size_t size, const wchar_t* format, va_list arguments) argument
/external/easymock/src/org/easymock/internal/
H A DExpectedInvocation.java96 private boolean matches(Object[] arguments) { argument
97 if (arguments.length != matchers.size()) {
100 for (int i = 0; i < arguments.length; i++) {
101 if (!matchers.get(i).matches(arguments[i])) {
/external/v8/src/
H A Dchecks.cc45 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);
H A Darguments.h50 Arguments(int length, Object** arguments) argument
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 be
/external/v8/test/mjsunit/
H A Ddebug-evaluate-bool-constructor.js45 arguments: {
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptfunction.cpp33 static JSValueRef qt_NativeFunction_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
42 Q_UNUSED(arguments);
93 static JSValueRef qt_NativeFunctionWithArg_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
102 Q_UNUSED(arguments);
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
H A Dregress-94506.js22 * 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/WebCore/storage/
H A DSQLTransactionSync.cpp74 PassRefPtr<SQLResultSet> SQLTransactionSync::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, ExceptionCode& ec) argument
96 SQLStatementSync statement(sqlStatement, arguments, permissions);
H A DSQLStatement.cpp46 PassRefPtr<SQLStatement> SQLStatement::create(Database* database, const String& statement, const Vector<SQLValue>& arguments, PassRefPtr<SQLStatementCallback> callback, PassRefPtr<SQLStatementErrorCallback> errorCallback, int permissions) argument
48 return adoptRef(new SQLStatement(database, statement, arguments, callback, errorCallback, permissions));
51 SQLStatement::SQLStatement(Database* database, const String& statement, const Vector<SQLValue>& arguments, PassRefPtr<SQLStatementCallback> callback, PassRefPtr<SQLStatementErrorCallback> errorCallback, int permissions) argument
53 , m_arguments(arguments)
/external/webkit/Source/WebKit2/UIProcess/
H A DWebGeolocationManagerProxy.cpp75 void WebGeolocationManagerProxy::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
77 didReceiveWebGeolocationManagerProxyMessage(connection, messageID, arguments);
/external/webkit/Source/WebKit2/WebProcess/ApplicationCache/
H A DWebApplicationCacheManager.cpp52 void WebApplicationCacheManager::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
54 didReceiveWebApplicationCacheManagerMessage(connection, messageID, arguments);
/external/webkit/Source/WebKit2/WebProcess/Cookies/
H A DWebCookieManager.cpp50 void WebCookieManager::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
52 didReceiveWebCookieManagerMessage(connection, messageID, arguments);
/external/webkit/Source/WebKit2/WebProcess/Geolocation/
H A DWebGeolocationManager.cpp54 void WebGeolocationManager::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
56 didReceiveWebGeolocationManagerMessage(connection, messageID, arguments);
/external/webkit/Tools/MiniBrowser/qt/
H A Dutils.cpp31 QString takeOptionValue(QStringList* arguments, int index) argument
35 if (++index < arguments->count() && !arguments->at(index).startsWith("-"))
36 result = arguments->takeAt(index);
/external/webkit/Tools/QtTestBrowser/
H A Dutils.cpp31 QString takeOptionValue(QStringList* arguments, int index) argument
35 if (++index < arguments->count() && !arguments->at(index).startsWith("-"))
36 result = arguments->takeAt(index);
/external/bison/djgpp/
H A Dsubpipe.c56 static char **arguments; variable
139 arguments = xmalloc(argc * sizeof(arguments[0]));
142 arguments[argc] = xmalloc((strlen(argv[argc]) + 1) * sizeof(arguments[0][0]));
143 strcpy(arguments[argc], argv[argc]);
145 arguments[argc] = NULL;
187 program = strrchr(arguments[0], '/');
191 program = arguments[0];
228 status = spawnvp(P_WAIT, program, arguments);
[all...]
/external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/
H A DInvocationHandlerAdapter.java97 public Object invoke(Object target, Object[] arguments) throws Throwable { argument
98 return ProxyBuilder.callSuper(target, method, arguments);
/external/emma/core/java12/com/vladium/util/exception/
H A DAbstractException.java45 * All constructors taking an 'arguments' parameter supply parameters to the error
118 * @param arguments message format parameters [can be null or empty]
122 public AbstractException (final String message, final Object [] arguments) argument
126 m_arguments = arguments == null ? null : (Object []) arguments.clone ();
158 * @param arguments message format parameters [can be null or empty]
163 public AbstractException (final String message, final Object [] arguments, final Throwable cause) argument
167 m_arguments = arguments == null ? null : (Object []) arguments.clone ();
H A DAbstractRuntimeException.java45 * All constructors taking an 'arguments' parameter supply parameters to the error
118 * @param arguments message format parameters [can be null or empty]
122 public AbstractRuntimeException (final String message, final Object [] arguments) argument
126 m_arguments = arguments == null ? null : (Object []) arguments.clone ();
158 * @param arguments message format parameters [can be null or empty]
163 public AbstractRuntimeException (final String message, final Object [] arguments, final Throwable cause) argument
167 m_arguments = arguments == null ? null : (Object []) arguments.clone ();
/external/mtpd/
H A Dmtpd.h52 /* 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/JavaScriptCore/API/tests/
H A DJSNodeList.c33 static JSValueRef JSNodeList_item(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
40 Node* node = NodeList_item(nodeList, (unsigned)JSValueToNumber(context, arguments[0], exception));
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptCallStackFactory.cpp110 Vector<ScriptValue> arguments; local
112 arguments.append(ScriptValue(v8arguments[i]));
114 return ScriptArguments::create(state, arguments);
/external/webkit/Source/WebCore/inspector/
H A DInspectorConsoleInstrumentation.h41 inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack) argument
45 addMessageToConsoleImpl(inspectorAgent, source, type, level, message, arguments, callStack);
57 inline void InspectorInstrumentation::consoleCount(Page* page, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> stack) argument
61 consoleCountImpl(inspectorAgent, arguments, stack);
81 inline void InspectorInstrumentation::consoleMarkTimeline(Page* page, PassRefPtr<ScriptArguments> arguments) argument
85 consoleMarkTimelineImpl(inspectorAgent, arguments);
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DHandleMessage.h8 // 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))
276 callMemberFunction(arguments, replyArgument
283 typename T::DecodeType::ValueType arguments; local
293 typename T::DecodeType::ValueType arguments; local
305 typename T::DecodeType::ValueType arguments; local
[all...]

Completed in 3179 milliseconds

12345678910